sondh.net Report : Visit Site


  • Server:Apache...
    X-Powered-By:PHP/7.0.33

    The main IP address: 185.151.28.163,Your server -,- ISP:-  TLD:net CountryCode:-

    The description :jasdev sondh - web developer using php, mysql, jsp, xml, xhtml, css...

    This report updates in 18-Dec-2018

Created Date:2002-10-15
Changed Date:2016-10-16

Technical data of the sondh.net


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host sondh.net. Currently, hosted in - and its service provider is - .

Latitude: 0
Longitude: 0
Country: - (-)
City: -
Region: -
ISP: -

the related websites

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.

X-Cache-Status:MISS
X-Powered-By:PHP/7.0.33
Transfer-Encoding:chunked
Set-Cookie:PHPSESSID=8s001q58t8sh84jk6a8rjemc34; path=/
Content-Encoding:gzip
Vary:Accept-Encoding
Server:Apache
X-Backend-Server:wordpress_backend/wp17.hosting.stackcp.net, cache/cache1.hosting.stackcp.net
Link:; rel="https://api.w.org/", ; rel=shortlink
X-UA-Compatible:IE=edge
Cache-Control:public, s-maxage=2419200
Date:Tue, 18 Dec 2018 06:07:53 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.stackdns.com. hostmaster.stackdns.com. 1542422241 1800 900 1209600 300
ns:ns1.stackdns.com.
ns4.stackdns.com.
ns3.stackdns.com.
ns2.stackdns.com.
mx:MX preference = 10, mail exchanger = mx.stackmail.com.
ipv4:IP:185.151.28.163
ASN:31727
OWNER:NODE4-AS, GB
Country:GB
ipv6:2a07:7800::163//31727//NODE4-AS, GB//GB

HtmlToText

jasdev sondh > web developer > web solutions through technology -- skip to content web solutions home profile blog contact more back random number lists this small tool will generate 4 lists of random numbers between 1-20 which can be printed. i’m using these lists as worksheets to support their learning and understanding of numbers, where they either provide one more or one less in the respective empty box next to the number. random number lists posted by jasdev sondh february 18, 2017 december 7, 2018 posted in general leave a comment on random number lists how to upload large files with filesize constraints need to upload a large file but are being limited by the hosting provider to a maximum upload file size? well here a neat way to get your large file on your hosting account easily, using unix shell script. so let’s say you’re limited to 200mb file uploads but your file is 500mb, you will first need to split your large file into smaller parts using the following code: split -b200m largefile.zip largefile_ the function split, has three attributes, 1) the size of the split 2) the large file name 3) the split file file name, which will have an alpha-based order sequence append to the end. in our example you should have 3 new files called: – largefile_aa – 200mb – largefile_ab – 200mb – largefile_ac – 100mb now these files can be upload to your hosting account without reaching it file upload limit. once all the files have to uploaded, these files can be merged back to form the original large file just as easily using the following unix shell code: cat largefile_* > largefile.zip the function cat has 2 attributes, 1) the split file name without the alpha-based sequence, instead we add the a wildcard 2) the original filename posted by jasdev sondh august 25, 2010 august 13, 2013 posted in web development tags: files , ftp , internet , large files , unix , upload , website leave a comment on how to upload large files with filesize constraints javascript – opening multiple pages in an iframe here’s a useful bit of javascript, that should help you action multiple web tasks which use the url query string to past a parameter or two… simply add your urls to the “urls” array list and open the html file in a web browser. <div id="count"></div> <iframe name="ifrm" id="ifrm" src="http://www.jasdev.co.uk" width="90%" height="90%"></iframe> <script type="text/javascript"> var i = 0; var urls = new array(); urls[0] = 'http://www.bbc.co.uk'; urls[1] = 'http://www.bigfanta.com'; urls[2] = 'http://www.bigtango.com'; urls[3] = 'http://www.jasdev.co.uk'; next(); function next() { if ( window.frames["ifrm"] ) { window.frames["ifrm"].location = urls[i]; } settimeout("next()",3000); i++; document.getelementbyid("count").innerhtml = i+' of '+urls.length; } </script> posted by jasdev sondh august 19, 2010 august 19, 2011 posted in web development tags: internet , javascript , tool leave a comment on javascript – opening multiple pages in an iframe mac automator script – download assets using a text file if you have web assets, such as images, pdfs, etc. which you wish to download as part of a website migrate project, where you don’t have access to the ftp account you may be stuck downloading them one by one… unless you are on a mac, using the attached automator script (a tool available with mac osx). you can create a text file which contain all the full urls of the web asset you require for your project, one url per line and run the script to download them to your mac, with a few simply clicks. download the script and let me know if it’s useful to you and your project. filelist-downloader posted by jasdev sondh august 8, 2010 august 8, 2011 posted in web development tags: internet , mac , tool , website leave a comment on mac automator script – download assets using a text file htaccess – changing webroot folder ever wondered how to change the webroot of the web hosting package? maybe you have two domains mapped to a single web hosting package, but you want both domains to act independently… well you can with a .htaccess file in your public_html folder. simply create a blank text file called “.htaccess” (if you don’t already have one) and add the following code: # first domain rewriteengine on rewritecond %{http_host} ^(www.)?yourfirstdomain.com$ rewritecond %{request_uri} !^/yourfirstdomain_folder/ rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)$ /yourfirstdomain_folder/$1 rewritecond %{http_host} ^(www.)?yourfirstdomain.com$ rewriterule ^(/)?$ yourfirstdomain_folder/index.php [l] # second domain rewriteengine on rewritecond %{http_host} ^(www.)?yourseconddomain.com$ rewritecond %{request_uri} !^/yourseconddomain_folder/ rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)$ /yourseconddomain_folder/$1 rewritecond %{http_host} ^(www.)?yourseconddomain.com$ rewriterule ^(/)?$ yourseconddomain_folder/index.php [l] posted by jasdev sondh july 29, 2010 july 29, 2011 posted in web development tags: domains , htaccess , internet , unix , website leave a comment on htaccess – changing webroot folder htaccess redirects i find the best way to setup redirects of websites is to use the .htaccess file. it a plain text file which can help you get enhanced features on your website, one of them being 301 redirects. 301 redirects are used to redirect visitor’s url requests if the url has been permanently moved, and thus are great to let google and other search engines know of structural changes and minimising the risk losing your ranking. here are some useful examples: domain redirects rewritecond %{http_host} ^(.*)yoursite.net [nc] rewriterule ^(.*)$ http://www.yoursite.com/$1 [l,r=301] rewritecond %{http_host} ^(.*)yoursite.co.uk [nc] rewriterule ^(.*)$ http://www.yoursite.com/$1 [l,r=301] rewritecond %{http_host} ^(.*)yousite.mobi [nc] rewriterule ^(.*)$ http://www.yoursite.com/$1 [l,r=301] automatically add “www” to your urls rewritecond %{http_host} ^[^.]+\.[^.]+$ [nc] rewriterule ^(.*)$ http://www.%{http_host}/$1 [r=301,l] sub domain redirects rewritecond %{http_host} ^(.*)sub.yoursite.com [nc] rewriterule ^(.*)$ https://www.yoursite.com/sub/$1 [l,r=301] switch to ssl urls for specific folders rewritecond %{https} off rewriterule ^folder1(.*)$ https://%{http_host}%{request_uri} [l,r=301] rewritecond %{https} off rewriterule ^folder2(.*)$ https://%{http_host}%{request_uri} [l,r=301] redirect all contain in specific folder redirectmatch 301 ^/foldername/ https://www.yoursite.com/newfolder/ posted by jasdev sondh july 22, 2010 february 25, 2011 posted in web development tags: htaccess , internet , redirects , tool , unix , website leave a comment on htaccess redirects how to view zip file contents on mac without extracting files viewing the contents of a zip file on a mac without extracting the zip content has been missing from the basic functionality available on a standard os x installation. now you can download a small freeware plug-in for ‘quicklook’ which fixes this issue. allowing you to view the contents before extracting the complete zip file. view the developer’s website for the download and installation instruction. tested on mac os x snow leopard. http://d.hatena.ne.jp/t_trace/20071125/p2 posted by jasdev sondh july 4, 2010 september 10, 2010 posted in general , web development tags: extract , files , mac , tool , zip 2 comments on how to view zip file contents on mac without extracting files are your passwords secure? there has been an increase in recent months where websites have been hacked simply because the primary defense is weak. file transfer protocol (ftp) is used the upload website content from html pages to images, videos and audio files. ftp access is protected by a password, which if weak, can potential allow hackers access to your complete website, making changes as they see fit, usually resulting in negative consequences for you. in any

URL analysis for sondh.net


https://www.jasdevsondh.com/get-your-free-website-planning-guide/#comments
https://www.jasdevsondh.com/javascript-opening-multiple-pages-in-an-iframe/
https://www.jasdevsondh.com/tag/unix/
https://www.jasdevsondh.com/tag/virus/
https://www.jasdevsondh.com/sql-query-for-wordpress-posts/
https://www.jasdevsondh.com/tag/security/
https://www.jasdevsondh.com/tag/free/
https://www.jasdevsondh.com/tag/pc/
https://www.jasdevsondh.com/tag/mysql/
https://www.jasdevsondh.com/tag/music/
https://www.jasdevsondh.com/tag/passwords/
https://www.jasdevsondh.com/javascript-opening-multiple-pages-in-an-iframe/#respond
https://www.jasdevsondh.com/tag/tool/
https://www.jasdevsondh.com/tag/guide/
https://www.jasdevsondh.com/htaccess-changing-webroot-folder/

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: SONDH.NET
Registry Domain ID: 91220983_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.meshdigital.com
Registrar URL: http://www.meshdigital.com
Updated Date: 2016-10-16T07:13:03Z
Creation Date: 2002-10-15T10:34:08Z
Registry Expiry Date: 2017-10-15T10:34:08Z
Registrar: Mesh Digital Limited
Registrar IANA ID: 1390
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS.MAINNAMESERVER.COM
Name Server: NS2.MAINNAMESERVER.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-08-21T13:27: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 Mesh Digital Limited

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =sondh.net

  PORT 43

  TYPE domain

DOMAIN

  NAME sondh.net

  CHANGED 2016-10-16

  CREATED 2002-10-15

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

NSERVER

  NS.MAINNAMESERVER.COM 79.170.40.2

  NS2.MAINNAMESERVER.COM 79.170.43.3

  REGISTERED yes

Go to top

Mistakes


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

  • www.usondh.com
  • www.7sondh.com
  • www.hsondh.com
  • www.ksondh.com
  • www.jsondh.com
  • www.isondh.com
  • www.8sondh.com
  • www.ysondh.com
  • www.sondhebc.com
  • www.sondhebc.com
  • www.sondh3bc.com
  • www.sondhwbc.com
  • www.sondhsbc.com
  • www.sondh#bc.com
  • www.sondhdbc.com
  • www.sondhfbc.com
  • www.sondh&bc.com
  • www.sondhrbc.com
  • www.urlw4ebc.com
  • www.sondh4bc.com
  • www.sondhc.com
  • www.sondhbc.com
  • www.sondhvc.com
  • www.sondhvbc.com
  • www.sondhvc.com
  • www.sondh c.com
  • www.sondh bc.com
  • www.sondh c.com
  • www.sondhgc.com
  • www.sondhgbc.com
  • www.sondhgc.com
  • www.sondhjc.com
  • www.sondhjbc.com
  • www.sondhjc.com
  • www.sondhnc.com
  • www.sondhnbc.com
  • www.sondhnc.com
  • www.sondhhc.com
  • www.sondhhbc.com
  • www.sondhhc.com
  • www.sondh.com
  • www.sondhc.com
  • www.sondhx.com
  • www.sondhxc.com
  • www.sondhx.com
  • www.sondhf.com
  • www.sondhfc.com
  • www.sondhf.com
  • www.sondhv.com
  • www.sondhvc.com
  • www.sondhv.com
  • www.sondhd.com
  • www.sondhdc.com
  • www.sondhd.com
  • www.sondhcb.com
  • www.sondhcom
  • www.sondh..com
  • www.sondh/com
  • www.sondh/.com
  • www.sondh./com
  • www.sondhncom
  • www.sondhn.com
  • www.sondh.ncom
  • www.sondh;com
  • www.sondh;.com
  • www.sondh.;com
  • www.sondhlcom
  • www.sondhl.com
  • www.sondh.lcom
  • www.sondh com
  • www.sondh .com
  • www.sondh. com
  • www.sondh,com
  • www.sondh,.com
  • www.sondh.,com
  • www.sondhmcom
  • www.sondhm.com
  • www.sondh.mcom
  • www.sondh.ccom
  • www.sondh.om
  • www.sondh.ccom
  • www.sondh.xom
  • www.sondh.xcom
  • www.sondh.cxom
  • www.sondh.fom
  • www.sondh.fcom
  • www.sondh.cfom
  • www.sondh.vom
  • www.sondh.vcom
  • www.sondh.cvom
  • www.sondh.dom
  • www.sondh.dcom
  • www.sondh.cdom
  • www.sondhc.om
  • www.sondh.cm
  • www.sondh.coom
  • www.sondh.cpm
  • www.sondh.cpom
  • www.sondh.copm
  • www.sondh.cim
  • www.sondh.ciom
  • www.sondh.coim
  • www.sondh.ckm
  • www.sondh.ckom
  • www.sondh.cokm
  • www.sondh.clm
  • www.sondh.clom
  • www.sondh.colm
  • www.sondh.c0m
  • www.sondh.c0om
  • www.sondh.co0m
  • www.sondh.c:m
  • www.sondh.c:om
  • www.sondh.co:m
  • www.sondh.c9m
  • www.sondh.c9om
  • www.sondh.co9m
  • www.sondh.ocm
  • www.sondh.co
  • sondh.netm
  • www.sondh.con
  • www.sondh.conm
  • sondh.netn
  • www.sondh.col
  • www.sondh.colm
  • sondh.netl
  • www.sondh.co
  • www.sondh.co m
  • sondh.net
  • www.sondh.cok
  • www.sondh.cokm
  • sondh.netk
  • www.sondh.co,
  • www.sondh.co,m
  • sondh.net,
  • www.sondh.coj
  • www.sondh.cojm
  • sondh.netj
  • www.sondh.cmo
Show All Mistakes Hide All Mistakes