product.blueup.vn rapport :   Visitez le site


Titre:invalid parameter – yii\base\invalidparamexception

La description :invalid parameter – yii\base\invalidparamexception operator 'like' requires two operands. 1. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/querybuilder.php at line 1206 1197 1198 1199 1200 1201...

Classement Alexa Global: # 840,795,Alexa Classement dans Vietnam est # 8,031

Server:Apache...
X-Powered-By:PHP/5.6.37

L'adresse IP principale: 112.213.89.132,Votre serveur Viet Nam,Ha Dong ISP:PAVIETNAM Co Ltd.  TLD:vn Code postal:vn

Ce rapport est mis à jour en 27-Jul-2018

Données techniques du product.blueup.vn


Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations. Notre service GeoIP a trouvé l'hôte product.blueup.vn.Actuellement, hébergé dans Viet Nam et son fournisseur de services est PAVIETNAM Co Ltd. .

Latitude: 20.972499847412
Longitude: 105.77722167969
Pays: Viet Nam (vn)
Ville: Ha Dong
Région: Ha Noi
ISP: PAVIETNAM Co Ltd.

the related websites

domaine Titre
    tagproduct.com mth-hydraulique.com biotanic-culture.com anidif.com museedelaphoto.fr distrimed.com aperosansalcool.com soins2000.com 

Analyse d'en-tête HTTP


Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé Apache contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.

Upgrade:h2,h2c
X-Powered-By:PHP/5.6.37
Transfer-Encoding:chunked
Set-Cookie:PHPSESSID=minl7q4ftf1porbmghm7ta9ks0; path=/; HttpOnly
Expires:Thu, 19 Nov 1981 08:52:00 GMT
Server:Apache
Connection:Upgrade, close
Pragma:no-cache
Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Date:Fri, 27 Jul 2018 09:28:59 GMT
Content-Type:text/html; charset=UTF-8

DNS

ipv4:IP:112.213.89.132
ASN:45544
OWNER:SUPERDATA-AS-VN SUPERDATA-, VN
Country:VN

HtmlToText

invalid parameter – yii\base\invalidparamexception operator 'like' requires two operands. 1. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/querybuilder.php at line 1206 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 * should be applied. note that when using an escape mapping (or the third operand is not provided), * the values will be automatically enclosed within a pair of percentage characters. * @param array $params the binding parameters to be populated * @return string the generated sql expression * @throws invalidparamexception if wrong number of operands have been given. */ public function buildlikecondition($operator, $operands, &$params) { if (!isset($operands[0], $operands[1])) { throw new invalidparamexception("operator '$operator' requires two operands."); } $escape = isset($operands[2]) ? $operands[2] : ['%' => '\%', '_' => '\_', '\\' => '\\\\']; unset($operands[2]); if (!preg_match('/^(and |or |)(((not |))i?like)/', $operator, $matches)) { throw new invalidparamexception("invalid operator '$operator'."); } $andor = ' ' . (!empty($matches[1]) ? $matches[1] : 'and '); 2. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/querybuilder.php at line 924 – yii\db\querybuilder::buildlikecondition ( 'like' , [ 'name' , null ], []) 918 919 920 921 922 923 924 925 926 927 928 929 930 if (isset($this->conditionbuilders[$operator])) { $method = $this->conditionbuilders[$operator]; } else { $method = 'buildsimplecondition'; } array_shift($condition); return $this->$method($operator, $condition, $params); } else { // hash format: 'column1' => 'value1', 'column2' => 'value2', ... return $this->buildhashcondition($condition, $params); } } /** 3. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/querybuilder.php at line 743 – yii\db\querybuilder::buildcondition ([ 'like' , 'name' , null ], '[]' ) 737 738 739 740 741 742 743 744 745 746 747 748 749 * @param string|array $condition * @param array $params the binding parameters to be populated * @return string the where clause built from [[query::$where]]. */ public function buildwhere($condition, &$params) { $where = $this->buildcondition($condition, $params); return $where === '' ? '' : 'where ' . $where; } /** * @param array $columns 4. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/querybuilder.php at line 96 – yii\db\querybuilder::buildwhere ([ 'like' , 'name' , null ], '<span class="string">'[]'</span>' ) 90 91 92 93 94 95 96 97 98 99 100 101 102 $params = empty($params) ? $query->params : array_merge($params, $query->params); $clauses = [ $this->buildselect($query->select, $params, $query->distinct, $query->selectoption), $this->buildfrom($query->from, $params), $this->buildjoin($query->join, $params), $this->buildwhere($query->where, $params), $this->buildgroupby($query->groupby), $this->buildhaving($query->having, $params), ]; $sql = implode($this->separator, array_filter($clauses)); $sql = $this->buildorderbyandlimit($sql, $query->orderby, $query->limit, $query->offset); 5. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/activequery.php at line 324 – yii\db\querybuilder::build ( yii\db\activequery ) 318 319 320 321 322 323 324 325 326 327 328 329 330 $modelclass = $this->modelclass; if ($db === null) { $db = $modelclass::getdb(); } if ($this->sql === null) { list ($sql, $params) = $db->getquerybuilder()->build($this); } else { $sql = $this->sql; $params = $this->params; } return $db->createcommand($sql, $params); 6. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/query.php at line 243 – yii\db\activequery::createcommand ( null ) 237 238 239 240 241 242 243 244 245 246 247 248 249 * if this parameter is not given, the `db` application component will be used. * @return array|boolean the first row (in terms of an array) of the query result. false is returned if the query * results in nothing. */ public function one($db = null) { return $this->createcommand($db)->queryone(); } /** * returns the query result as a scalar value. * the value returned will be the first column in the first row of the query results. * @param connection $db the database connection used to generate the sql statement. 7. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/db/activequery.php at line 300 – yii\db\query::one ( null ) 294 295 296 297 298 299 300 301 302 303 304 305 306 * @return activerecord|array|null a single row of query result. depending on the setting of [[asarray]], * the query result may be either an array or an activerecord object. null will be returned * if the query results in nothing. */ public function one($db = null) { $row = parent::one($db); if ($row !== false) { $models = $this->populate([$row]); return reset($models) ?: null; } else { return null; } 8. in /home/wwwblueu/public_html/frontend/controllers/sitecontroller.php at line 222 – yii\db\activequery::one () 216 217 218 219 220 221 222 223 224 225 226 227 228 //find product $products = orderdetail::findall($product); //find promotion if ($promotion != null && !isset($giamgia)) { $giamgia = promotion::find()->where(['code' => $promotion])->one(); } else { $giamgia = product::find()->where(['like','name', $product])->one(); } if ($model->load($post) && model::loadmultiple($products, $post)) { $model->sdt = preg_replace('/[^0-9]/', '', $model->sdt); $session = yii::$app->session; $session->open(); 9. frontend\controllers\sitecontroller::actionview( null , null , null , null ) 10. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/base/inlineaction.php at line 55 – call_user_func_array([ frontend\controllers\sitecontroller , 'actionview' ], [ null , null , null , null ]) 49 50 51 52 53 54 55 56 57 $args = $this->controller->bindactionparams($this, $params); yii::trace('running action: ' . get_class($this->controller) . '::' . $this->actionmethod . '()', __method__); if (yii::$app->requestedparams === null) { yii::$app->requestedparams = $args; } return call_user_func_array([$this->controller, $this->actionmethod], $args); } } 11. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/base/controller.php at line 151 – yii\base\inlineaction::runwithparams ([]) 145 146 147 148 149 150 151 152 153 154 155 156 157 } $result = null; if ($runaction && $this->beforeaction($action)) { // run the action $result = $action->runwithparams($params); $result = $this->afteraction($action, $result); // call afteraction on modules foreach ($modules as $module) { /* @var $module module */ 12. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/base/module.php at line 455 – yii\base\controller::runaction ( 'view' , []) 449 450 451 452 453 454 455 456 457 458 459 460 461 $parts = $this->createcontroller($route); if (is_array($parts)) { /* @var $controller controller */ list($controller, $actionid) = $parts; $oldcontroller = yii::$app->controller; yii::$app->controller = $controller; $result = $controller->runaction($actionid, $params); yii::$app->controller = $oldcontroller; return $result; } else { $id = $this->getuniqueid(); throw new invalidrouteexception('unable to resolve the request "' . ($id === '' ? $route : $id . '/' . $route) . '".'); 13. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/web/application.php at line 84 – yii\base\module::runaction ( 'site/view' , []) 78 79 80 81 82 83 84 85 86 87 88 89 90 $params = $this->catchall; unset($params[0]); } try { yii::trace("route requested: '$route'", __method__); $this->requestedroute = $route; $result = $this->runaction($route, $params); if ($result instanceof response) { return $result; } else { $response = $this->getresponse(); if ($result !== null) { $response->data = $result; 14. in /home/wwwblueu/public_html/vendor/yiisoft/yii2/base/application.php at line 375 – yii\web\application::

Informations Whois


Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;

Go to top

Erreurs


La liste suivante vous montre les fautes d'orthographe possibles des internautes pour le site Web recherché.

  • www.uproduct.com
  • www.7product.com
  • www.hproduct.com
  • www.kproduct.com
  • www.jproduct.com
  • www.iproduct.com
  • www.8product.com
  • www.yproduct.com
  • www.productebc.com
  • www.productebc.com
  • www.product3bc.com
  • www.productwbc.com
  • www.productsbc.com
  • www.product#bc.com
  • www.productdbc.com
  • www.productfbc.com
  • www.product&bc.com
  • www.productrbc.com
  • www.urlw4ebc.com
  • www.product4bc.com
  • www.productc.com
  • www.productbc.com
  • www.productvc.com
  • www.productvbc.com
  • www.productvc.com
  • www.product c.com
  • www.product bc.com
  • www.product c.com
  • www.productgc.com
  • www.productgbc.com
  • www.productgc.com
  • www.productjc.com
  • www.productjbc.com
  • www.productjc.com
  • www.productnc.com
  • www.productnbc.com
  • www.productnc.com
  • www.producthc.com
  • www.producthbc.com
  • www.producthc.com
  • www.product.com
  • www.productc.com
  • www.productx.com
  • www.productxc.com
  • www.productx.com
  • www.productf.com
  • www.productfc.com
  • www.productf.com
  • www.productv.com
  • www.productvc.com
  • www.productv.com
  • www.productd.com
  • www.productdc.com
  • www.productd.com
  • www.productcb.com
  • www.productcom
  • www.product..com
  • www.product/com
  • www.product/.com
  • www.product./com
  • www.productncom
  • www.productn.com
  • www.product.ncom
  • www.product;com
  • www.product;.com
  • www.product.;com
  • www.productlcom
  • www.productl.com
  • www.product.lcom
  • www.product com
  • www.product .com
  • www.product. com
  • www.product,com
  • www.product,.com
  • www.product.,com
  • www.productmcom
  • www.productm.com
  • www.product.mcom
  • www.product.ccom
  • www.product.om
  • www.product.ccom
  • www.product.xom
  • www.product.xcom
  • www.product.cxom
  • www.product.fom
  • www.product.fcom
  • www.product.cfom
  • www.product.vom
  • www.product.vcom
  • www.product.cvom
  • www.product.dom
  • www.product.dcom
  • www.product.cdom
  • www.productc.om
  • www.product.cm
  • www.product.coom
  • www.product.cpm
  • www.product.cpom
  • www.product.copm
  • www.product.cim
  • www.product.ciom
  • www.product.coim
  • www.product.ckm
  • www.product.ckom
  • www.product.cokm
  • www.product.clm
  • www.product.clom
  • www.product.colm
  • www.product.c0m
  • www.product.c0om
  • www.product.co0m
  • www.product.c:m
  • www.product.c:om
  • www.product.co:m
  • www.product.c9m
  • www.product.c9om
  • www.product.co9m
  • www.product.ocm
  • www.product.co
  • product.blueup.vnm
  • www.product.con
  • www.product.conm
  • product.blueup.vnn
  • www.product.col
  • www.product.colm
  • product.blueup.vnl
  • www.product.co
  • www.product.co m
  • product.blueup.vn
  • www.product.cok
  • www.product.cokm
  • product.blueup.vnk
  • www.product.co,
  • www.product.co,m
  • product.blueup.vn,
  • www.product.coj
  • www.product.cojm
  • product.blueup.vnj
  • www.product.cmo
 Afficher toutes les erreurs  Cacher toutes les erreurs