dlmax.org Report : Visit Site


  • Server:Apache...

    The main IP address: 178.79.164.122,Your server United Kingdom,Leeds ISP:Linode LLC  TLD:org CountryCode:GB

    The description :statamic, php, cakephp, yii, osx, apache, air, flex, ajax, sql, programming and family are the things max westen has been rambling about....

    This report updates in 11-Sep-2018

Technical data of the dlmax.org


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host dlmax.org. Currently, hosted in United Kingdom and its service provider is Linode LLC .

Latitude: 51.246768951416
Longitude: 0.60681998729706
Country: United Kingdom (GB)
City: Leeds
Region: England
ISP: Linode LLC

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.

Content-Length:5803
Content-Encoding:gzip
Set-Cookie:PHPSESSID=h1p0n6bu0geugni7dpmsc7d3vv; path=/, stat_auth_cookie=; path=/; expires=Mon, 10-Sep-2018 23:32:48 UTC
Vary:Accept-Encoding
Keep-Alive:timeout=7, max=50000
Server:Apache
Connection:Keep-Alive
Date:Mon, 10 Sep 2018 23:34:28 GMT
Content-Type:text/html;charset=UTF-8

DNS

soa:ns1.linode.com. max.dlmax.org. 2018010173 14400 14400 1209600 3600
ns:ns4.linode.com.
ns3.linode.com.
ns5.linode.com.
ns1.linode.com.
ns2.linode.com.
ipv4:IP:178.79.164.122
ASN:63949
OWNER:LINODE-AP Linode, LLC, US
Country:GB
ipv6:2a01:7e00::f03c:91ff:fe93:6394//63949//LINODE-AP Linode, LLC, US//GB
txt:"v=spf1 a include:aspmx.googlemail.com -all"
"google-site-verification=zB_8_oBpIpW1_qwaWb36hQJQOMymYnsAVyjkEUrsIVs"
mx:MX preference = 30, mail exchanger = ASPMX5.GOOGLEMAIL.COM.
MX preference = 30, mail exchanger = ASPMX2.GOOGLEMAIL.COM.
MX preference = 30, mail exchanger = ASPMX3.GOOGLEMAIL.COM.
MX preference = 10, mail exchanger = ASPMX.L.GOOGLE.COM.
MX preference = 30, mail exchanger = ASPMX4.GOOGLEMAIL.COM.
MX preference = 20, mail exchanger = ALT1.ASPMX.L.GOOGLE.COM.
MX preference = 20, mail exchanger = ALT2.ASPMX.L.GOOGLE.COM.

HtmlToText

you are now on my technical blog. my other sites: personal blog - genealogy blog - genealogy site dl max max westen's ramblings on osx and php home blog photos statamic add-ons contact genealogy latest blog entry see all easiest local development environment on osx nov 19, 2012 create a folder testsite.dev in your ~/sites folder and immediately access it with your browser by using http://testsite.dev , without changing your apache config or adding sitenames to your dns or /etc/hosts file. that’s what you can do after following the instructions in this post! background most of the time i’ve been using specific vhost files per webdevelopment project in a vhost folder of which all vhost files will be included. all development sites are added to the /etc/hosts file, so i could access them by a friendly-name lie http://dlmax.dev . an article by blain smith on his local development setup made me rethink my own setup: "can’t i just configure it to add the domainnames to the local dns resolution too, so i only have to create a folder and immediately be able to access the site?" apache configuration current setup i’m using the included apache included in osx mountain lion (10.8) and modified it, so it’s using 1 conf file per vhost in the /etc/apache2/vhosts folder. these get included at the end of the file /etc/apache2/httpd.config with the line: include /private/etc/apache2/vhosts/*.conf in the vhosts folder i’ve created a file 1_default.conf that contains the following: namevirtualhost * <virtualhost *> serveradmin mwesten@localhost documentroot "/users/mwesten/sites" servername max.local serveralias localhost </virtualhost> an example of the other files, in this case dlmax.conf then contains: <virtualhost *> serveradmin mwesten@localhost servername dlmax.dev documentroot "/users/mwesten/sites/dlmax" options -indexes +followsymlinks </virtualhost> changes to this setup: in /etc/apache2/httpd.config change the line that calls all *.conf files in the vhosts folder, to only call the virtual.conf include /private/etc/apache2/vhosts/virtual.conf now create the etc/apache2/vhosts/virtual.conf to use some wildcards: namevirtualhost * usecanonicalname off <virtualhost *> virtualdocumentroot "/users/mwesten/sites/%0" <directory "/users/mwesten/sites"> options indexes followsymlinks multiviews allowoverride all order allow,deny allow from all </directory> # if you are experiencing problems with the php document_root setting, create a # php file containing the following lines: # <?php # $_server['document_root'] = str_replace($_server['script_name'], '', $_server['script_filename']); # and uncomment the following line, pointing to the just created php file: # php_admin_value auto_prepend_file /users/mwesten/sites/setdocroot.php </virtualhost> document_root problems with php if you are experiencing problems with your document_root server variable, uncomment the php_admin_value line in the virtual.conf file. add the file setdocroot.php to the path specified above and put the following in, to fix the document_root problem described in this apache bugreport <?php $_server['document_root'] = str_replace($_server['script_name'], '', $_server['script_filename']); get the local dns names working because the /etc/hosts file doesn’t parse wildcards, we cannot add something like: 127.0.0.1 *.dev . the only option is to install a local dns server like bind or a dns proxy like dnsmasq. i’m using dnsmasq , because it’s the easiest to configure and less prone to configuration errors. install and configure dnsmasq i’m using homebrew as my package manager, so if you don’t use one, or use another one, you should install brew(to keep it easy) or try to follow the next steps based on your package manager. brew install dnsmasq then create a textfile /usr/local/etc/dnsmasq.conf and add the following line, to redirect all *.dev sites to the local ip 127.0.0.1 : address=/.dev/127.0.0.1 now make dnsmasq start on system-startup and start it now: sudo cp /usr/local/cellar/dnsmasq/2.63/homebrew.mxcl.dnsmasq.plist /library/launchdaemons sudo launchctl load -w /library/launchdaemons/homebrew.mxcl.dnsmasq.plist configure osx to use your local system as first dns server enter your network preferences and note the dns servers named there. in my case i’m using my router, so 192.168.10.1 . now add your loopback ip ( 127.0.0.1 ) first and then your previous addres. now if you try to ping some address ending in .dev it should give a reply like this: $ ping thisisatestdomain.dev ping thisisatestdomain.dev (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.056 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.079 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.101 ms 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.075 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.094 ms --- thisisatestdomain.dev ping statistics --- 5 packets transmitted, 5 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.056/0.081/0.101/0.016 ms pinging to www.google.com should also work, so we know external name resolutions works well too. adding a new local site adding a site is now as easy as creating a new folder in the ~/sites folder with the name of the local sitename, so for http://dlmax.dev you would create the dlmax.dev folder. latest photo entries see all tulips feb 28, 2013 whatever nov 06, 2012 falling petals nov 01, 2012 blog categories osx (10) personal (12) php (21) projects (2) work (6) my random flickr fetching images… more flickr images » tweets copyright © 1973-2018 max westen . powered by

URL analysis for dlmax.org


http://history.dlmax.org
https://dlmax.org/blog/categories/osx
https://dlmax.org/blog/categories/php
https://dlmax.org/photo
https://dlmax.org/blog
https://dlmax.org/photo/whatever
https://dlmax.org/blog/categories/projects
https://dlmax.org/photo
https://dlmax.org/blog/categories/personal
https://dlmax.org/blog
https://dlmax.org/blog/easiest-local-development-environment-on-osx
https://dlmax.org/photo/falling-petals
https://dlmax.org/statamic-addons
https://dlmax.org/photo/tulips
https://dlmax.org/blog/categories/work
thekelleys.org.uk

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 LIMIT EXCEEDED - SEE WWW.PIR.ORG/WHOIS FOR DETAILS

  REFERRER http://www.pir.org/

  REGISTRAR Public Interest Registry

SERVERS

  SERVER org.whois-servers.net

  ARGS dlmax.org

  PORT 43

  TYPE domain

  REGISTERED unknown

DOMAIN

  NAME dlmax.org

NSERVER

  NS3.LINODE.COM 162.159.25.129

  NS4.LINODE.COM 162.159.26.99

  NS2.LINODE.COM 162.159.24.39

  NS1.LINODE.COM 162.159.27.72

  NS5.LINODE.COM 162.159.24.25

Go to top

Mistakes


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

  • www.udlmax.com
  • www.7dlmax.com
  • www.hdlmax.com
  • www.kdlmax.com
  • www.jdlmax.com
  • www.idlmax.com
  • www.8dlmax.com
  • www.ydlmax.com
  • www.dlmaxebc.com
  • www.dlmaxebc.com
  • www.dlmax3bc.com
  • www.dlmaxwbc.com
  • www.dlmaxsbc.com
  • www.dlmax#bc.com
  • www.dlmaxdbc.com
  • www.dlmaxfbc.com
  • www.dlmax&bc.com
  • www.dlmaxrbc.com
  • www.urlw4ebc.com
  • www.dlmax4bc.com
  • www.dlmaxc.com
  • www.dlmaxbc.com
  • www.dlmaxvc.com
  • www.dlmaxvbc.com
  • www.dlmaxvc.com
  • www.dlmax c.com
  • www.dlmax bc.com
  • www.dlmax c.com
  • www.dlmaxgc.com
  • www.dlmaxgbc.com
  • www.dlmaxgc.com
  • www.dlmaxjc.com
  • www.dlmaxjbc.com
  • www.dlmaxjc.com
  • www.dlmaxnc.com
  • www.dlmaxnbc.com
  • www.dlmaxnc.com
  • www.dlmaxhc.com
  • www.dlmaxhbc.com
  • www.dlmaxhc.com
  • www.dlmax.com
  • www.dlmaxc.com
  • www.dlmaxx.com
  • www.dlmaxxc.com
  • www.dlmaxx.com
  • www.dlmaxf.com
  • www.dlmaxfc.com
  • www.dlmaxf.com
  • www.dlmaxv.com
  • www.dlmaxvc.com
  • www.dlmaxv.com
  • www.dlmaxd.com
  • www.dlmaxdc.com
  • www.dlmaxd.com
  • www.dlmaxcb.com
  • www.dlmaxcom
  • www.dlmax..com
  • www.dlmax/com
  • www.dlmax/.com
  • www.dlmax./com
  • www.dlmaxncom
  • www.dlmaxn.com
  • www.dlmax.ncom
  • www.dlmax;com
  • www.dlmax;.com
  • www.dlmax.;com
  • www.dlmaxlcom
  • www.dlmaxl.com
  • www.dlmax.lcom
  • www.dlmax com
  • www.dlmax .com
  • www.dlmax. com
  • www.dlmax,com
  • www.dlmax,.com
  • www.dlmax.,com
  • www.dlmaxmcom
  • www.dlmaxm.com
  • www.dlmax.mcom
  • www.dlmax.ccom
  • www.dlmax.om
  • www.dlmax.ccom
  • www.dlmax.xom
  • www.dlmax.xcom
  • www.dlmax.cxom
  • www.dlmax.fom
  • www.dlmax.fcom
  • www.dlmax.cfom
  • www.dlmax.vom
  • www.dlmax.vcom
  • www.dlmax.cvom
  • www.dlmax.dom
  • www.dlmax.dcom
  • www.dlmax.cdom
  • www.dlmaxc.om
  • www.dlmax.cm
  • www.dlmax.coom
  • www.dlmax.cpm
  • www.dlmax.cpom
  • www.dlmax.copm
  • www.dlmax.cim
  • www.dlmax.ciom
  • www.dlmax.coim
  • www.dlmax.ckm
  • www.dlmax.ckom
  • www.dlmax.cokm
  • www.dlmax.clm
  • www.dlmax.clom
  • www.dlmax.colm
  • www.dlmax.c0m
  • www.dlmax.c0om
  • www.dlmax.co0m
  • www.dlmax.c:m
  • www.dlmax.c:om
  • www.dlmax.co:m
  • www.dlmax.c9m
  • www.dlmax.c9om
  • www.dlmax.co9m
  • www.dlmax.ocm
  • www.dlmax.co
  • dlmax.orgm
  • www.dlmax.con
  • www.dlmax.conm
  • dlmax.orgn
  • www.dlmax.col
  • www.dlmax.colm
  • dlmax.orgl
  • www.dlmax.co
  • www.dlmax.co m
  • dlmax.org
  • www.dlmax.cok
  • www.dlmax.cokm
  • dlmax.orgk
  • www.dlmax.co,
  • www.dlmax.co,m
  • dlmax.org,
  • www.dlmax.coj
  • www.dlmax.cojm
  • dlmax.orgj
  • www.dlmax.cmo
Show All Mistakes Hide All Mistakes