parent
4d4abd5ecc
commit
4b22574baf
@ -1,116 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| AUTO-LOADER
|
||||
| -------------------------------------------------------------------
|
||||
| This file specifies which systems should be loaded by default.
|
||||
|
|
||||
| In order to keep the framework as light-weight as possible only the
|
||||
| absolute minimal resources are loaded by default. For example,
|
||||
| the database is not connected to automatically since no assumption
|
||||
| is made regarding whether you intend to use it. This file lets
|
||||
| you globally define which systems you would like loaded with every
|
||||
| request.
|
||||
|
|
||||
| -------------------------------------------------------------------
|
||||
| Instructions
|
||||
| -------------------------------------------------------------------
|
||||
|
|
||||
| These are the things you can load automatically:
|
||||
|
|
||||
| 1. Packages
|
||||
| 2. Libraries
|
||||
| 3. Helper files
|
||||
| 4. Custom config files
|
||||
| 5. Language files
|
||||
| 6. Models
|
||||
|
|
||||
*/
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Packges
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
||||
|
|
||||
*/
|
||||
|
||||
$autoload['packages'] = array();
|
||||
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Libraries
|
||||
| -------------------------------------------------------------------
|
||||
| These are the classes located in the system/libraries folder
|
||||
| or in your application/libraries folder.
|
||||
|
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
|
||||
*/
|
||||
|
||||
$autoload['libraries'] = array();
|
||||
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Helper Files
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['helper'] = array('url', 'file');
|
||||
*/
|
||||
|
||||
$autoload['helper'] = array();
|
||||
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Config files
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['config'] = array('config1', 'config2');
|
||||
|
|
||||
| NOTE: This item is intended for use ONLY if you have created custom
|
||||
| config files. Otherwise, leave it blank.
|
||||
|
|
||||
*/
|
||||
|
||||
$autoload['config'] = array();
|
||||
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Language files
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['language'] = array('lang1', 'lang2');
|
||||
|
|
||||
| NOTE: Do not include the "_lang" part of your file. For example
|
||||
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
||||
|
|
||||
*/
|
||||
|
||||
$autoload['language'] = array();
|
||||
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Models
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['model'] = array('model1', 'model2');
|
||||
|
|
||||
*/
|
||||
|
||||
$autoload['model'] = array();
|
||||
|
||||
|
||||
/* End of file autoload.php */
|
||||
/* Location: ./application/config/autoload.php */
|
@ -1,364 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Base Site URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| URL to your CodeIgniter root. Typically this will be your base URL,
|
||||
| WITH a trailing slash:
|
||||
|
|
||||
| http://example.com/
|
||||
|
|
||||
| If this is not set then CodeIgniter will try to guess the protocol, domain
|
||||
| and path to your installation. However, you should always configure this
|
||||
| explicitly and never rely on auto-guessing, especially in production
|
||||
| environments.
|
||||
|
|
||||
*/
|
||||
$config['base_url'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Index File
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Typically this will be your index.php file, unless you've renamed it to
|
||||
| something else. If you are using mod_rewrite to remove the page set this
|
||||
| variable so that it is blank.
|
||||
|
|
||||
*/
|
||||
$config['index_page'] = 'index.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| URI PROTOCOL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This item determines which server global should be used to retrieve the
|
||||
| URI string. The default setting of 'AUTO' works for most servers.
|
||||
| If your links do not seem to work, try one of the other delicious flavors:
|
||||
|
|
||||
| 'AUTO' Default - auto detects
|
||||
| 'PATH_INFO' Uses the PATH_INFO
|
||||
| 'QUERY_STRING' Uses the QUERY_STRING
|
||||
| 'REQUEST_URI' Uses the REQUEST_URI
|
||||
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
||||
|
|
||||
*/
|
||||
$config['uri_protocol'] = 'PATH_INFO';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| URL suffix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
|
||||
| For more information please see the user guide:
|
||||
|
|
||||
| http://codeigniter.com/user_guide/general/urls.html
|
||||
*/
|
||||
|
||||
$config['url_suffix'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Language
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This determines which set of language files should be used. Make sure
|
||||
| there is an available translation if you intend to use something other
|
||||
| than english.
|
||||
|
|
||||
*/
|
||||
$config['language'] = 'english';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Character Set
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This determines which character set is used by default in various methods
|
||||
| that require a character set to be provided.
|
||||
|
|
||||
*/
|
||||
$config['charset'] = 'UTF-8';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Enable/Disable System Hooks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you would like to use the 'hooks' feature you must enable it by
|
||||
| setting this variable to TRUE (boolean). See the user guide for details.
|
||||
|
|
||||
*/
|
||||
$config['enable_hooks'] = FALSE;
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Class Extension Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This item allows you to set the filename/classname prefix when extending
|
||||
| native libraries. For more information please see the user guide:
|
||||
|
|
||||
| http://codeigniter.com/user_guide/general/core_classes.html
|
||||
| http://codeigniter.com/user_guide/general/creating_libraries.html
|
||||
|
|
||||
*/
|
||||
$config['subclass_prefix'] = 'MY_';
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Allowed URL Characters
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This lets you specify with a regular expression which characters are permitted
|
||||
| within your URLs. When someone tries to submit a URL with disallowed
|
||||
| characters they will get a warning message.
|
||||
|
|
||||
| As a security measure you are STRONGLY encouraged to restrict URLs to
|
||||
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
||||
|
|
||||
| Leave blank to allow all characters -- but only if you are insane.
|
||||
|
|
||||
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
||||
|
|
||||
*/
|
||||
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Enable Query Strings
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By default CodeIgniter uses search-engine friendly segment based URLs:
|
||||
| example.com/who/what/where/
|
||||
|
|
||||
| By default CodeIgniter enables access to the $_GET array. If for some
|
||||
| reason you would like to disable it, set 'allow_get_array' to FALSE.
|
||||
|
|
||||
| You can optionally enable standard query string based URLs:
|
||||
| example.com?who=me&what=something&where=here
|
||||
|
|
||||
| Options are: TRUE or FALSE (boolean)
|
||||
|
|
||||
| The other items let you set the query string 'words' that will
|
||||
| invoke your controllers and its functions:
|
||||
| example.com/index.php?c=controller&m=function
|
||||
|
|
||||
| Please note that some of the helpers won't work as expected when
|
||||
| this feature is enabled, since CodeIgniter is designed primarily to
|
||||
| use segment based URLs.
|
||||
|
|
||||
*/
|
||||
$config['allow_get_array'] = TRUE;
|
||||
$config['enable_query_strings'] = FALSE;
|
||||
$config['controller_trigger'] = 'c';
|
||||
$config['function_trigger'] = 'm';
|
||||
$config['directory_trigger'] = 'd'; // experimental not currently in use
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Logging Threshold
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you have enabled error logging, you can set an error threshold to
|
||||
| determine what gets logged. Threshold options are:
|
||||
| You can enable error logging by setting a threshold over zero. The
|
||||
| threshold determines what gets logged. Threshold options are:
|
||||
|
|
||||
| 0 = Disables logging, Error logging TURNED OFF
|
||||
| 1 = Error Messages (including PHP errors)
|
||||
| 2 = Debug Messages
|
||||
| 3 = Informational Messages
|
||||
| 4 = All Messages
|
||||
|
|
||||
| For a live site you'll usually only enable Errors (1) to be logged otherwise
|
||||
| your log files will fill up very fast.
|
||||
|
|
||||
*/
|
||||
$config['log_threshold'] = 1;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Logging Directory Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Leave this BLANK unless you would like to set something other than the default
|
||||
| application/logs/ folder. Use a full server path with trailing slash.
|
||||
|
|
||||
*/
|
||||
$config['log_path'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Date Format for Logs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Each item that is logged has an associated date. You can use PHP date
|
||||
| codes to set your own date formatting
|
||||
|
|
||||
*/
|
||||
$config['log_date_format'] = 'Y-m-d H:i:s';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Directory Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Leave this BLANK unless you would like to set something other than the default
|
||||
| system/cache/ folder. Use a full server path with trailing slash.
|
||||
|
|
||||
*/
|
||||
$config['cache_path'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you use the Encryption class or the Session class you
|
||||
| MUST set an encryption key. See the user guide for info.
|
||||
|
|
||||
*/
|
||||
$config['encryption_key'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Variables
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| 'sess_cookie_name' = the name you want for the cookie
|
||||
| 'sess_expiration' = the number of SECONDS you want the session to last.
|
||||
| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
|
||||
| 'sess_expire_on_close' = Whether to cause the session to expire automatically
|
||||
| when the browser window is closed
|
||||
| 'sess_encrypt_cookie' = Whether to encrypt the cookie
|
||||
| 'sess_use_database' = Whether to save the session data to a database
|
||||
| 'sess_table_name' = The name of the session database table
|
||||
| 'sess_match_ip' = Whether to match the user's IP address when reading the session data
|
||||
| 'sess_match_useragent' = Whether to match the User Agent when reading the session data
|
||||
| 'sess_time_to_update' = how many seconds between CI refreshing Session Information
|
||||
|
|
||||
*/
|
||||
$config['sess_cookie_name'] = 'ci_session';
|
||||
$config['sess_expiration'] = 7200;
|
||||
$config['sess_expire_on_close'] = FALSE;
|
||||
$config['sess_encrypt_cookie'] = FALSE;
|
||||
$config['sess_use_database'] = FALSE;
|
||||
$config['sess_table_name'] = 'ci_sessions';
|
||||
$config['sess_match_ip'] = FALSE;
|
||||
$config['sess_match_useragent'] = TRUE;
|
||||
$config['sess_time_to_update'] = 300;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cookie Related Variables
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| 'cookie_prefix' = Set a prefix if you need to avoid collisions
|
||||
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
|
||||
| 'cookie_path' = Typically will be a forward slash
|
||||
| 'cookie_secure' = Cookies will only be set if a secure HTTPS connection exists.
|
||||
|
|
||||
*/
|
||||
$config['cookie_prefix'] = "";
|
||||
$config['cookie_domain'] = "";
|
||||
$config['cookie_path'] = "/";
|
||||
$config['cookie_secure'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global XSS Filtering
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Determines whether the XSS filter is always active when GET, POST or
|
||||
| COOKIE data is encountered
|
||||
|
|
||||
*/
|
||||
$config['global_xss_filtering'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cross Site Request Forgery
|
||||
|--------------------------------------------------------------------------
|
||||
| Enables a CSRF cookie token to be set. When set to TRUE, token will be
|
||||
| checked on a submitted form. If you are accepting user data, it is strongly
|
||||
| recommended CSRF protection be enabled.
|
||||
|
|
||||
| 'csrf_token_name' = The token name
|
||||
| 'csrf_cookie_name' = The cookie name
|
||||
| 'csrf_expire' = The number in seconds the token should expire.
|
||||
*/
|
||||
$config['csrf_protection'] = FALSE;
|
||||
$config['csrf_token_name'] = 'csrf_test_name';
|
||||
$config['csrf_cookie_name'] = 'csrf_cookie_name';
|
||||
$config['csrf_expire'] = 7200;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Output Compression
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Enables Gzip output compression for faster page loads. When enabled,
|
||||
| the output class will test whether your server supports Gzip.
|
||||
| Even if it does, however, not all browsers support compression
|
||||
| so enable only if you are reasonably sure your visitors can handle it.
|
||||
|
|
||||
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
|
||||
| means you are prematurely outputting something to your browser. It could
|
||||
| even be a line of whitespace at the end of one of your scripts. For
|
||||
| compression to work, nothing can be sent before the output buffer is called
|
||||
| by the output class. Do not 'echo' any values with compression enabled.
|
||||
|
|
||||
*/
|
||||
$config['compress_output'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Master Time Reference
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Options are 'local' or 'gmt'. This pref tells the system whether to use
|
||||
| your server's local time as the master 'now' reference, or convert it to
|
||||
| GMT. See the 'date helper' page of the user guide for information
|
||||
| regarding date handling.
|
||||
|
|
||||
*/
|
||||
$config['time_reference'] = 'local';
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Rewrite PHP Short Tags
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If your PHP installation does not have short tag support enabled CI
|
||||
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
|
||||
| in your view files. Options are TRUE or FALSE (boolean)
|
||||
|
|
||||
*/
|
||||
$config['rewrite_short_tags'] = FALSE;
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Reverse Proxy IPs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If your server is behind a reverse proxy, you must whitelist the proxy IP
|
||||
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
|
||||
| header in order to properly identify the visitor's IP address.
|
||||
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
||||
|
|
||||
*/
|
||||
$config['proxy_ips'] = '';
|
||||
|
||||
|
||||
/* End of file config.php */
|
||||
/* Location: ./application/config/config.php */
|
@ -1,41 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| File and Directory Modes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These prefs are used when checking and setting modes when working
|
||||
| with the file system. The defaults are fine on servers with proper
|
||||
| security, but you may wish (or even need) to change the values in
|
||||
| certain environments (Apache running a separate process for each
|
||||
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
|
||||
| always be used to set the mode correctly.
|
||||
|
|
||||
*/
|
||||
define('FILE_READ_MODE', 0644);
|
||||
define('FILE_WRITE_MODE', 0666);
|
||||
define('DIR_READ_MODE', 0755);
|
||||
define('DIR_WRITE_MODE', 0777);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| File Stream Modes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These modes are used when working with fopen()/popen()
|
||||
|
|
||||
*/
|
||||
|
||||
define('FOPEN_READ', 'rb');
|
||||
define('FOPEN_READ_WRITE', 'r+b');
|
||||
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
|
||||
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
|
||||
define('FOPEN_WRITE_CREATE', 'ab');
|
||||
define('FOPEN_READ_WRITE_CREATE', 'a+b');
|
||||
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
|
||||
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
|
||||
|
||||
|
||||
/* End of file constants.php */
|
||||
/* Location: ./application/config/constants.php */
|
@ -1,53 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| DATABASE CONNECTIVITY SETTINGS
|
||||
| -------------------------------------------------------------------
|
||||
| This file will contain the settings needed to access your database.
|
||||
|
|
||||
| For complete instructions please consult the 'Database Connection'
|
||||
| page of the User Guide.
|
||||
|
|
||||
| -------------------------------------------------------------------
|
||||
| EXPLANATION OF VARIABLES
|
||||
| -------------------------------------------------------------------
|
||||
|
|
||||
| ['hostname'] The hostname of your database server.
|
||||
| ['username'] The username used to connect to the database
|
||||
| ['password'] The password used to connect to the database
|
||||
| ['database'] The name of the database you want to connect to
|
||||
| ['dbdriver'] The database type. ie: mysql. Currently supported:
|
||||
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
|
||||
| ['dbprefix'] You can add an optional prefix, which will be added
|
||||
| to the table name when using the Active Record class
|
||||
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|
||||
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|
||||
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
|
||||
| ['cachedir'] The path to the folder where cache files should be stored
|
||||
| ['char_set'] The character set used in communicating with the database
|
||||
| ['dbcollat'] The character collation used in communicating with the database
|
||||
| NOTE: For MySQL and MySQLi databases, this setting is only used
|
||||
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
|
||||
| (and in table creation queries made with DB Forge).
|
||||
| There is an incompatibility in PHP with mysql_real_escape_string() which
|
||||
| can make your site vulnerable to SQL injection if you are using a
|
||||
| multi-byte character set and are running versions lower than these.
|
||||
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
|
||||
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
|
||||
| ['autoinit'] Whether or not to automatically initialize the database.
|
||||
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
|
||||
| - good for ensuring strict SQL while developing
|
||||
|
|
||||
| The $active_group variable lets you choose which connection group to
|
||||
| make active. By default there is only one group (the 'default' group).
|
||||
|
|
||||
| The $active_record variables lets you determine whether or not to load
|
||||
| the active record class
|
||||
*/
|
||||
$active_group = 'HT';
|
||||
$active_record = TRUE;
|
||||
|
||||
require 'c:/database_conn.php';
|
||||
|
||||
/* End of file database.php */
|
||||
/* Location: ./application/config/database.php */
|
@ -1,15 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
$_doctypes = array(
|
||||
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
|
||||
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
||||
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
||||
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
||||
'html5' => '<!DOCTYPE html>',
|
||||
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
|
||||
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
|
||||
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'
|
||||
);
|
||||
|
||||
/* End of file doctypes.php */
|
||||
/* Location: ./application/config/doctypes.php */
|
@ -1,16 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| Hooks
|
||||
| -------------------------------------------------------------------------
|
||||
| This file lets you define "hooks" to extend CI without hacking the core
|
||||
| files. Please see the user guide for info:
|
||||
|
|
||||
| http://codeigniter.com/user_guide/general/hooks.html
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* End of file hooks.php */
|
||||
/* Location: ./application/config/hooks.php */
|
@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,41 +0,0 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Enable/Disable Migrations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Migrations are disabled by default but should be enabled
|
||||
| whenever you intend to do a schema migration.
|
||||
|
|
||||
*/
|
||||
$config['migration_enabled'] = FALSE;
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migrations version
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This is used to set migration version that the file system should be on.
|
||||
| If you run $this->migration->latest() this is the version that schema will
|
||||
| be upgraded / downgraded to.
|
||||
|
|
||||
*/
|
||||
$config['migration_version'] = 0;
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migrations Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Path to your migrations folder.
|
||||
| Typically, it will be within your application path.
|
||||
| Also, writing permission is required within the migrations path.
|
||||
|
|
||||
*/
|
||||
$config['migration_path'] = APPPATH . 'migrations/';
|
||||
|
||||
|
||||
/* End of file migration.php */
|
||||
/* Location: ./application/config/migration.php */
|
@ -1,106 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| MIME TYPES
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains an array of mime types. It is used by the
|
||||
| Upload class to help identify allowed file types.
|
||||
|
|
||||
*/
|
||||
|
||||
$mimes = array( 'hqx' => 'application/mac-binhex40',
|
||||
'cpt' => 'application/mac-compactpro',
|
||||
'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel'),
|
||||
'bin' => 'application/macbinary',
|
||||
'dms' => 'application/octet-stream',
|
||||
'lha' => 'application/octet-stream',
|
||||
'lzh' => 'application/octet-stream',
|
||||
'exe' => array('application/octet-stream', 'application/x-msdownload'),
|
||||
'class' => 'application/octet-stream',
|
||||
'psd' => 'application/x-photoshop',
|
||||
'so' => 'application/octet-stream',
|
||||
'sea' => 'application/octet-stream',
|
||||
'dll' => 'application/octet-stream',
|
||||
'oda' => 'application/oda',
|
||||
'pdf' => array('application/pdf', 'application/x-download'),
|
||||
'ai' => 'application/postscript',
|
||||
'eps' => 'application/postscript',
|
||||
'ps' => 'application/postscript',
|
||||
'smi' => 'application/smil',
|
||||
'smil' => 'application/smil',
|
||||
'mif' => 'application/vnd.mif',
|
||||
'xls' => array('application/excel', 'application/vnd.ms-excel', 'application/msexcel'),
|
||||
'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint'),
|
||||
'wbxml' => 'application/wbxml',
|
||||
'wmlc' => 'application/wmlc',
|
||||
'dcr' => 'application/x-director',
|
||||
'dir' => 'application/x-director',
|
||||
'dxr' => 'application/x-director',
|
||||
'dvi' => 'application/x-dvi',
|
||||
'gtar' => 'application/x-gtar',
|
||||
'gz' => 'application/x-gzip',
|
||||
'php' => 'application/x-httpd-php',
|
||||
'php4' => 'application/x-httpd-php',
|
||||
'php3' => 'application/x-httpd-php',
|
||||
'phtml' => 'application/x-httpd-php',
|
||||
'phps' => 'application/x-httpd-php-source',
|
||||
'js' => 'application/x-javascript',
|
||||
'swf' => 'application/x-shockwave-flash',
|
||||
'sit' => 'application/x-stuffit',
|
||||
'tar' => 'application/x-tar',
|
||||
'tgz' => array('application/x-tar', 'application/x-gzip-compressed'),
|
||||
'xhtml' => 'application/xhtml+xml',
|
||||
'xht' => 'application/xhtml+xml',
|
||||
'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed'),
|
||||
'mid' => 'audio/midi',
|
||||
'midi' => 'audio/midi',
|
||||
'mpga' => 'audio/mpeg',
|
||||
'mp2' => 'audio/mpeg',
|
||||
'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'),
|
||||
'aif' => 'audio/x-aiff',
|
||||
'aiff' => 'audio/x-aiff',
|
||||
'aifc' => 'audio/x-aiff',
|
||||
'ram' => 'audio/x-pn-realaudio',
|
||||
'rm' => 'audio/x-pn-realaudio',
|
||||
'rpm' => 'audio/x-pn-realaudio-plugin',
|
||||
'ra' => 'audio/x-realaudio',
|
||||
'rv' => 'video/vnd.rn-realvideo',
|
||||
'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'),
|
||||
'bmp' => array('image/bmp', 'image/x-windows-bmp'),
|
||||
'gif' => 'image/gif',
|
||||
'jpeg' => array('image/jpeg', 'image/pjpeg'),
|
||||
'jpg' => array('image/jpeg', 'image/pjpeg'),
|
||||
'jpe' => array('image/jpeg', 'image/pjpeg'),
|
||||
'png' => array('image/png', 'image/x-png'),
|
||||
'tiff' => 'image/tiff',
|
||||
'tif' => 'image/tiff',
|
||||
'css' => 'text/css',
|
||||
'html' => 'text/html',
|
||||
'htm' => 'text/html',
|
||||
'shtml' => 'text/html',
|
||||
'txt' => 'text/plain',
|
||||
'text' => 'text/plain',
|
||||
'log' => array('text/plain', 'text/x-log'),
|
||||
'rtx' => 'text/richtext',
|
||||
'rtf' => 'text/rtf',
|
||||
'xml' => 'text/xml',
|
||||
'xsl' => 'text/xml',
|
||||
'mpeg' => 'video/mpeg',
|
||||
'mpg' => 'video/mpeg',
|
||||
'mpe' => 'video/mpeg',
|
||||
'qt' => 'video/quicktime',
|
||||
'mov' => 'video/quicktime',
|
||||
'avi' => 'video/x-msvideo',
|
||||
'movie' => 'video/x-sgi-movie',
|
||||
'doc' => 'application/msword',
|
||||
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),
|
||||
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip'),
|
||||
'word' => array('application/msword', 'application/octet-stream'),
|
||||
'xl' => 'application/excel',
|
||||
'eml' => 'message/rfc822',
|
||||
'json' => array('application/json', 'text/json')
|
||||
);
|
||||
|
||||
|
||||
/* End of file mimes.php */
|
||||
/* Location: ./application/config/mimes.php */
|
@ -1,17 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| Profiler Sections
|
||||
| -------------------------------------------------------------------------
|
||||
| This file lets you determine whether or not various sections of Profiler
|
||||
| data are displayed when the Profiler is enabled.
|
||||
| Please see the user guide for info:
|
||||
|
|
||||
| http://codeigniter.com/user_guide/general/profiling.html
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* End of file profiler.php */
|
||||
/* Location: ./application/config/profiler.php */
|
@ -1,46 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| URI ROUTING
|
||||
| -------------------------------------------------------------------------
|
||||
| This file lets you re-map URI requests to specific controller functions.
|
||||
|
|
||||
| Typically there is a one-to-one relationship between a URL string
|
||||
| and its corresponding controller class/method. The segments in a
|
||||
| URL normally follow this pattern:
|
||||
|
|
||||
| example.com/class/method/id/
|
||||
|
|
||||
| In some instances, however, you may want to remap this relationship
|
||||
| so that a different class/function is called than the one
|
||||
| corresponding to the URL.
|
||||
|
|
||||
| Please see the user guide for complete details:
|
||||
|
|
||||
| http://codeigniter.com/user_guide/general/routing.html
|
||||
|
|
||||
| -------------------------------------------------------------------------
|
||||
| RESERVED ROUTES
|
||||
| -------------------------------------------------------------------------
|
||||
|
|
||||
| There area two reserved routes:
|
||||
|
|
||||
| $route['default_controller'] = 'welcome';
|
||||
|
|
||||
| This route indicates which controller class should be loaded if the
|
||||
| URI contains no data. In the above example, the "welcome" class
|
||||
| would be loaded.
|
||||
|
|
||||
| $route['404_override'] = 'errors/page_missing';
|
||||
|
|
||||
| This route will tell the Router what URI segments to use if those provided
|
||||
| in the URL cannot be matched to a valid route.
|
||||
|
|
||||
*/
|
||||
|
||||
$route['default_controller'] = "welcome";
|
||||
$route['404_override'] = '';
|
||||
|
||||
|
||||
/* End of file routes.php */
|
||||
/* Location: ./application/config/routes.php */
|
@ -1,66 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| SMILEYS
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains an array of smileys for use with the emoticon helper.
|
||||
| Individual images can be used to replace multiple simileys. For example:
|
||||
| :-) and :) use the same image replacement.
|
||||
|
|
||||
| Please see user guide for more info:
|
||||
| http://codeigniter.com/user_guide/helpers/smiley_helper.html
|
||||
|
|
||||
*/
|
||||
|
||||
$smileys = array(
|
||||
|
||||
// smiley image name width height alt
|
||||
|
||||
':-)' => array('grin.gif', '19', '19', 'grin'),
|
||||
':lol:' => array('lol.gif', '19', '19', 'LOL'),
|
||||
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
|
||||
':)' => array('smile.gif', '19', '19', 'smile'),
|
||||
';-)' => array('wink.gif', '19', '19', 'wink'),
|
||||
';)' => array('wink.gif', '19', '19', 'wink'),
|
||||
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
|
||||
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
|
||||
':-S' => array('confused.gif', '19', '19', 'confused'),
|
||||
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
|
||||
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
|
||||
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
|
||||
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
|
||||
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
|
||||
':P' => array('raspberry.gif', '19', '19', 'raspberry'),
|
||||
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
|
||||
':long:' => array('longface.gif', '19', '19', 'long face'),
|
||||
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
|
||||
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
|
||||
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
|
||||
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
|
||||
':down:' => array('downer.gif', '19', '19', 'downer'),
|
||||
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
|
||||
':sick:' => array('sick.gif', '19', '19', 'sick'),
|
||||
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
|
||||
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
|
||||
'>:(' => array('mad.gif', '19', '19', 'mad'),
|
||||
':mad:' => array('mad.gif', '19', '19', 'mad'),
|
||||
'>:-(' => array('angry.gif', '19', '19', 'angry'),
|
||||
':angry:' => array('angry.gif', '19', '19', 'angry'),
|
||||
':zip:' => array('zip.gif', '19', '19', 'zipper'),
|
||||
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
|
||||
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
|
||||
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
|
||||
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
|
||||
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
|
||||
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
|
||||
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
|
||||
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
|
||||
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
|
||||
':snake:' => array('snake.gif', '19', '19', 'snake'),
|
||||
':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
|
||||
':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
|
||||
|
||||
);
|
||||
|
||||
/* End of file smileys.php */
|
||||
/* Location: ./application/config/smileys.php */
|
@ -1,178 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| USER AGENT TYPES
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains four arrays of user agent data. It is used by the
|
||||
| User Agent Class to help identify browser, platform, robot, and
|
||||
| mobile device data. The array keys are used to identify the device
|
||||
| and the array values are used to set the actual name of the item.
|
||||
|
|
||||
*/
|
||||
|
||||
$platforms = array (
|
||||
'windows nt 6.0' => 'Windows Longhorn',
|
||||
'windows nt 5.2' => 'Windows 2003',
|
||||
'windows nt 5.0' => 'Windows 2000',
|
||||
'windows nt 5.1' => 'Windows XP',
|
||||
'windows nt 4.0' => 'Windows NT 4.0',
|
||||
'winnt4.0' => 'Windows NT 4.0',
|
||||
'winnt 4.0' => 'Windows NT',
|
||||
'winnt' => 'Windows NT',
|
||||
'windows 98' => 'Windows 98',
|
||||
'win98' => 'Windows 98',
|
||||
'windows 95' => 'Windows 95',
|
||||
'win95' => 'Windows 95',
|
||||
'windows' => 'Unknown Windows OS',
|
||||
'os x' => 'Mac OS X',
|
||||
'ppc mac' => 'Power PC Mac',
|
||||
'freebsd' => 'FreeBSD',
|
||||
'ppc' => 'Macintosh',
|
||||
'linux' => 'Linux',
|
||||
'debian' => 'Debian',
|
||||
'sunos' => 'Sun Solaris',
|
||||
'beos' => 'BeOS',
|
||||
'apachebench' => 'ApacheBench',
|
||||
'aix' => 'AIX',
|
||||
'irix' => 'Irix',
|
||||
'osf' => 'DEC OSF',
|
||||
'hp-ux' => 'HP-UX',
|
||||
'netbsd' => 'NetBSD',
|
||||
'bsdi' => 'BSDi',
|
||||
'openbsd' => 'OpenBSD',
|
||||
'gnu' => 'GNU/Linux',
|
||||
'unix' => 'Unknown Unix OS'
|
||||
);
|
||||
|
||||
|
||||
// The order of this array should NOT be changed. Many browsers return
|
||||
// multiple browser types so we want to identify the sub-type first.
|
||||
$browsers = array(
|
||||
'Flock' => 'Flock',
|
||||
'Chrome' => 'Chrome',
|
||||
'Opera' => 'Opera',
|
||||
'MSIE' => 'Internet Explorer',
|
||||
'Internet Explorer' => 'Internet Explorer',
|
||||
'Shiira' => 'Shiira',
|
||||
'Firefox' => 'Firefox',
|
||||
'Chimera' => 'Chimera',
|
||||
'Phoenix' => 'Phoenix',
|
||||
'Firebird' => 'Firebird',
|
||||
'Camino' => 'Camino',
|
||||
'Netscape' => 'Netscape',
|
||||
'OmniWeb' => 'OmniWeb',
|
||||
'Safari' => 'Safari',
|
||||
'Mozilla' => 'Mozilla',
|
||||
'Konqueror' => 'Konqueror',
|
||||
'icab' => 'iCab',
|
||||
'Lynx' => 'Lynx',
|
||||
'Links' => 'Links',
|
||||
'hotjava' => 'HotJava',
|
||||
'amaya' => 'Amaya',
|
||||
'IBrowse' => 'IBrowse'
|
||||
);
|
||||
|
||||
$mobiles = array(
|
||||
// legacy array, old values commented out
|
||||
'mobileexplorer' => 'Mobile Explorer',
|
||||
// 'openwave' => 'Open Wave',
|
||||
// 'opera mini' => 'Opera Mini',
|
||||
// 'operamini' => 'Opera Mini',
|
||||
// 'elaine' => 'Palm',
|
||||
'palmsource' => 'Palm',
|
||||
// 'digital paths' => 'Palm',
|
||||
// 'avantgo' => 'Avantgo',
|
||||
// 'xiino' => 'Xiino',
|
||||
'palmscape' => 'Palmscape',
|
||||
// 'nokia' => 'Nokia',
|
||||
// 'ericsson' => 'Ericsson',
|
||||
// 'blackberry' => 'BlackBerry',
|
||||
// 'motorola' => 'Motorola'
|
||||
|
||||
// Phones and Manufacturers
|
||||
'motorola' => "Motorola",
|
||||
'nokia' => "Nokia",
|
||||
'palm' => "Palm",
|
||||
'iphone' => "Apple iPhone",
|
||||
'ipad' => "iPad",
|
||||
'ipod' => "Apple iPod Touch",
|
||||
'sony' => "Sony Ericsson",
|
||||
'ericsson' => "Sony Ericsson",
|
||||
'blackberry' => "BlackBerry",
|
||||
'cocoon' => "O2 Cocoon",
|
||||
'blazer' => "Treo",
|
||||
'lg' => "LG",
|
||||
'amoi' => "Amoi",
|
||||
'xda' => "XDA",
|
||||
'mda' => "MDA",
|
||||
'vario' => "Vario",
|
||||
'htc' => "HTC",
|
||||
'samsung' => "Samsung",
|
||||
'sharp' => "Sharp",
|
||||
'sie-' => "Siemens",
|
||||
'alcatel' => "Alcatel",
|
||||
'benq' => "BenQ",
|
||||
'ipaq' => "HP iPaq",
|
||||
'mot-' => "Motorola",
|
||||
'playstation portable' => "PlayStation Portable",
|
||||
'hiptop' => "Danger Hiptop",
|
||||
'nec-' => "NEC",
|
||||
'panasonic' => "Panasonic",
|
||||
'philips' => "Philips",
|
||||
'sagem' => "Sagem",
|
||||
'sanyo' => "Sanyo",
|
||||
'spv' => "SPV",
|
||||
'zte' => "ZTE",
|
||||
'sendo' => "Sendo",
|
||||
|
||||
// Operating Systems
|
||||
'symbian' => "Symbian",
|
||||
'SymbianOS' => "SymbianOS",
|
||||
'elaine' => "Palm",
|
||||
'palm' => "Palm",
|
||||
'series60' => "Symbian S60",
|
||||
'windows ce' => "Windows CE",
|
||||
|
||||
// Browsers
|
||||
'obigo' => "Obigo",
|
||||
'netfront' => "Netfront Browser",
|
||||
'openwave' => "Openwave Browser",
|
||||
'mobilexplorer' => "Mobile Explorer",
|
||||
'operamini' => "Opera Mini",
|
||||
'opera mini' => "Opera Mini",
|
||||
|
||||
// Other
|
||||
'digital paths' => "Digital Paths",
|
||||
'avantgo' => "AvantGo",
|
||||
'xiino' => "Xiino",
|
||||
'novarra' => "Novarra Transcoder",
|
||||
'vodafone' => "Vodafone",
|
||||
'docomo' => "NTT DoCoMo",
|
||||
'o2' => "O2",
|
||||
|
||||
// Fallback
|
||||
'mobile' => "Generic Mobile",
|
||||
'wireless' => "Generic Mobile",
|
||||
'j2me' => "Generic Mobile",
|
||||
'midp' => "Generic Mobile",
|
||||
'cldc' => "Generic Mobile",
|
||||
'up.link' => "Generic Mobile",
|
||||
'up.browser' => "Generic Mobile",
|
||||
'smartphone' => "Generic Mobile",
|
||||
'cellphone' => "Generic Mobile"
|
||||
);
|
||||
|
||||
// There are hundreds of bots but these are the most common.
|
||||
$robots = array(
|
||||
'googlebot' => 'Googlebot',
|
||||
'msnbot' => 'MSNBot',
|
||||
'slurp' => 'Inktomi Slurp',
|
||||
'yahoo' => 'Yahoo',
|
||||
'askjeeves' => 'AskJeeves',
|
||||
'fastcrawler' => 'FastCrawler',
|
||||
'infoseek' => 'InfoSeek Robot 1.0',
|
||||
'lycos' => 'Lycos'
|
||||
);
|
||||
|
||||
/* End of file user_agents.php */
|
||||
/* Location: ./application/config/user_agents.php */
|
@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,2 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
@ -1,118 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
ERROR - 2018-03-30 16:18:22 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]在将 nvarchar 值 'HT080828004' 转换成数据类型 int 时失败。 @:SELECT coli.COLI_ID,
|
||||
coli.COLI_Department,
|
||||
cold.COLD_ServiceSN,
|
||||
cold.COLD_ServiceSN2,
|
||||
cold.COLD_ServiceCity,
|
||||
*
|
||||
FROM BIZ_ConfirmLineInfo coli
|
||||
INNER JOIN BIZ_ConfirmLineDetail cold ON cold.COLD_COLI_SN=coli.COLI_SN
|
||||
WHERE coli.COLI_ID=170809474
|
||||
ORDER BY COLI_ApplyDate DESC
|
||||
ERROR - 2018-03-30 16:29:57 --> Severity: Warning --> Missing argument 1 for Orders_model::get_guestlist(), called in D:\workspace\trippest\application\controllers\TulanduoApi.php on line 38 and defined D:\workspace\trippest\application\models\orders_model.php 47
|
||||
ERROR - 2018-03-30 16:29:57 --> Severity: Notice --> Undefined variable: COLD_SN_str D:\workspace\trippest\application\models\orders_model.php 52
|
||||
ERROR - 2018-03-30 16:29:57 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:31:50 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:32:25 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:33:17 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:33:51 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:34:07 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:35:09 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:35:26 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT *
|
||||
FROM BIZ_BookPeopleList BPL
|
||||
INNER JOIN BIZ_BookPeople BPE ON BPL_BPE_SN=BPE_SN
|
||||
WHERE BPL_COLD_SN IN ()
|
||||
ERROR - 2018-03-30 16:35:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:35:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:35:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:36:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:36:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:36:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:38:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:38:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:38:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:44:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:44:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:44:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 71
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: 4096 --> Object of class TulanduoApi could not be converted to string D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Notice --> Object of class TulanduoApi to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Notice --> Undefined variable: Object D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 71
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: 4096 --> Object of class TulanduoApi could not be converted to string D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Notice --> Object of class TulanduoApi to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Notice --> Undefined variable: Object D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 65
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:47 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 71
|
||||
ERROR - 2018-03-30 16:58:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:58:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 16:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:01:27 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:01:27 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:01:27 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:02:44 --> Severity: Notice --> Undefined property: stdClass::$orderData D:\workspace\trippest\application\controllers\TulanduoApi.php 73
|
||||
ERROR - 2018-03-30 17:02:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:02:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:02:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:03:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:03:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:03:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:09:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:09:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:09:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:21:53 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 85
|
||||
ERROR - 2018-03-30 17:21:53 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 85
|
||||
ERROR - 2018-03-30 17:21:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:21:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:21:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:23:17 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 86
|
||||
ERROR - 2018-03-30 17:24:50 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:24:50 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:24:50 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:26:23 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-03-30 17:26:23 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-03-30 17:26:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:26:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:26:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:27:32 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-03-30 17:27:32 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-03-30 17:27:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:27:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:27:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:28:24 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-03-30 17:28:24 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-03-30 17:28:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:28:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-03-30 17:28:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
@ -1,106 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
ERROR - 2018-04-02 09:17:20 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-04-02 09:17:20 --> Severity: Warning --> Creating default object from empty value D:\workspace\trippest\application\controllers\TulanduoApi.php 87
|
||||
ERROR - 2018-04-02 09:17:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:17:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:17:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:21:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:21:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:21:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:22:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:22:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 09:22:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:30:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:30:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:30:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:30:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:30:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:30:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:40:45 --> curl error code: 出游时间[travelDate]格式有误!; curl postBodyString: {"jsonParams":"{\"userId\":\"358\",\"key\":\"a08f26ddc5b1bd4c8e5eafcac28fc1ec\",\"orderData\":{\"orderType\":2,\"routeName\":\"(\\u5317\\u4eac\\u56fe\\u5170\\u6735)\\u5317\\u4eac\\u7cbe\\u54c1\\u4e24\\u65e5\\u6e38\",\"routeType\":\"\\u5317\\u4eac\\u76ee\\u7684\\u5730\\u7ebf\\u8def\",\"agcOrderNo\":\"CHBJ171223-BWM170809474\",\"adultNum\":2,\"childNum\":0,\"destination\":\"\\u5317\\u4eac\",\"travelDate\":\"2017-12-23 00:00:00\",\"leavedDate\":\"2017-12-23 08:00:00\",\"customers\":[{\"name\":\"SHINTAKU\",\"peopleType\":1,\"documentType\":\"\\u62a4\\u7167\",\"documenNo\":\"523429066\",\"otherInfo\":\"\\u6027\\u522b\"},{\"name\":\"PROMSIRI\",\"peopleType\":1,\"documentType\":\"\\u62a4\\u7167\",\"documenNo\":\"461694068\",\"otherInfo\":\"\\u6027\\u522b\"}],\"scheduleDetails\":[{\"content\":\"7:30 - 11:00\\uff1a \\u9152\\u5e97\\u63a5\\u5ba2\\u4eba\\uff0c\\u6e38\\u89c8\\u9890\\u548c\\u56ed\\uff1b\\r\\n11:20 \\u2013 11:40\\uff1a\\u53c2\\u89c2\\u9e1f\\u5de2\\u6c34\\u7acb\\u65b9\\u5916\\u89c2\\uff1b\\r\\n12:00 - 13:00\\uff1a \\u5728\\u5927\\u7897\\u5c45\\u5348\\u9910\\uff1b\\r\\n13:30 - 14:10\\uff1a \\u6e38\\u89c8\\u666f\\u5c71\\u516c\\u56ed\\uff1b\\r\\n14:30 - 16:10\\uff1a \\u6e38\\u89c8\\u5929\\u575b\\uff1b\\r\\n16:30 - 17:30\\uff1a\\u9001\\u9152\\u5e97\\u3002\",\"title\":\"(\\u5317\\u4eac\\u56fe\\u5170\\u6735)\\u5317\\u4eac\\u7cbe\\u54c1\\u4e24\\u65e5\\u6e38 \\uff08\\u7b2c\\u4e8c\\u5929\\uff0c\\u9890\\u548c\\u56ed\\u3001\\u9e1f\\u5de2\\u6c34\\u7acb\\u65b9\\u5916\\u89c2\\u3001\\u5348\\u9910\\u3001\\u666f\\u5c71\\u3001\\u5929\\u575b\\uff09\",\"breakFirst\":0,\"lunch\":1,\"dinner\":0}]}}","notHander":"1"}
|
||||
ERROR - 2018-04-02 10:40:45 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:40:45 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:40:45 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:42:51 --> curl error code: 出游时间[travelDate]格式有误!; curl postBodyString: {"jsonParams":"{\"userId\":\"358\",\"key\":\"a08f26ddc5b1bd4c8e5eafcac28fc1ec\",\"orderData\":{\"orderType\":2,\"routeName\":\"(\\u5317\\u4eac\\u56fe\\u5170\\u6735)\\u5317\\u4eac\\u7cbe\\u54c1\\u4e24\\u65e5\\u6e38\",\"routeType\":\"\\u5317\\u4eac\\u76ee\\u7684\\u5730\\u7ebf\\u8def\",\"agcOrderNo\":\"CHBJ171223-BWM170809474\",\"adultNum\":2,\"childNum\":0,\"destination\":\"\\u5317\\u4eac\",\"travelDate\":\" 00:00:00\",\"leavedDate\":\" 08:00:00\",\"customers\":[{\"name\":\"SHINTAKU\",\"peopleType\":1,\"documentType\":\"\\u62a4\\u7167\",\"documenNo\":\"523429066\",\"otherInfo\":\"\\u6027\\u522b\"},{\"name\":\"PROMSIRI\",\"peopleType\":1,\"documentType\":\"\\u62a4\\u7167\",\"documenNo\":\"461694068\",\"otherInfo\":\"\\u6027\\u522b\"}],\"scheduleDetails\":[{\"content\":\"7:30 - 11:00\\uff1a \\u9152\\u5e97\\u63a5\\u5ba2\\u4eba\\uff0c\\u6e38\\u89c8\\u9890\\u548c\\u56ed\\uff1b\\r\\n11:20 \\u2013 11:40\\uff1a\\u53c2\\u89c2\\u9e1f\\u5de2\\u6c34\\u7acb\\u65b9\\u5916\\u89c2\\uff1b\\r\\n12:00 - 13:00\\uff1a \\u5728\\u5927\\u7897\\u5c45\\u5348\\u9910\\uff1b\\r\\n13:30 - 14:10\\uff1a \\u6e38\\u89c8\\u666f\\u5c71\\u516c\\u56ed\\uff1b\\r\\n14:30 - 16:10\\uff1a \\u6e38\\u89c8\\u5929\\u575b\\uff1b\\r\\n16:30 - 17:30\\uff1a\\u9001\\u9152\\u5e97\\u3002\",\"title\":\"(\\u5317\\u4eac\\u56fe\\u5170\\u6735)\\u5317\\u4eac\\u7cbe\\u54c1\\u4e24\\u65e5\\u6e38 \\uff08\\u7b2c\\u4e8c\\u5929\\uff0c\\u9890\\u548c\\u56ed\\u3001\\u9e1f\\u5de2\\u6c34\\u7acb\\u65b9\\u5916\\u89c2\\u3001\\u5348\\u9910\\u3001\\u666f\\u5c71\\u3001\\u5929\\u575b\\uff09\",\"breakFirst\":0,\"lunch\":1,\"dinner\":0}]}}","notHander":"1"}
|
||||
ERROR - 2018-04-02 10:42:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:42:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:42:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:43:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:43:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:43:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:48:46 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:48:46 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 10:48:46 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:08:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:08:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:08:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:16:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:16:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:16:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:50:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:50:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:50:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:50:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:52:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:52:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:52:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:52:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:53:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:53:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:53:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:53:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:55:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:55:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:55:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:55:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:55:20 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:56:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:56:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:56:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:56:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:56:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:59:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:59:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:59:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:59:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 11:59:51 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 12:09:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 12:09:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 12:09:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 12:09:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 12:09:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:01:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:01:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:01:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:01:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:01:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:03:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:03:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:03:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:03:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 16:03:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:55:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 17:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 18:13:17 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 18:13:17 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 18:13:17 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 18:13:17 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-02 18:13:17 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
@ -1,676 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
ERROR - 2018-04-03 12:03:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 12:03:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 12:03:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 12:03:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 12:03:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 42
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 43
|
||||
ERROR - 2018-04-03 13:55:16 --> get_orderlist failed. Msg:; Request: {"userId":"358","key":"a08f26ddc5b1bd4c8e5eafcac28fc1ec","startOrderDate":"2018-04-01","endOrderDate":"2018-04-04"}
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:16 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 43
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 44
|
||||
ERROR - 2018-04-03 13:55:44 --> get_orderlist failed. Msg:; Request: {"userId":"358","key":"a08f26ddc5b1bd4c8e5eafcac28fc1ec","startOrderDate":"2018-04-01","endOrderDate":"2018-04-04"}
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:55:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 44
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 45
|
||||
ERROR - 2018-04-03 13:56:05 --> get_orderlist failed. Msg:; Request: {"userId":"358","key":"a08f26ddc5b1bd4c8e5eafcac28fc1ec","startOrderDate":"2018-04-01","endOrderDate":"2018-04-04"}
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:56:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:58:06 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:58:06 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:58:06 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:58:06 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 13:58:06 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:10:41 --> Severity: Warning --> array_map(): Argument #2 should be an array D:\workspace\trippest\application\controllers\TulanduoApi.php 47
|
||||
ERROR - 2018-04-03 14:11:02 --> Severity: Warning --> array_map(): Argument #2 should be an array D:\workspace\trippest\application\controllers\TulanduoApi.php 47
|
||||
ERROR - 2018-04-03 14:11:02 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]')' 附近有语法错误。 @:SELECT COLI_GroupCode
|
||||
FROM BIZ_ConfirmLineInfo coli
|
||||
WHERE coli.COLI_GroupCode IN ()
|
||||
ERROR - 2018-04-03 14:11:30 --> Severity: Warning --> array_map(): Argument #2 should be an array D:\workspace\trippest\application\controllers\TulanduoApi.php 47
|
||||
ERROR - 2018-04-03 14:11:30 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:11:30 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:11:30 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:11:30 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:11:30 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 47
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Notice --> Trying to get property of non-object D:\workspace\trippest\application\controllers\TulanduoApi.php 47
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:00 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:26 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 47
|
||||
ERROR - 2018-04-03 14:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:47 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:12:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:12:47 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:31 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:31 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:31 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:31 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:31 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:14:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:15:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:15:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:15:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:15:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:15:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:20:55 --> Severity: Notice --> Undefined offset: 0 D:\workspace\trippest\application\controllers\TulanduoApi.php 52
|
||||
ERROR - 2018-04-03 14:20:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:20:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:20:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:20:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:20:55 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:15 --> Severity: Notice --> Undefined offset: 0 D:\workspace\trippest\application\controllers\TulanduoApi.php 52
|
||||
ERROR - 2018-04-03 14:21:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:59 --> Severity: Notice --> Undefined offset: 0 D:\workspace\trippest\application\controllers\TulanduoApi.php 52
|
||||
ERROR - 2018-04-03 14:21:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:21:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:42 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Notice --> Array to string conversion D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:28:43 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> Missing argument 2 for TulanduoApi::{closure}() D:\workspace\trippest\application\controllers\TulanduoApi.php 53
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: k D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:32:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Notice --> Undefined variable: GroupCode_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> array_keys() expects parameter 1 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> in_array() expects parameter 2 to be array, null given D:\workspace\trippest\application\controllers\TulanduoApi.php 54
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:33:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:47:23 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:47:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:47:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:47:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:47:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:47:23 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:48:49 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:48:49 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:48:49 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:48:49 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:48:49 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:48:49 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:12 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:49:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:53 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:49:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:49:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:51:12 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:51:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:51:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:51:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:51:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:51:12 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:52:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:52:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:52:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:52:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:52:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:52:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:03 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:54:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:18 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:54:18 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:18 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:18 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:18 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:54:18 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:55:10 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:55:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:55:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:55:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:55:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:55:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:56:29 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:56:29 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:56:29 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:56:29 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:56:29 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:56:29 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:57:02 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:57:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:57:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:57:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:57:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:57:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 60
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:58:33 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:15 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:59:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:34 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 14:59:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 14:59:53 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 15:00:15 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 15:00:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 15:00:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 15:00:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 15:00:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 15:00:15 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:22 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 16:43:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 16:43:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:43:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:44:34 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 16:44:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:44:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:44:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:44:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 16:44:34 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:03:05 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:03:05 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:03:05 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:03:05 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]'N' 附近有语法错误。 @:INSERT INTO BIZ_ConfirmLineInfo
|
||||
(
|
||||
COLI_ID,
|
||||
COLI_GUT_SN,
|
||||
COLI_Area,
|
||||
COLI_ApplyDate,
|
||||
COLI_Price,
|
||||
COLI_Cost,
|
||||
COLI_Currency,
|
||||
COLI_TrueCardRate,
|
||||
COLI_AgencyID,
|
||||
COLI_OrderDetailText,
|
||||
COLI_SenderIP,
|
||||
COLI_WebCode,
|
||||
COLI_servicetype,
|
||||
COLI_sourcetype,
|
||||
COLI_ConfirmType,
|
||||
COLI_State,
|
||||
COLI_Department,
|
||||
COLI_AddCode,
|
||||
COLI_OrderSource,
|
||||
COLI_Memo,
|
||||
COLI_OriginalText
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
'180403006',
|
||||
NULL,
|
||||
2,
|
||||
NULL,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NNULL,
|
||||
'',
|
||||
'D',
|
||||
32090,
|
||||
52001,
|
||||
9,
|
||||
30,
|
||||
'15227461856300',
|
||||
'62001',
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
NULL,
|
||||
N
|
||||
ERROR - 2018-04-03 17:04:46 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:04:46 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:04:46 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:04:46 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:04:46 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]'N' 附近有语法错误。 @:INSERT INTO BIZ_ConfirmLineInfo
|
||||
(
|
||||
COLI_ID,
|
||||
COLI_GUT_SN,
|
||||
COLI_Area,
|
||||
COLI_ApplyDate,
|
||||
COLI_Price,
|
||||
COLI_Cost,
|
||||
COLI_Currency,
|
||||
COLI_TrueCardRate,
|
||||
COLI_AgencyID,
|
||||
COLI_OrderDetailText,
|
||||
COLI_SenderIP,
|
||||
COLI_WebCode,
|
||||
COLI_servicetype,
|
||||
COLI_sourcetype,
|
||||
COLI_ConfirmType,
|
||||
COLI_State,
|
||||
COLI_Department,
|
||||
COLI_AddCode,
|
||||
COLI_OrderSource,
|
||||
COLI_Memo,
|
||||
COLI_OriginalText
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
'180403012',
|
||||
NULL,
|
||||
2,
|
||||
NULL,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
NNULL,
|
||||
'',
|
||||
'D',
|
||||
32090,
|
||||
52001,
|
||||
9,
|
||||
30,
|
||||
'15227462867070',
|
||||
'62001',
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
NULL,
|
||||
N
|
||||
ERROR - 2018-04-03 17:06:04 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:06:04 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:06:04 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:06:04 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:06:04 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]'N' 附近有语法错误。 @:INSERT INTO BIZ_ConfirmLineInfo
|
||||
(
|
||||
COLI_ID,
|
||||
COLI_GUT_SN,
|
||||
COLI_Area,
|
||||
COLI_ApplyDate,
|
||||
COLI_Price,
|
||||
COLI_Cost,
|
||||
COLI_Currency,
|
||||
COLI_TrueCardRate,
|
||||
COLI_AgencyID,
|
||||
COLI_OrderDetailText,
|
||||
COLI_SenderIP,
|
||||
COLI_WebCode,
|
||||
COLI_servicetype,
|
||||
COLI_sourcetype,
|
||||
COLI_ConfirmType,
|
||||
COLI_State,
|
||||
COLI_Department,
|
||||
COLI_AddCode,
|
||||
COLI_OrderSource,
|
||||
COLI_Memo,
|
||||
COLI_OriginalText
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
'180403018',
|
||||
NULL,
|
||||
2,
|
||||
NULL,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
N'',
|
||||
'',
|
||||
'D',
|
||||
32090,
|
||||
52001,
|
||||
9,
|
||||
30,
|
||||
'15227463643910',
|
||||
'62001',
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
NULL,
|
||||
N
|
||||
ERROR - 2018-04-03 17:07:11 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:07:11 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:07:11 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:07:11 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:07:11 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]'N' 附近有语法错误。 @:INSERT INTO BIZ_ConfirmLineInfo
|
||||
(
|
||||
COLI_ID,
|
||||
COLI_GUT_SN,
|
||||
COLI_Area,
|
||||
COLI_ApplyDate,
|
||||
COLI_Price,
|
||||
COLI_Cost,
|
||||
COLI_Currency,
|
||||
COLI_TrueCardRate,
|
||||
COLI_AgencyID,
|
||||
COLI_OrderDetailText,
|
||||
COLI_SenderIP,
|
||||
COLI_WebCode,
|
||||
COLI_servicetype,
|
||||
COLI_sourcetype,
|
||||
COLI_ConfirmType,
|
||||
COLI_State,
|
||||
COLI_Department,
|
||||
COLI_AddCode,
|
||||
COLI_OrderSource,
|
||||
COLI_Memo,
|
||||
COLI_OriginalText
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
'180403024',
|
||||
NULL,
|
||||
2,
|
||||
NULL,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
N'',
|
||||
'',
|
||||
'D',
|
||||
32090,
|
||||
52001,
|
||||
9,
|
||||
30,
|
||||
'15227464314580',
|
||||
'62001',
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
NULL,
|
||||
N
|
||||
ERROR - 2018-04-03 17:18:27 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:18:27 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:18:27 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:18:27 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:18:27 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]列名 'NNULL' 无效。 @:INSERT INTO BIZ_ConfirmLineInfo
|
||||
(
|
||||
COLI_ID,
|
||||
COLI_GUT_SN,
|
||||
COLI_Area,
|
||||
COLI_ApplyDate,
|
||||
COLI_Price,
|
||||
COLI_Cost,
|
||||
COLI_Currency,
|
||||
COLI_TrueCardRate,
|
||||
COLI_AgencyID,
|
||||
COLI_OrderDetailText,
|
||||
COLI_SenderIP,
|
||||
COLI_WebCode,
|
||||
COLI_servicetype,
|
||||
COLI_sourcetype,
|
||||
COLI_ConfirmType,
|
||||
COLI_State,
|
||||
COLI_Department,
|
||||
COLI_AddCode,
|
||||
COLI_OrderSource,
|
||||
COLI_Memo,
|
||||
COLI_OriginalText
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
'180403030',
|
||||
NULL,
|
||||
2,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
N'北京精品两日游(目的地)
|
||||
',
|
||||
'',
|
||||
'',
|
||||
'D',
|
||||
32090,
|
||||
52001,
|
||||
9,
|
||||
30,
|
||||
'15227471078350',
|
||||
'62001',
|
||||
'北京精品两日游(目的地)
|
||||
',
|
||||
NNULL
|
||||
)
|
||||
ERROR - 2018-04-03 17:18:57 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:18:57 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:18:57 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:18:57 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:18:58 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 62
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Notice --> Undefined index: orderRemark D:\workspace\trippest\application\controllers\TulanduoApi.php 63
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-03 17:20:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
@ -1,260 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Notice --> Undefined index: orderTime D:\workspace\trippest\application\controllers\TulanduoApi.php 58
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:12:13 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:13:32 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 09:13:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:13:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:13:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:13:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 09:13:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:45:57 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:45:57 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:45:57 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]列名 'NNULL' 无效。 @:INSERT INTO GRoupInfo
|
||||
(GRI_No
|
||||
,GRI_Name
|
||||
,GRI_PersonNum
|
||||
,GRI_Days
|
||||
,GRI_IsCancel
|
||||
,GRI_OrderType)
|
||||
VALUES (NNULL,NNULL,NULL,NULL,0,NULL)
|
||||
ERROR - 2018-04-04 10:47:02 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:47:02 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:47:02 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]列名 'NNULL' 无效。 @:INSERT INTO GRoupInfo
|
||||
(GRI_No
|
||||
,GRI_Name
|
||||
,GRI_PersonNum
|
||||
,GRI_Days
|
||||
,GRI_IsCancel
|
||||
,GRI_OrderType)
|
||||
VALUES (NNULL,NNULL,NULL,NULL,0,NULL)
|
||||
ERROR - 2018-04-04 10:47:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:47:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:47:52 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]不能将值 NULL 插入列 'DeleteFlag',表 'tourmanager.dbo.GRoupInfo';列不允许有 Null 值。INSERT 失败。 @:INSERT INTO GRoupInfo
|
||||
(GRI_No
|
||||
,GRI_Name
|
||||
,GRI_PersonNum
|
||||
,GRI_Days
|
||||
,GRI_IsCancel
|
||||
,GRI_OrderType)
|
||||
VALUES (N'CHBJ170823-BHX170809390-1',N'CHBJ170823-BHX170809390-1',2,1,0,227002)
|
||||
ERROR - 2018-04-04 10:49:16 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:49:16 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:49:16 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]INSERT 语句中列的数目大于 VALUES 子句中指定的值的数目。VALUES 子句中值的数目必须与 INSERT 语句中指定的列的数目匹配。 @:INSERT INTO GRoupInfo
|
||||
(GRI_No
|
||||
,GRI_Name
|
||||
,GRI_PersonNum
|
||||
,GRI_Days
|
||||
,GRI_IsCancel
|
||||
,DeleteFlag
|
||||
,GRI_OrderType)
|
||||
VALUES (N'CHBJ170823-BHX170809390-1',N'CHBJ170823-BHX170809390-1',2,1,0,0)
|
||||
ERROR - 2018-04-04 10:49:55 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:49:55 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:49:55 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]列名 'CHBJ170823' 无效。 @:select MAX(GRI_SN) as insert_id FROM GRoupInfo WHERE GRI_No=CHBJ170823-BHX170809390-1
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Notice --> Undefined property: TulanduoApi::$GRI_SN D:\workspace\trippest\application\controllers\TulanduoApi.php 73
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:50:41 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:54:24 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:55:37 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:56:28 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 10:59:03 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:00:10 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:07:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:09:25 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:09:25 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:09:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:09:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:09:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:09:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:09:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 57
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 59
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 73
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:12:44 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:06 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:16:06 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:16:06 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 57
|
||||
ERROR - 2018-04-04 11:16:06 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 59
|
||||
ERROR - 2018-04-04 11:16:06 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 73
|
||||
ERROR - 2018-04-04 11:16:06 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:07 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:07 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:07 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:07 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Notice --> Undefined variable: ss D:\workspace\trippest\application\controllers\TulanduoApi.php 82
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 11:16:52 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:12:26 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:13:56 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:17:23 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:17:23 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:17:23 --> Severity: Notice --> Undefined variable: today_obj D:\workspace\trippest\application\controllers\TulanduoApi.php 61
|
||||
ERROR - 2018-04-04 15:18:00 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:18:00 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:18:01 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:01 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:01 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:01 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:01 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:18:39 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 15:28:48 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:27:29 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:27:29 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:27:29 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:27:54 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:27:54 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:27:54 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:27:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:27:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:27:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:27:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:27:59 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:31:05 --> tag475000826
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:31:05 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:32:32 --> tag475000827
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:32:32 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:35:21 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:35:21 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:35:21 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:35:21 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]拒绝了对对象 'BIZ_GUEST' (数据库 'Tourmanager',架构 'dbo')的 INSERT 权限。 @:INSERT INTO BIZ_Guest
|
||||
(
|
||||
GUT_FirstName,
|
||||
GUT_LastName,
|
||||
GUT_Title,
|
||||
GUT_Email,
|
||||
GUT_Email2,
|
||||
GUT_NationalityID,
|
||||
GUT_Passport,
|
||||
GUT_TEL,
|
||||
GUT_MoveTel,
|
||||
GUT_AddCode,
|
||||
GUT_CreateDate
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
N'',
|
||||
N'Ms. Dana Schwanz',
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
'471756661',
|
||||
NULL,
|
||||
NULL,
|
||||
'15228309213330',
|
||||
GETDATE()
|
||||
)
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Notice --> Undefined index: agcOrderNo D:\workspace\trippest\application\controllers\TulanduoApi.php 48
|
||||
ERROR - 2018-04-04 16:43:35 --> tag475000828
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-04 16:43:35 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
@ -1,2 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
@ -1,76 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
ERROR - 2018-04-13 16:51:57 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:51:59 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:52:00 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":3,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:52:01 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:52:02 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\",\"orderId\":13458}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:52:02 --> GRI
|
||||
ERROR - 2018-04-13 16:52:02 --> COLI475000834
|
||||
ERROR - 2018-04-13 16:52:02 --> COLD490000931
|
||||
ERROR - 2018-04-13 16:52:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:52:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:52:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:52:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:52:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:52:02 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:54:23 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:54:24 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:54:24 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":3,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:54:25 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:54:25 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\",\"orderId\":13458}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:54:25 --> in gri
|
||||
ERROR - 2018-04-13 16:54:25 --> GRI
|
||||
ERROR - 2018-04-13 16:54:25 --> COLI475000835
|
||||
ERROR - 2018-04-13 16:54:25 --> COLD490000932
|
||||
ERROR - 2018-04-13 16:54:25 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:54:25 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:54:25 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:54:25 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:54:25 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:54:25 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:56:06 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:56:06 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:56:07 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":3,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:56:07 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:56:08 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\",\"orderId\":13458}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:56:08 --> in gri
|
||||
ERROR - 2018-04-13 16:56:08 --> GRI
|
||||
ERROR - 2018-04-13 16:56:08 --> COLI475000836
|
||||
ERROR - 2018-04-13 16:56:08 --> COLD490000933
|
||||
ERROR - 2018-04-13 16:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:56:08 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:57:12 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:57:13 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:57:13 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":3,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:57:14 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:57:14 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\",\"orderId\":13458}","notHander":"1"}
|
||||
ERROR - 2018-04-13 16:57:14 --> in gri
|
||||
ERROR - 2018-04-13 16:57:14 --> GRI
|
||||
ERROR - 2018-04-13 16:57:14 --> COLI475000837
|
||||
ERROR - 2018-04-13 16:57:14 --> COLD490000934
|
||||
ERROR - 2018-04-13 16:57:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:57:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:57:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:57:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:57:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 16:57:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 17:01:12 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 17:01:13 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 17:01:13 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":3,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 17:01:14 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\"}","notHander":"1"}
|
||||
ERROR - 2018-04-13 17:01:14 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":4,\"startTravelDate\":\"2018-04-01\",\"endTravelDate\":\"2018-04-03\",\"orderId\":13458}","notHander":"1"}
|
||||
ERROR - 2018-04-13 17:01:14 --> in gri
|
||||
ERROR - 2018-04-13 17:01:14 --> GRI31
|
||||
ERROR - 2018-04-13 17:01:14 --> COLI475000838
|
||||
ERROR - 2018-04-13 17:01:14 --> COLD490000935
|
||||
ERROR - 2018-04-13 17:01:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 17:01:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 17:01:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, array given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 17:01:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 17:01:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
||||
ERROR - 2018-04-13 17:01:14 --> Severity: Warning --> get_class() expects parameter 1 to be object, string given D:\workspace\system\libraries\Profiler.php 166
|
@ -1,72 +0,0 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
ERROR - 2018-04-15 14:37:11 --> curl postBodyString: {
|
||||
"jsonParams": "{\"userId\":\"358\",\"key\":\"a08f26ddc5b1bd4c8e5eafcac28fc1ec\",\"orderData\":{\"travelFees\":[{\"type\":\"团款\",\"money\":\"756.00\",\"num\":1,\"unit\":\"6.4795\",\"sumMoney\":\"4898.57\",\"remark\":\"交易号(自动录入):17T02847CV281080D\"}],\"replaceCollections\":[],\"replacePays\":[],\"scheduleDetails\":[],\"customers\":[{\"name\":\"ZERVOS JOANNE\",\"peopleType\":\"成人\",\"documentType\":\"Passport No.\",\"documentNo\":\"511460159\",\"otherInfo\":\"\"},{\"name\":\"MAGUIRE PETER\",\"peopleType\":\"成人\",\"documentType\":\"Passport No.\",\"documentNo\":\"495326176\",\"otherInfo\":\"\"},{\"name\":\"MAGUIRE JOHN\",\"peopleType\":\"成人\",\"documentType\":\"Passport No.\",\"documentNo\":\"526333245\",\"otherInfo\":\"\"},{\"name\":\"MAGUIRE BILL\",\"peopleType\":\"成人\",\"documentType\":\"Passport No.\",\"documentNo\":\"480595859\",\"otherInfo\":\"\"}],\"orderType\":1,\"routeName\":\"北京精品两日游(目的地)\",\"routeType\":\"北京目的地线路\",\"agcOrderNo\":\"CHBJ170823-BHX170809390\",\"adultNum\":2,\"childNum\":0,\"destination\":\"北京\",\"travelDate\":\"2017-08-23\",\"leavedDate\":\"2017-08-23\"}}",
|
||||
"notHander": "1"
|
||||
}
|
||||
ERROR - 2018-04-15 16:25:26 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-10\",\"endTravelDate\":\"2018-04-10\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:25:26 --> TulanduoApi get_orderlist failed. Msg:; Request: {}
|
||||
ERROR - 2018-04-15 16:25:52 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-10\",\"endTravelDate\":\"2018-04-10\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:25:52 --> TulanduoApi get_orderlist failed. Msg:; Request: {}
|
||||
ERROR - 2018-04-15 16:26:47 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-10\",\"endTravelDate\":\"2018-04-10\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:26:47 --> TulanduoApi get_orderlist failed. Msg:; Request: {}
|
||||
ERROR - 2018-04-15 16:27:04 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-10\",\"endTravelDate\":\"2018-04-10\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:27:04 --> in gri
|
||||
ERROR - 2018-04-15 16:27:04 --> Severity: Notice --> Undefined variable: allDetails_to_HT D:\workspace\trippest\application\controllers\TulanduoApi.php 184
|
||||
ERROR - 2018-04-15 16:27:04 --> COLI_ID 180415156
|
||||
ERROR - 2018-04-15 16:30:31 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-12\",\"endTravelDate\":\"2018-04-12\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:30:31 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-12\",\"endTravelDate\":\"2018-04-12\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:30:31 --> in gri
|
||||
ERROR - 2018-04-15 16:30:31 --> COLI_ID 180415162
|
||||
ERROR - 2018-04-15 16:33:09 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-12\",\"endTravelDate\":\"2018-04-12\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:33:10 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-12\",\"endTravelDate\":\"2018-04-12\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:33:10 --> in gri
|
||||
ERROR - 2018-04-15 16:33:10 --> Query error: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]在 SET 子句中多次指定了列名 'COLD_Memo'。在同一 SET 子句中不得为一个列分配多个值。请修改 SET 子句,以确保一个列仅更新一次。如果 SET 子句更新了某视图的多列,那么列名 'COLD_Memo' 可能会在该视图定义中出现两次。 @:INSERT INTO BIZ_ConfirmLineDetail
|
||||
(
|
||||
COLD_COLI_SN,
|
||||
COLD_ServiceType,
|
||||
COLD_StartDate,
|
||||
COLD_EndDate,
|
||||
COLD_TotalCost,
|
||||
COLD_TotalPrice,
|
||||
COLD_Count,
|
||||
COLD_PersonNum,
|
||||
COLD_ChildNum,
|
||||
COLD_BabyNum,
|
||||
cold_state,
|
||||
DeleteFlag,
|
||||
COLD_DeliveryCharge,
|
||||
COLD_AddCode,
|
||||
COLD_PlanVEI_SN,
|
||||
COLD_SPFS,
|
||||
COLD_Memo,
|
||||
COLD_Memo,
|
||||
COLD_ServiceSN
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
475000866,
|
||||
'D',
|
||||
'2018-04-12',
|
||||
'2018-04-13',
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
1,
|
||||
0,
|
||||
NULL,
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
'15237811903740',
|
||||
1343,
|
||||
NULL,
|
||||
NULL,
|
||||
'{"Pick up":"7:20 \/ \u5317\u4eac\u4e3d\u82d1\u516c\u5bd3 Lee Garden Service Apartment Beijing","Drop off":"\u5317\u4eac\u4e3d\u82d1\u516c\u5bd3 Lee Garden Service Apartment Beijing"}',
|
||||
NULL
|
||||
)
|
||||
ERROR - 2018-04-15 16:33:10 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at D:\workspace\trippest\application\controllers\TulanduoApi.php:84) D:\workspace\system\core\Common.php 439
|
||||
ERROR - 2018-04-15 16:33:30 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":1,\"startTravelDate\":\"2018-04-12\",\"endTravelDate\":\"2018-04-12\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:33:30 --> curl postBodyString: {"jsonParams":"{\"userId\":\"1134\",\"key\":\"73d180d05d425fd192e1c5b3097e75ff\",\"pageSize\":20,\"pageIndex\":2,\"startTravelDate\":\"2018-04-12\",\"endTravelDate\":\"2018-04-12\"}","notHander":"1"}
|
||||
ERROR - 2018-04-15 16:33:30 --> in gri
|
||||
ERROR - 2018-04-15 16:33:31 --> COLI_ID 180415174
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue