12stix.com Report : Visit Site


  • Ranking Alexa Global: # 8,771,844

    Server:Apache/2.4.33 (Unix)...
    X-Powered-By:PHP/5.3.28

    The main IP address: 79.170.44.150,Your server United Kingdom,Nottingham ISP:Heart Internet Ltd  TLD:com CountryCode:GB

    The description :tech answers and fixes...

    This report updates in 09-Jun-2018

Created Date:2007-07-03
Changed Date:2017-06-03
Expires Date:2019-07-03

Technical data of the 12stix.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host 12stix.com. Currently, hosted in United Kingdom and its service provider is Heart Internet Ltd .

Latitude: 52.953601837158
Longitude: -1.1504700183868
Country: United Kingdom (GB)
City: Nottingham
Region: England
ISP: Heart Internet Ltd

the related websites

HTTP Header Analysis


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

X-Powered-By:PHP/5.3.28
Transfer-Encoding:chunked
Server:Apache/2.4.33 (Unix)
Link:; rel="https://api.w.org/", ; rel=shortlink
Date:Fri, 08 Jun 2018 22:11:45 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns.mainnameserver.com. hostmaster.mainnameserver.com. 2012102483 86400 604800 2419200 10800
ns:ns2.mainnameserver.com.
ns.mainnameserver.com.
ipv4:IP:79.170.44.150
ASN:20773
OWNER:HOSTEUROPE-AS, DE
Country:GB
mx:MX preference = 10, mail exchanger = mail.12stix.com.

HtmlToText

skip to content 12 stix tech answers and fixes menu and widgets popular posts microsoft word 2003/2007 compressed/overlapping text 50 comments microsoft word 2003 – tiny blinking cursor! 89 comments could not connect to steam network 68 comments how to ‘free’ the mouse in virtual pc 2007 17 comments drupal cck autonumber field 2 comments determine creator of appointment in outlook 2000/2003 shared calendar 2 comments error 201 (net::err_cert_date_invalid): unknown error. 19 comments how to remove a printer driver in windows xp 8 comments restoring apple tv 2 [1601] [1602] 1 comment jquery not working in drupal 7 9 comments recent comments jacob on disk cleanup stuck on system error memory dump files fnt on how to ‘free’ the mouse in virtual pc 2007 brian on perform a cold reset on a hp 4600 series marissa on microsoft word 2003/2007 compressed/overlapping text stephanie on disk cleanup stuck on system error memory dump files categories categories select category 12stix antivirus apple blackberry css dreamweaver drupal exchange/outlook firefox google hp service manuals htaccess internet explorer jquery linux microsoft microsoft office microsoft office 2013 mobile os x php printers uncategorized virtual pc vista windows 2003 server windows 7 windows 8 windows server 2008 windows xp wordpress xbox archives archives select month april 2015 february 2015 january 2015 august 2014 july 2014 april 2014 february 2014 november 2013 october 2013 july 2013 may 2013 april 2013 march 2013 november 2012 august 2012 july 2012 march 2012 february 2012 october 2011 september 2011 august 2011 july 2011 june 2011 may 2011 april 2011 march 2011 february 2011 december 2010 november 2010 october 2010 september 2010 august 2010 july 2010 june 2010 may 2010 march 2010 february 2010 january 2010 november 2009 october 2009 september 2009 august 2009 july 2009 june 2009 may 2009 april 2009 january 2009 december 2008 november 2008 october 2008 september 2008 pages about dell b1160w on os x to install the dell b1160w laser printer on os x you need to download the samsung ml-2525w driver. 1. download the samsung driver for os x from here . 2. install the software (printer driver installer.app). 3. open system preferences > printers 4. add a new printer, your network will pick it up through bonjour as a dell b1160w mono laser printer 5. under the select ‘use’ box pick ‘select software’ 6. search for samsung and select ‘samsung ml-2525w’ 7. click ok – try to print a test page. share this: twitter facebook google email print linkedin like this: like loading... posted on 19/04/2015 author pete categories apple leave a comment on dell b1160w on os x add word-wrap to pre tags in css pre { white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word; } share this: twitter facebook google email print linkedin like this: like loading... posted on 10/02/2015 author pete categories css leave a comment on add word-wrap to pre tags in css force www and ignore all other subdomains in .htaccess this version does not require you to hard-code the domain name, and takes into account ssl connections. rewritecond %{http_host} . rewritecond %{http_host} !^www\. [nc] rewriterule ^ http%{env:protossl}://www.%{http_host}%{request_uri} [l,r=301] share this: twitter facebook google email print linkedin like this: like loading... posted on 10/02/2015 author pete categories htaccess leave a comment on force www and ignore all other subdomains in .htaccess geocode from google api v3 if you want to get the latitude and longitude from an address using php then try the following code snippet: $georesult = file_get_contents('https://maps.googleapis.com/maps/api/geocode/json?address=' . urlencode($addressstring) . '&sensor;=false&key;=api'); if ($georesult !== false) { $output= json_decode($georesult); @$lat = $output->results[0]->geometry->location->lat; @$long = $output->results[0]->geometry->location->lng; if ($output->status == 'ok') { if ($lat > null) { //do something } } } share this: twitter facebook google email print linkedin like this: like loading... posted on 10/02/2015 author pete categories php leave a comment on geocode from google api v3 fix dodgy font rendering in css if your fonts don’t quite look smooth then apply the following css: html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizelegibility; } share this: twitter facebook google email print linkedin like this: like loading... posted on 10/02/2015 10/02/2015 author pete categories css leave a comment on fix dodgy font rendering in css vertically align in css if you need to align anything vertically in css, apply the following class: .verticalalign { position: relative; top: 50%; transform: translatey(-50%); } share this: twitter facebook google email print linkedin like this: like loading... posted on 10/02/2015 10/02/2015 author pete categories css leave a comment on vertically align in css overwriting the default search box text in drupal 7 this code goes in template.php and replaces the text on the default search box: function themename_form_alter(&$form, &$form_state, $form_id) { if ($form_id == 'search_block_form') { $form['actions']['submit']['#value'] = t('search'); } } share this: twitter facebook google email print linkedin like this: like loading... posted on 30/01/2015 author pete categories drupal leave a comment on overwriting the default search box text in drupal 7 fixing drupal’s clearfix css drupal’s default clearfix css leaves a gap at the bottom of the page, this removes this: .clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; font-size: 0; } .clearfix { display: inline-block; } /* \*/ * html .clearfix { height: 1%; } .clearfix { display: block; } /* */ share this: twitter facebook google email print linkedin like this: like loading... posted on 30/01/2015 author pete categories css , drupal leave a comment on fixing drupal’s clearfix css drupal 7 – starting point for creating a file object programatically if you need to create a file object through the drupal api then use the following code: filename = basename('{current path}'); $file->filepath = '{current path}'; $file->filemime = file_get_mimetype($file->filename); $file->filesize = filesize('{current path}'); $file->uid = $user->uid; $file->status = file_status_temporary; $file->timestamp = time(); $file->list = 1; $file = file_save($file); $file = file_move($file, 'public://'); $file->status = file_status_permanent; $file = file_save($file); share this: twitter facebook google email print linkedin like this: like loading... posted on 30/01/2015 author pete categories drupal leave a comment on drupal 7 – starting point for creating a file object programatically drupal 7 – starting point for programmatically creating a node if you need to create a node within your module then use the following code: title = '{node title}'; $node->type = '{node type}'; node_object_prepare($node); $node->language = language_none; $node->uid = $user->uid; $node->status = 1; $node->promote = 0; $node->comment = 0; $node = node_submit($node); node_save($node); share this: twitter facebook google email print linkedin like this: like loading... posted on 30/01/2015 author pete categories drupal leave a comment on drupal 7 – starting point for programmatically creating a node posts navigation page 1 page 2 … page 18 next page proudly powered by wordpress send to email address your name your email address cancel post was not sent - check your email addresses! email check failed, please try again sorry, your blog cannot share posts by email. %d bloggers like this:

URL analysis for 12stix.com


http://www.12stix.com/#cancel
http://www.12stix.com/2015/01/30/fixing-drupals-clearfix-css/?share=facebook
http://www.12stix.com/2008/10/20/how-to-free-the-mouse-in-virtual-pc-2007/comment-page-1/#comment-171077
http://www.12stix.com/2015/04/19/dell-b1160w-on-os-x/#respond
http://www.12stix.com/page/2/
http://www.12stix.com/2015/01/30/fixing-drupals-clearfix-css/
http://www.12stix.com/2015/02/10/add-word-wrap-to-pre-tags-in-css/?share=facebook
http://www.12stix.com/2015/01/30/drupal-7-starting-point-for-programmatically-creating-a-node/#respond
http://www.12stix.com/2015/04/19/dell-b1160w-on-os-x/?share=twitter
http://www.12stix.com/2015/01/30/overwriting-the-default-search-box-text-in-drupal-7/?share=google-plus-1
http://www.12stix.com/2015/04/19/dell-b1160w-on-os-x/?share=email
http://www.12stix.com/category/htaccess/
http://www.12stix.com/2015/04/19/dell-b1160w-on-os-x/
http://www.12stix.com/2015/02/10/force-www-and-ignore-all-other-subdomains-in-htaccess/
http://www.12stix.com/2015/01/30/drupal-7-starting-point-for-programmatically-creating-a-node/?share=twitter

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;


Whois Server Version 2.0

Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.

Domain Name: 12STIX.COM
Registrar: TUCOWS DOMAINS INC.
Sponsoring Registrar IANA ID: 69
Whois Server: whois.tucows.com
Referral URL: http://www.tucowsdomains.com
Name Server: NS.MAINNAMESERVER.COM
Name Server: NS2.MAINNAMESERVER.COM
Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Updated Date: 03-jun-2017
Creation Date: 03-jul-2007
Expiration Date: 03-jul-2019

>>> Last update of whois database: 2017-07-14T03:07:31Z <<<

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 TUCOWS DOMAINS INC.

  REFERRER http://www.tucowsdomains.com

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =12stix.com

  PORT 43

  SERVER whois.tucows.com

  ARGS 12stix.com

  PORT 43

  TYPE domain

DOMAIN

  NAME 12stix.com

NSERVER

  NS.MAINNAMESERVER.COM 79.170.40.2

  NS2.MAINNAMESERVER.COM 79.170.43.3

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

  CHANGED 2017-06-03

  CREATED 2007-07-03

  EXPIRES 2019-07-03

  REGISTERED yes

Go to top

Mistakes


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

  • www.u12stix.com
  • www.712stix.com
  • www.h12stix.com
  • www.k12stix.com
  • www.j12stix.com
  • www.i12stix.com
  • www.812stix.com
  • www.y12stix.com
  • www.12stixebc.com
  • www.12stixebc.com
  • www.12stix3bc.com
  • www.12stixwbc.com
  • www.12stixsbc.com
  • www.12stix#bc.com
  • www.12stixdbc.com
  • www.12stixfbc.com
  • www.12stix&bc.com
  • www.12stixrbc.com
  • www.urlw4ebc.com
  • www.12stix4bc.com
  • www.12stixc.com
  • www.12stixbc.com
  • www.12stixvc.com
  • www.12stixvbc.com
  • www.12stixvc.com
  • www.12stix c.com
  • www.12stix bc.com
  • www.12stix c.com
  • www.12stixgc.com
  • www.12stixgbc.com
  • www.12stixgc.com
  • www.12stixjc.com
  • www.12stixjbc.com
  • www.12stixjc.com
  • www.12stixnc.com
  • www.12stixnbc.com
  • www.12stixnc.com
  • www.12stixhc.com
  • www.12stixhbc.com
  • www.12stixhc.com
  • www.12stix.com
  • www.12stixc.com
  • www.12stixx.com
  • www.12stixxc.com
  • www.12stixx.com
  • www.12stixf.com
  • www.12stixfc.com
  • www.12stixf.com
  • www.12stixv.com
  • www.12stixvc.com
  • www.12stixv.com
  • www.12stixd.com
  • www.12stixdc.com
  • www.12stixd.com
  • www.12stixcb.com
  • www.12stixcom
  • www.12stix..com
  • www.12stix/com
  • www.12stix/.com
  • www.12stix./com
  • www.12stixncom
  • www.12stixn.com
  • www.12stix.ncom
  • www.12stix;com
  • www.12stix;.com
  • www.12stix.;com
  • www.12stixlcom
  • www.12stixl.com
  • www.12stix.lcom
  • www.12stix com
  • www.12stix .com
  • www.12stix. com
  • www.12stix,com
  • www.12stix,.com
  • www.12stix.,com
  • www.12stixmcom
  • www.12stixm.com
  • www.12stix.mcom
  • www.12stix.ccom
  • www.12stix.om
  • www.12stix.ccom
  • www.12stix.xom
  • www.12stix.xcom
  • www.12stix.cxom
  • www.12stix.fom
  • www.12stix.fcom
  • www.12stix.cfom
  • www.12stix.vom
  • www.12stix.vcom
  • www.12stix.cvom
  • www.12stix.dom
  • www.12stix.dcom
  • www.12stix.cdom
  • www.12stixc.om
  • www.12stix.cm
  • www.12stix.coom
  • www.12stix.cpm
  • www.12stix.cpom
  • www.12stix.copm
  • www.12stix.cim
  • www.12stix.ciom
  • www.12stix.coim
  • www.12stix.ckm
  • www.12stix.ckom
  • www.12stix.cokm
  • www.12stix.clm
  • www.12stix.clom
  • www.12stix.colm
  • www.12stix.c0m
  • www.12stix.c0om
  • www.12stix.co0m
  • www.12stix.c:m
  • www.12stix.c:om
  • www.12stix.co:m
  • www.12stix.c9m
  • www.12stix.c9om
  • www.12stix.co9m
  • www.12stix.ocm
  • www.12stix.co
  • 12stix.comm
  • www.12stix.con
  • www.12stix.conm
  • 12stix.comn
  • www.12stix.col
  • www.12stix.colm
  • 12stix.coml
  • www.12stix.co
  • www.12stix.co m
  • 12stix.com
  • www.12stix.cok
  • www.12stix.cokm
  • 12stix.comk
  • www.12stix.co,
  • www.12stix.co,m
  • 12stix.com,
  • www.12stix.coj
  • www.12stix.cojm
  • 12stix.comj
  • www.12stix.cmo
Show All Mistakes Hide All Mistakes