smarterdatacollection.com Report : Visit Site


  • Ranking Alexa Global: # 9,264,027

    Server:Apache...

    The main IP address: 76.74.242.134,Your server United States,New York City ISP:Peer 1 Network (USA) Inc.  TLD:com CountryCode:US

    The description :blog about unicom intelligence software...

    This report updates in 23-Jun-2018

Created Date:2012-04-30
Changed Date:2013-06-26

Technical data of the smarterdatacollection.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host smarterdatacollection.com. Currently, hosted in United States and its service provider is Peer 1 Network (USA) Inc. .

Latitude: 40.703872680664
Longitude: -74.012184143066
Country: United States (US)
City: New York City
Region: New York
ISP: Peer 1 Network (USA) Inc.

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Transfer-Encoding:chunked
Set-Cookie:ct_cookies_test=175cd55e2f15947d986329c86de90db8; path=/, apbct_timestamp=1529743895; path=/, apbct_prev_referer=http%3A%2F%2Fwww.bing.com%2F; path=/, apbct_site_landing_ts=1529743895; path=/, apbct_page_hits=1; path=/, apbct_cookies_test=%7B%22cookies_names%22%3A%5B%22apbct_timestamp%22%2C%22apbct_prev_referer%22%2C%22apbct_site_landing_ts%22%2C%22apbct_page_hits%22%5D%2C%22check_value%22%3A%2244e07576f8b1270991a074db77e1d9a1%22%7D; path=/
Keep-Alive:timeout=2, max=98
Server:Apache
Connection:Keep-Alive
Link:; rel="https://api.w.org/", ; rel=shortlink
Date:Sat, 23 Jun 2018 08:51:33 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.hostpapa.com. admin.hostpapa.ca. 2018051400 86400 7200 3600000 86400
txt:"v=spf1 +a +mx +ip4:70.33.241.160 +include:spf.antispamcloud.com +include:relay.mailchannels.net ~all"
ns:ns1.hostpapa.com.
ns2.hostpapa.com.
ipv4:IP:76.74.242.134
ASN:13768
OWNER:COGECO-PEER1 - Cogeco Peer 1, CA
Country:CA
mx:MX preference = 0, mail exchanger = smarterdatacollection.com.

HtmlToText

skip to content blog about unicom intelligence software search menu home question library grids images other single & multiple response search php 7.2.2 and unicom may 31, 2018 by admin i am currently looking into writing a php interface that schedules unicom tasks and i thought i would make a few post’s as i go along. obviously, the first thing you have to do is to install php and set it up for com use. setting php up for com is easy , just make sure you have this in your php.ini file. ( search for [com] ) ; allow distributed-com calls ; http://php.net/com.allow-dcom extension=php_com_dotnet.dll com.allow_dcom = true the way to check that com is enabled it so run a php file that has this in it <?php phpinfo(); ?> and when you run the file , make sure you see this next we need to see if com is activated and works so i tried this on excel. i have excel 2013 my machine <?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(e_all); $xl = new com("excel.application"); ?> and it produced this , fatal error: uncaught com_exception: failed to create com object `excel.application': access is denied. in c:\inetpub\wwwroot\loopmdd.php:9 stack trace: #0 c:\inetpub\wwwroot\loopmdd.php(9): com->com('excel.applicati...') #1 {main} thrown in c:\inetpub\wwwroot\loopmdd.php on line 9 and i am ok with that as it shows the com statement worked. if you want to take the excel thing further then you can take a look at this post and it will show you how to get access to xl this way. so whats next .. well one of the first things i need to do is open an mdd so here is the php code to do that <?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(e_all); echo 'start'; $omdm = new com("mdm.document") or die("unable to instantiate mdm.document"); $omdm->open("c:\\inetpub\\wwwroot\\users.mdd", '', 2); foreach ($omdm->variables as $ovar) { echo $ovar->label ."<br/>"; } echo 'done'; ?> and so when i ran the php file i got the labels. so php com , 64bit is enabled and working , now onto the next bit, watch this space. share this: facebook twitter linkedin print like this: like loading... categories uncategorized leave a comment send smtp email via gmail april 10, 2018 april 20, 2018 by admin just helped someone get this sorted and thought i woulds share. the trick was to allow less secure apps in your account. here is the link https://myaccount.google.com/lesssecureapps?pli=1 turn it on and then just use the normal cdo code. dim oemail, semailfrom, semailto, semailsubject, semailbody,sbcc ' send email semailto = "[email protected]" semailfrom = "[email protected]" semailsubject = "email subject" semailbody = "email body this is bold" sbcc = "[email protected]" set oemail = createobject("cdo.message") with oemail with .configuration.fields .item["http://schemas.microsoft.com/cdo/configuration/smtpusessl"] = true .item["http://schemas.microsoft.com/cdo/configuration/smtpserver"] = "smtp.gmail.com" .item["http://schemas.microsoft.com/cdo/configuration/sendusing"] = 2 .item["http://schemas.microsoft.com/cdo/configuration/sendusername"] = "[email protected]" .item["http://schemas.microsoft.com/cdo/configuration/sendpassword"] = "xxxxxxxxxxx" .item["http://schemas.microsoft.com/cdo/configuration/smtpserverport"] = 465 .item["http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"] = 60 .item["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1 .update() end with end with oemail.from = semailfrom oemail.to = semailto oemail.bcc = sbcc oemail.subject = semailsubject oemail.htmlbody = semailbody oemail.send() set oemail = null share this: facebook twitter linkedin print like this: like loading... categories code corner , learn vba , professional leave a comment open sav file and create an xl map of contents february 12, 2018 april 10, 2018 by admin needed to write some code today to open up an statistics sav file and create an xl map file of the metadata. the next step in the process will be to write a ibm statistics syntax script to change the content in the sav file based on the information in the xl file. here is the first bit of the code , lets call it stage 1. if you want stage 2 let me know. so lets declare some vars const sdatapath = "c:\temp" const sdataname = "ibv_a069_eph.sav" const sxlmap = "sav_map.xls" dim odscs, odsc, omdm, ovar,oelement dim oexcel,osheet dim ivarcount,irow and now lets go ahead and open up the sav file using the statistics dcs set odscs = createobject("mrdscreg.components") set odsc = odscs["mrsavdsc"] set omdm = odsc.metadata.open(sdatapath + sdataname) then lets open up our xl file. i am assuming it is already made and contains a tab called labels in it. we are also going to give the columns some names set osheet = oexcel.sheets["labels"] osheet.activate() irow = 1 osheet.cells[1][1].value = "variable name" osheet.cells[1][2].value = "new variable name" osheet.cells[1][3].value = "type" osheet.cells[1][4].value = "value" osheet.cells[1][5].value = "label" next we need to loop the variables in the file outputting the data we find to the relevant places in our sheet for ivarcount = 0 to omdm.variables.count-1 irow = irow + 1 set ovar = omdm.variables[ivarcount] osheet.cells[irow][1].value = ovar.name osheet.cells[irow][3].value = "l" osheet.cells[irow][5].value = textonly(ovar.label) osheet.cells[irow][6].value = ovar.datatype for each oelement in ovar.elements.elements irow = irow + 1 osheet.cells[irow][3].value = "c" osheet.cells[irow][4].value = oelement.element.nativevalue osheet.cells[irow][5].value = textonly(oelement.label) next next omdm.close() and finally we need out textonly function. this will allow us to strip out html codes that may be in our labels function textonly(svalue) dim snew,icount,bstart for icount = 0 to len(svalue) -1 if ( find( "<",mid(svalue,icount,1) )>-1 ) then bstart = true end if if ( bstart = true ) then else snew = snew + mid(svalue,icount,1) end if if ( find( ">",mid(svalue,icount,1) )>-1 ) then bstart = false end if next textonly = snew end function share this: facebook twitter linkedin print like this: like loading... categories excel , ibm statistics , spss leave a comment justcode : delete a vdata record january 26, 2018 april 5, 2018 by admin this sub shows us how to delete a vdata record from a survey. it has 3 parms that you need to pass in. you will also need to enter a valid sql user login & password. ' ssurvey: the name of the survey that is to be used. ' sid: the respondent.serial that is to be deleted. ' sserver: the name or the ip of the sql server ' **************************************** ' designed by : smarter dimensions ' last updated : 8th july 2009 ' sub to delete a vdata record ' **************************************** sub deletevdatarecord(ssurvey,sid,sserver) set oconnection = createobject("adodb.connection") oconnection.connectionstring = "provider=mroledb.provider.2;data source=mrrdbdsc2;location='provider=sqloledb.1;password=xxxxxx;persist security info=true;user id=xx;initial catalog=" + ssurvey + ";data source=" + sserver + "';initial catalog=\" + sserver + "spssmr_fmrootmaster" + ssurvey + "" + ssurvey + ".mdd;mr init project=" + ssurvey oconnection.open() if ( oconnection.state = 1 ) then set orecordset = createobject("adodb.recordset") orecordset.open("delete from vdata where respondent.serial = '" + sid + "'" ,oconnection,3,1) set orecordset = null end if oconnection.close() set oconnection = null end sub share this: facebook twitter linkedin print like this: like loading... categories iom scripting , just code leave a comment justcode : responses under radio buttons january 26, 2018 march 20, 2018 by admin this code shows us how to have our responses under the radio buttons. metadata(en-au, question, label) q1 "this is a rating scale {replaceme}" categorical [1..1] { _1 "1 poor", _2 "2", _3

URL analysis for smarterdatacollection.com


http://www.smarterdatacollection.com/blog/?cat=73
http://www.smarterdatacollection.com/blog/?p=5169#respond
http://www.smarterdatacollection.com/blog/?author=1
http://www.smarterdatacollection.com/blog/?p=5161&share=facebook
http://www.smarterdatacollection.com/blog/?m=201108
http://www.smarterdatacollection.com/blog/?cat=39
http://www.smarterdatacollection.com/blog/?p=5171
http://www.smarterdatacollection.com/blog/?cat=31
http://www.smarterdatacollection.com/blog/?p=5175
http://www.smarterdatacollection.com/blog/?cat=30
http://www.smarterdatacollection.com/blog/?m=201101
http://www.smarterdatacollection.com/blog/?m=201102
http://www.smarterdatacollection.com/blog/?m=201103
http://www.smarterdatacollection.com/blog/?m=201104
http://www.smarterdatacollection.com/blog/?m=201105

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: SMARTERDATACOLLECTION.COM
Registry Domain ID: 1717108203_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namejuice.com
Registrar URL: http://www.namejuice.com
Updated Date: 2013-06-26T03:14:58Z
Creation Date: 2012-04-30T17:35:20Z
Registry Expiry Date: 2019-04-30T17:35:20Z
Registrar: Brandon Gray Internet Services, Inc. dba NameJuice.com
Registrar IANA ID: 636
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.9054152681
Domain Status: ok https://icann.org/epp#ok
Name Server: NS1.HOSTPAPA.COM
Name Server: NS2.HOSTPAPA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-06-23T08:51:32Z <<<

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 Brandon Gray Internet Services, Inc. dba NameJuice.com

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =smarterdatacollection.com

  PORT 43

  TYPE domain

DOMAIN

  NAME smarterdatacollection.com

  CHANGED 2013-06-26

  CREATED 2012-04-30

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

NSERVER

  NS1.HOSTPAPA.COM 69.90.36.133

  NS2.HOSTPAPA.COM 204.15.193.53

  REGISTERED yes

Go to top

Mistakes


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

  • www.usmarterdatacollection.com
  • www.7smarterdatacollection.com
  • www.hsmarterdatacollection.com
  • www.ksmarterdatacollection.com
  • www.jsmarterdatacollection.com
  • www.ismarterdatacollection.com
  • www.8smarterdatacollection.com
  • www.ysmarterdatacollection.com
  • www.smarterdatacollectionebc.com
  • www.smarterdatacollectionebc.com
  • www.smarterdatacollection3bc.com
  • www.smarterdatacollectionwbc.com
  • www.smarterdatacollectionsbc.com
  • www.smarterdatacollection#bc.com
  • www.smarterdatacollectiondbc.com
  • www.smarterdatacollectionfbc.com
  • www.smarterdatacollection&bc.com
  • www.smarterdatacollectionrbc.com
  • www.urlw4ebc.com
  • www.smarterdatacollection4bc.com
  • www.smarterdatacollectionc.com
  • www.smarterdatacollectionbc.com
  • www.smarterdatacollectionvc.com
  • www.smarterdatacollectionvbc.com
  • www.smarterdatacollectionvc.com
  • www.smarterdatacollection c.com
  • www.smarterdatacollection bc.com
  • www.smarterdatacollection c.com
  • www.smarterdatacollectiongc.com
  • www.smarterdatacollectiongbc.com
  • www.smarterdatacollectiongc.com
  • www.smarterdatacollectionjc.com
  • www.smarterdatacollectionjbc.com
  • www.smarterdatacollectionjc.com
  • www.smarterdatacollectionnc.com
  • www.smarterdatacollectionnbc.com
  • www.smarterdatacollectionnc.com
  • www.smarterdatacollectionhc.com
  • www.smarterdatacollectionhbc.com
  • www.smarterdatacollectionhc.com
  • www.smarterdatacollection.com
  • www.smarterdatacollectionc.com
  • www.smarterdatacollectionx.com
  • www.smarterdatacollectionxc.com
  • www.smarterdatacollectionx.com
  • www.smarterdatacollectionf.com
  • www.smarterdatacollectionfc.com
  • www.smarterdatacollectionf.com
  • www.smarterdatacollectionv.com
  • www.smarterdatacollectionvc.com
  • www.smarterdatacollectionv.com
  • www.smarterdatacollectiond.com
  • www.smarterdatacollectiondc.com
  • www.smarterdatacollectiond.com
  • www.smarterdatacollectioncb.com
  • www.smarterdatacollectioncom
  • www.smarterdatacollection..com
  • www.smarterdatacollection/com
  • www.smarterdatacollection/.com
  • www.smarterdatacollection./com
  • www.smarterdatacollectionncom
  • www.smarterdatacollectionn.com
  • www.smarterdatacollection.ncom
  • www.smarterdatacollection;com
  • www.smarterdatacollection;.com
  • www.smarterdatacollection.;com
  • www.smarterdatacollectionlcom
  • www.smarterdatacollectionl.com
  • www.smarterdatacollection.lcom
  • www.smarterdatacollection com
  • www.smarterdatacollection .com
  • www.smarterdatacollection. com
  • www.smarterdatacollection,com
  • www.smarterdatacollection,.com
  • www.smarterdatacollection.,com
  • www.smarterdatacollectionmcom
  • www.smarterdatacollectionm.com
  • www.smarterdatacollection.mcom
  • www.smarterdatacollection.ccom
  • www.smarterdatacollection.om
  • www.smarterdatacollection.ccom
  • www.smarterdatacollection.xom
  • www.smarterdatacollection.xcom
  • www.smarterdatacollection.cxom
  • www.smarterdatacollection.fom
  • www.smarterdatacollection.fcom
  • www.smarterdatacollection.cfom
  • www.smarterdatacollection.vom
  • www.smarterdatacollection.vcom
  • www.smarterdatacollection.cvom
  • www.smarterdatacollection.dom
  • www.smarterdatacollection.dcom
  • www.smarterdatacollection.cdom
  • www.smarterdatacollectionc.om
  • www.smarterdatacollection.cm
  • www.smarterdatacollection.coom
  • www.smarterdatacollection.cpm
  • www.smarterdatacollection.cpom
  • www.smarterdatacollection.copm
  • www.smarterdatacollection.cim
  • www.smarterdatacollection.ciom
  • www.smarterdatacollection.coim
  • www.smarterdatacollection.ckm
  • www.smarterdatacollection.ckom
  • www.smarterdatacollection.cokm
  • www.smarterdatacollection.clm
  • www.smarterdatacollection.clom
  • www.smarterdatacollection.colm
  • www.smarterdatacollection.c0m
  • www.smarterdatacollection.c0om
  • www.smarterdatacollection.co0m
  • www.smarterdatacollection.c:m
  • www.smarterdatacollection.c:om
  • www.smarterdatacollection.co:m
  • www.smarterdatacollection.c9m
  • www.smarterdatacollection.c9om
  • www.smarterdatacollection.co9m
  • www.smarterdatacollection.ocm
  • www.smarterdatacollection.co
  • smarterdatacollection.comm
  • www.smarterdatacollection.con
  • www.smarterdatacollection.conm
  • smarterdatacollection.comn
  • www.smarterdatacollection.col
  • www.smarterdatacollection.colm
  • smarterdatacollection.coml
  • www.smarterdatacollection.co
  • www.smarterdatacollection.co m
  • smarterdatacollection.com
  • www.smarterdatacollection.cok
  • www.smarterdatacollection.cokm
  • smarterdatacollection.comk
  • www.smarterdatacollection.co,
  • www.smarterdatacollection.co,m
  • smarterdatacollection.com,
  • www.smarterdatacollection.coj
  • www.smarterdatacollection.cojm
  • smarterdatacollection.comj
  • www.smarterdatacollection.cmo
Show All Mistakes Hide All Mistakes