quatangthuongyeu.com Report : Visit Site


  • Ranking Alexa Global: # 5,314,620,Alexa Ranking in Vietnam is # 81,624

    Server:Apache/2.4.6 (CentOS...
    X-Powered-By:PHP/5.4.16

    The main IP address: 123.30.173.107,Your server Viet Nam,Hanoi ISP:Vietnam Data Communication Company  TLD:com CountryCode:VN

    The description :database exception – yii\db\exception sqlstate[hy000] [2002] no such file or directory ↵ caused by: pdoexception sqlstate[hy000] [2002] no such file or directory in /public_html/vendor/yiisoft/yii2/db...

    This report updates in 28-Jul-2018

Created Date:2016-06-04
Changed Date:2017-05-27

Technical data of the quatangthuongyeu.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host quatangthuongyeu.com. Currently, hosted in Viet Nam and its service provider is Vietnam Data Communication Company .

Latitude: 21.024499893188
Longitude: 105.84117126465
Country: Viet Nam (VN)
City: Hanoi
Region: Dak Lak
ISP: Vietnam Data Communication Company

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16 containing the details of what the browser wants and will accept back from the web server.

X-Powered-By:PHP/5.4.16
Transfer-Encoding:chunked
Server:Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16
Connection:close
Date:Fri, 27 Jul 2018 18:00:20 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.pavietnam.vn. hostmaster.quatangthuongyeu.com. 2018060711 14400 3600 1209600 86400
txt:"v=spf1 a mx ~all"
ns:ns1.pavietnam.vn.
nsbak.pavietnam.net.
ns2.pavietnam.vn.
ipv4:IP:123.30.173.107
ASN:45899
OWNER:VNPT-AS-VN VNPT Corp, VN
Country:VN
mx:MX preference = 10, mail exchanger = mail.quatangthuongyeu.com.

HtmlToText

database exception – yii\db\exception sqlstate[hy000] [2002] no such file or directory ↵ caused by: pdoexception sqlstate[hy000] [2002] no such file or directory in /public_html/vendor/yiisoft/yii2/db/connection.php at line 579 1. in /public_html/vendor/yiisoft/yii2/db/connection.php at line 534 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 $token = 'opening db connection: ' . $this->dsn; try { yii::info($token, __method__); yii::beginprofile($token, __method__); $this->pdo = $this->createpdoinstance(); $this->initconnection(); yii::endprofile($token, __method__); } catch (\pdoexception $e) { yii::endprofile($token, __method__); throw new exception($e->getmessage(), $e->errorinfo, (int) $e->getcode(), $e); } } /** * closes the currently active db connection. * it does nothing if the connection is already closed. */ public function close() { 2. in /public_html/vendor/yiisoft/yii2/db/connection.php at line 836 – yii\db\connection::open () 830 831 832 833 834 835 836 837 838 839 840 841 842 * returns the pdo instance for the currently active master connection. * this method will open the master db connection and then return [[pdo]]. * @return pdo the pdo instance for the currently active master connection. */ public function getmasterpdo() { $this->open(); return $this->pdo; } /** * returns the currently active slave connection. * if this method is called the first time, it will try to open a slave connection when [[enableslaves]] is true. 3. in /public_html/vendor/yiisoft/yii2/db/connection.php at line 823 – yii\db\connection::getmasterpdo () 817 818 819 820 821 822 823 824 825 826 827 828 829 * is available and `$fallbacktomaster` is false. */ public function getslavepdo($fallbacktomaster = true) { $db = $this->getslave(false); if ($db === null) { return $fallbacktomaster ? $this->getmasterpdo() : null; } else { return $db->pdo; } } /** 4. in /public_html/vendor/yiisoft/yii2/db/command.php at line 216 – yii\db\connection::getslavepdo () 210 211 212 213 214 215 216 217 218 219 220 221 222 if ($this->db->gettransaction()) { // master is in a transaction. use the same connection. $forread = false; } if ($forread || $forread === null && $this->db->getschema()->isreadquery($sql)) { $pdo = $this->db->getslavepdo(); } else { $pdo = $this->db->getmasterpdo(); } try { $this->pdostatement = $pdo->prepare($sql); 5. in /public_html/vendor/yiisoft/yii2/db/command.php at line 831 – yii\db\command::prepare ( true ) 825 826 827 828 829 830 831 832 833 834 835 836 837 yii::trace('query result served from cache', 'yii\db\command::query'); return $result[0]; } } } $this->prepare(true); $token = $rawsql; try { yii::beginprofile($token, 'yii\db\command::query'); $this->pdostatement->execute(); 6. in /public_html/vendor/yiisoft/yii2/db/command.php at line 359 – yii\db\command::queryinternal ( 'fetchall' , null ) 353 354 355 356 357 358 359 360 361 362 363 364 365 * @return array all rows of the query result. each array element is an array representing a row of data. * an empty array is returned if the query results in nothing. * @throws exception execution failed */ public function queryall($fetchmode = null) { return $this->queryinternal('fetchall', $fetchmode); } /** * executes the sql statement and returns the first row of the result. * this method is best used when only the first row of result is needed for a query. * @param integer $fetchmode the result fetch mode. please refer to [php manual](http://www.php.net/manual/en/function.pdostatement-setfetchmode.php) 7. in /public_html/models/adver.php at line 41 – yii\db\command::queryall () 35 36 37 38 39 40 41 42 43 44 45 46 47 [['order'], 'string', 'max' => 200] ]; } public function getadver($type,$order){ $cmd = yii::$app->db->createcommand('select * from `tbl_adver` where `type`="'.$type.'" and `status`="0" order by `id` asc'); $dt = $cmd ->queryall(); $data =array(); if(!empty($dt)){ foreach($dt as $key){ $arorder = explode(',', $key['order']); if((in_array($order, $arorder)==true)){// $data[]=array('images'=>$key['images'],'link'=>$key['link']); 8. in /public_html/controllers/sitecontroller.php at line 1042 – app\models\adver::getadver( 0 , 2 ) 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 $new =new news(); $pro =new products(); $proimg =new productimage(); $urlmanage =new urlmanage(); $adver =new adver(); $dtadverimg =$adver->getadver(0,2);//getadver($type,$order) $dtadverscript =$adver->getadver(1,2);//getadver($type,$order) $catalogpro =$menu->listmenu(0,2); $catalognew =$menu->listmenu(1,2); if(empty($catalogpro)){$catalogpro ='';} if(empty($catalognew)){$catalognew ='';} 9. app\controllers\sitecontroller::actionindex() 10. in /public_html/vendor/yiisoft/yii2/base/inlineaction.php at line 55 – call_user_func_array([ app\controllers\sitecontroller , 'actionindex' ], []) 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 /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 /public_html/vendor/yiisoft/yii2/base/module.php at line 455 – yii\base\controller::runaction ( 'index' , []) 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 /public_html/vendor/yiisoft/yii2/web/application.php at line 84 – yii\base\module::runaction ( 'site/index' , []) 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 /public_html/vendor/yiisoft/yii2/base/application.php at line 375 – yii\web\application::handlerequest ( yii\web\request ) 369 370 371 372 373 374 375 376 377 378 379 380 381 try { $this->state = self::state_before_request; $this->trigger(self::event_before_request); $this->state = self::state_handling_request; $response = $this->handlerequest($this->getrequest()); $this->state = self::state_after_request; $this->trigger(self::event_after_request); $this->state = self::state_sending_response; $response->send(); 15. in /public_html/index.php at line 15 – yii\base\application::run () 9 10 11 12 13 14 15 require(__dir__ . '/vendor/autoload.php'); require(__dir__ . '/vendor/yiisoft/yii2/yii.php'); $config = require(__dir__ . '/config/web.php'); (new yii\web\application($config))->run(); $_server = [ 'user' => 'apache', 'home' => '/usr/share/httpd', 'fcgi_role' => 'responder', 'unique_id' => 'w1tdtd@vdo1tthrbcuuizqaaaeo', 'https' => 'on', 'ssl_tls_sni' => 'qua

URL analysis for quatangthuongyeu.com




Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: QUATANGTHUONGYEU.COM
Registry Domain ID: 2033523767_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.pavietnam.vn
Registrar URL: http://www.pavietnam.vn
Updated Date: 2017-05-27T01:27:16Z
Creation Date: 2016-06-04T06:27:05Z
Registry Expiry Date: 2018-06-04T06:27:05Z
Registrar: P.A. Viet Nam Company Limited
Registrar IANA ID: 1649
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +84.19009477
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.PAVIETNAM.VN
Name Server: NS2.PAVIETNAM.VN
Name Server: NSBAK.PAVIETNAM.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-11-17T22:50:12Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR P.A. Viet Nam Company Limited

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =quatangthuongyeu.com

  PORT 43

  TYPE domain

DOMAIN

  NAME quatangthuongyeu.com

  CHANGED 2017-05-27

  CREATED 2016-06-04

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  NS1.PAVIETNAM.VN 112.213.89.3

  NS2.PAVIETNAM.VN 222.255.121.247

  NSBAK.PAVIETNAM.NET 112.213.89.22

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uquatangthuongyeu.com
  • www.7quatangthuongyeu.com
  • www.hquatangthuongyeu.com
  • www.kquatangthuongyeu.com
  • www.jquatangthuongyeu.com
  • www.iquatangthuongyeu.com
  • www.8quatangthuongyeu.com
  • www.yquatangthuongyeu.com
  • www.quatangthuongyeuebc.com
  • www.quatangthuongyeuebc.com
  • www.quatangthuongyeu3bc.com
  • www.quatangthuongyeuwbc.com
  • www.quatangthuongyeusbc.com
  • www.quatangthuongyeu#bc.com
  • www.quatangthuongyeudbc.com
  • www.quatangthuongyeufbc.com
  • www.quatangthuongyeu&bc.com
  • www.quatangthuongyeurbc.com
  • www.urlw4ebc.com
  • www.quatangthuongyeu4bc.com
  • www.quatangthuongyeuc.com
  • www.quatangthuongyeubc.com
  • www.quatangthuongyeuvc.com
  • www.quatangthuongyeuvbc.com
  • www.quatangthuongyeuvc.com
  • www.quatangthuongyeu c.com
  • www.quatangthuongyeu bc.com
  • www.quatangthuongyeu c.com
  • www.quatangthuongyeugc.com
  • www.quatangthuongyeugbc.com
  • www.quatangthuongyeugc.com
  • www.quatangthuongyeujc.com
  • www.quatangthuongyeujbc.com
  • www.quatangthuongyeujc.com
  • www.quatangthuongyeunc.com
  • www.quatangthuongyeunbc.com
  • www.quatangthuongyeunc.com
  • www.quatangthuongyeuhc.com
  • www.quatangthuongyeuhbc.com
  • www.quatangthuongyeuhc.com
  • www.quatangthuongyeu.com
  • www.quatangthuongyeuc.com
  • www.quatangthuongyeux.com
  • www.quatangthuongyeuxc.com
  • www.quatangthuongyeux.com
  • www.quatangthuongyeuf.com
  • www.quatangthuongyeufc.com
  • www.quatangthuongyeuf.com
  • www.quatangthuongyeuv.com
  • www.quatangthuongyeuvc.com
  • www.quatangthuongyeuv.com
  • www.quatangthuongyeud.com
  • www.quatangthuongyeudc.com
  • www.quatangthuongyeud.com
  • www.quatangthuongyeucb.com
  • www.quatangthuongyeucom
  • www.quatangthuongyeu..com
  • www.quatangthuongyeu/com
  • www.quatangthuongyeu/.com
  • www.quatangthuongyeu./com
  • www.quatangthuongyeuncom
  • www.quatangthuongyeun.com
  • www.quatangthuongyeu.ncom
  • www.quatangthuongyeu;com
  • www.quatangthuongyeu;.com
  • www.quatangthuongyeu.;com
  • www.quatangthuongyeulcom
  • www.quatangthuongyeul.com
  • www.quatangthuongyeu.lcom
  • www.quatangthuongyeu com
  • www.quatangthuongyeu .com
  • www.quatangthuongyeu. com
  • www.quatangthuongyeu,com
  • www.quatangthuongyeu,.com
  • www.quatangthuongyeu.,com
  • www.quatangthuongyeumcom
  • www.quatangthuongyeum.com
  • www.quatangthuongyeu.mcom
  • www.quatangthuongyeu.ccom
  • www.quatangthuongyeu.om
  • www.quatangthuongyeu.ccom
  • www.quatangthuongyeu.xom
  • www.quatangthuongyeu.xcom
  • www.quatangthuongyeu.cxom
  • www.quatangthuongyeu.fom
  • www.quatangthuongyeu.fcom
  • www.quatangthuongyeu.cfom
  • www.quatangthuongyeu.vom
  • www.quatangthuongyeu.vcom
  • www.quatangthuongyeu.cvom
  • www.quatangthuongyeu.dom
  • www.quatangthuongyeu.dcom
  • www.quatangthuongyeu.cdom
  • www.quatangthuongyeuc.om
  • www.quatangthuongyeu.cm
  • www.quatangthuongyeu.coom
  • www.quatangthuongyeu.cpm
  • www.quatangthuongyeu.cpom
  • www.quatangthuongyeu.copm
  • www.quatangthuongyeu.cim
  • www.quatangthuongyeu.ciom
  • www.quatangthuongyeu.coim
  • www.quatangthuongyeu.ckm
  • www.quatangthuongyeu.ckom
  • www.quatangthuongyeu.cokm
  • www.quatangthuongyeu.clm
  • www.quatangthuongyeu.clom
  • www.quatangthuongyeu.colm
  • www.quatangthuongyeu.c0m
  • www.quatangthuongyeu.c0om
  • www.quatangthuongyeu.co0m
  • www.quatangthuongyeu.c:m
  • www.quatangthuongyeu.c:om
  • www.quatangthuongyeu.co:m
  • www.quatangthuongyeu.c9m
  • www.quatangthuongyeu.c9om
  • www.quatangthuongyeu.co9m
  • www.quatangthuongyeu.ocm
  • www.quatangthuongyeu.co
  • quatangthuongyeu.comm
  • www.quatangthuongyeu.con
  • www.quatangthuongyeu.conm
  • quatangthuongyeu.comn
  • www.quatangthuongyeu.col
  • www.quatangthuongyeu.colm
  • quatangthuongyeu.coml
  • www.quatangthuongyeu.co
  • www.quatangthuongyeu.co m
  • quatangthuongyeu.com
  • www.quatangthuongyeu.cok
  • www.quatangthuongyeu.cokm
  • quatangthuongyeu.comk
  • www.quatangthuongyeu.co,
  • www.quatangthuongyeu.co,m
  • quatangthuongyeu.com,
  • www.quatangthuongyeu.coj
  • www.quatangthuongyeu.cojm
  • quatangthuongyeu.comj
  • www.quatangthuongyeu.cmo
Show All Mistakes Hide All Mistakes