simon.me.uk Report : Visit Site


  • Ranking Alexa Global: # 12,061,014

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

    The main IP address: 78.129.196.11,Your server United Kingdom,Maidenhead ISP:iomart Hosting Limited  TLD:uk CountryCode:GB

    The description :skip to content simon's blog sometimes there'll be tech stuff, sometimes there's personal notes, and quite often there might be nothing at all. menu shartak.com – browser based mmorpg reanimated proje...

    This report updates in 04-Dec-2018

Technical data of the simon.me.uk


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host simon.me.uk. Currently, hosted in United Kingdom and its service provider is iomart Hosting Limited .

Latitude: 51.522789001465
Longitude: -0.71986001729965
Country: United Kingdom (GB)
City: Maidenhead
Region: England
ISP: iomart Hosting Limited

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.6 (CentOS) OpenSSL/1.0.2k-fips mod_perl/2.0.10 Perl/v5.16.3 containing the details of what the browser wants and will accept back from the web server.

X-Content-Type-Options:nosniff
X-Powered-By:PHP/7.2.11
Transfer-Encoding:chunked
Keep-Alive:timeout=5, max=100
Server:Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips mod_perl/2.0.10 Perl/v5.16.3
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Mon, 03 Dec 2018 17:21:55 GMT
X-Frame-Options:DENY
Content-Type:text/html; charset=UTF-8

DNS

soa:wood.bocks.com. simon.leaky.org. 2018050802 10800 900 604800 86400
ns:bark.bocks.com.
wood.bocks.com.
ipv4:IP:78.129.196.11
ASN:20860
OWNER:IOMART-AS, GB
Country:GB
mx:MX preference = 10, mail exchanger = mail.bocks.com.

HtmlToText

skip to content simon's blog sometimes there'll be tech stuff, sometimes there's personal notes, and quite often there might be nothing at all. menu shartak.com – browser based mmorpg reanimated projects and games github about me posts posted on may 23, 2018 may 23, 2018 smf 2.0 on php 7.2 i recently changed my server from centos 6 to centos 7 and in the process decided that to avoid having to upgrade everything later, installing php 7.2 before migrating the sites would be a better option than staying with the default php 5.4. this was a good idea – mostly. it forced me to upgrade a couple of mediawiki installs that hadn’t been touched in a while and those were migrated ok. when it came to migrating the shartak forum i was starting to think i should have gone for a slightly older version of php because smf 1.1 ( simple machines forum ) doesn’t work on such a recent version of php. it wasn’t just a minor issue, functions such as mysql_* that had been removed in php 7 were all over the place! time to take the plunge and upgrade to smf 2.0 which had been stable for several years but there had never been a reason to upgrade before now. looking at the large amount of spam user accounts and the upgrade process documentation, i decided it would be easier to start from scratch instead of trying to upgrade smf 1.1 (with some custom tweaks) to 2.0. i installed the smf 2.0 code, configured the theme, found that only one of the old tweaks was really still needed and put it live. then i checked the error logs in the smf admin panel and found there were thousands of errors after just a few hours of it being live! function create_function() is deprecated it turned out that smf 2.0.15 only supports up to php 7.1 as php 7.2 is deprecating create_function() and this is used by the bbcode parser. after some searching, i came across a message on the smf forum that suggested adding an exception to the error handler to prevent it logging the deprecation warnings. the suggestion of comparing the version using the builtin php method version_compare() was taken into account and here is my version of the solution. --- sources/errors.orig.php 2018-05-23 14:21:57.933367060 +0100 +++ sources/errors.php 2018-05-23 13:47:45.711567251 +0100 @@ -203,6 +203,10 @@ { global $settings, $modsettings, $db_show_debug; + // disable php 7.2 "function create_function() is deprecated" errors from filling the forum error logs + if (defined('e_deprecated') && $error_level == e_deprecated && (version_compare(phpversion(), '7.2') >= 0) && strpos($error_string, 'function create_function() is deprecated') !== false) + return; + // ignore errors if we're ignoring them or they are strict notices from php 5 (which cannot be solved without breaking php 4.) if (error_reporting() == 0 || (defined('e_strict') && $error_level == e_strict && (empty($modsettings['enableerrorlogging']) || $modsettings['enableerrorlogging'] != 2))) return; it’s not a perfect fix but it’ll do until smf 2.1 is released. i hope this helps someone else searching for the same issue. posted on april 7, 2014 installing dbd::mysql on mavericks 3 years ago, i posted about getting dbd::mysql to build on osx 10.6 – it seems the same thing works on mavericks (10.9) as well! # failed test 'use dbd::mysql;' # at t/00base.t line 18. # tried to use 'dbd::mysql'. # error: can't load '/users/simon/.cpan/build/dbd-mysql-4.027-wbgmwl/blib/arch/auto/dbd/mysql/mysql.bundle' for module dbd::mysql: dlopen(/users/simon/.cpan/build/dbd-mysql-4.027-wbgmwl/blib/arch/auto/dbd/mysql/mysql.bundle, 2): library not loaded: libmysqlclient.18.dylib # referenced from: /users/simon/.cpan/build/dbd-mysql-4.027-wbgmwl/blib/arch/auto/dbd/mysql/mysql.bundle # reason: image not found at /system/library/perl/5.16/darwin-thread-multi-2level/dynaloader.pm line 194. # at (eval 7) line 2. the version of mysql has changed slightly (and hence the path used) but everything else is the same. $ sudo install_name_tool -id /usr/local/mysql-5.5.30-osx10.6-x86_64/lib/libmysqlclient.18.dylib /usr/local/mysql-5.5.30-osx10.6-x86_64/lib/libmysqlclient.18.dylib $ otool -d `mdfind libmysqlclient.18.dylib` posted on march 7, 2014 march 7, 2014 cpan2rpm for centos 6.5 i’ve been attempting to build all the dependencies for dancer on centos 6.5 and things just kept going wrong. several of the modules complained about needing perl >= 5.006 even though centos 6.5 comes with perl 5.10. [mockbuild@build6 ~]$ cpan2rpm test::simple -- cpan2rpm - ver: 2.028 -- upgrade check fetch: http -- module: test::simple -- found: test-simple-1.001002.tar.gz at: http://search.cpan.org//cpan/authors/id/r/rj/rjbs retrieving url metadata retrieval tarball extraction: [/home/mockbuild/rpmbuild/sources/test-simple-1.001002.tar.gz] unable to build module, the following dependencies have failed: perl >= 5.006 stopped at /usr/local/bin/cpan2rpm line 491. despite there not being a newer version of cpan2rpm than 2.028 obviously available, there is a development version 2.028_02 which makes it compatible with perl 5.10. you have to download it directly from cpan at http://search.cpan.org/cpan/authors/id/b/bb/bbb/cpan2rpm-2.028_02.tar.gz and then use cpan2rpm to build it! [mockbuild@build6 ~]$ cpan2rpm --no-prfx --no-sign ./cpan2rpm-2.028_02.tar.gz once it’s built the new cpan2rpm rpm, install it using yum localinstall which will remove the old version at the same time. this new version is able to build the packages for more up to date versions of test::simple and uri. update: test::simple builds but doesn’t pass all the tests, uri is ok. posted on february 16, 2014 march 6, 2014 extracting ebooks from apple ibooks for mavericks i decided to remove a lot of the read ebooks from my library but wanted to back them up first, especially the ones that weren’t purchased via itunes. ibooks on mavericks had “imported” them all from itunes and as a result i couldn’t just right click on them in itunes and use show in finder. first step was to locate them – turns out they’re in ~/library/containers/com.apple.bkagentservice/data/documents/ibooks/books/ next problem was that all the files had been renamed from something human readable into a large string of hex characters! the books.plist file contained a lot of metadata, including the original filename and the current full path of the ebook. i wasn’t about to go renaming them manually so wrote a quick perl script using data::plist::binaryreader to extract the data structures and print the values for ‘bkdisplayname’ and ‘path’ from each book. then i found that although some of them were still .epub files, quite a few had been unpacked into directories containing the epub contents but not with the oebps subdirectory. i wasn’t about to go updating the script to repack all the epubs and just on a whim thought i’d try dragging an ebook out of ibooks onto the desktop.. it worked! the one i had tried was one of the unpacked ebooks but on the desktop was a zipped up epub file. i wish i’d tried dragging them in the first place as it would have saved a lot of hassle! to back them up, i ended up simply selecting all the ebooks and dragging them to a separate folder. now i can remove all the read ebooks from within ibooks without worrying about losing them. posted on august 3, 2013 march 6, 2014 cpan2rpm on centos 6.4 i’ve just been building up a new server with centos 6.4 and noticed that cpan2rpm wouldn’t work for some perl modules. the error you get is as follows. metadata retrieval can't locate object method "interpolate" via package "pod::text" at /usr/bin/cpan2rpm line 522. turns out it’s because pod::text changed between the version that comes with centos 5 (2.21) and the version with centos 6 (3.13) and the interpolate method disappeared. i found a patch attached to this ticket and when applied to cpan2rpm, it works once more. https://rt.cpan.org/public/bug/display.html?id=27309#txn-323456 posted on july 16, 2013 march 6, 2014 shadowmagic

URL analysis for simon.me.uk


https://www.simon.me.uk/category/programming
https://www.simon.me.uk/2013/674_shadowmagic-by-john-lenahan
https://www.simon.me.uk/2018/725_smf-2-0-on-php-7-2
https://www.simon.me.uk/2013/670_digitalocean-first-impressions
https://www.simon.me.uk/2011/644_shartak-internals-speech-and-translation
https://www.simon.me.uk/feed
https://www.simon.me.uk/2014/690_extracting-ebooks-from-apple-ibooks-for-mavericks
https://www.simon.me.uk/page/2
https://www.simon.me.uk/2011/394_ipv6-and-shartak/comment-page-1#comment-132
https://www.simon.me.uk/category/mac-osx
https://www.simon.me.uk/2011/652_dbdmysql-mysql-and-os-x-lion/comment-page-1#comment-145
https://www.simon.me.uk/category/shartak
https://www.simon.me.uk/2013/663_dbixclass-default-column-value
https://www.simon.me.uk/2014/703_installing_dbd_mysql_mavericks
https://www.simon.me.uk/2014/699_cpan2rpm-for-centos-6-5
reanimated.co.uk
amazon.co.uk
simonamor.co.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;

Error for "simon.me.uk".

the WHOIS query quota for 2600:3c03:0000:0000:f03c:91ff:feae:779d has been exceeded
and will be replenished in 339 seconds

WHOIS lookup made at 07:11:49 17-Aug-2017

--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2017.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REFERRER http://www.nominet.org.uk

  REGISTRAR Nominet UK

SERVERS

  SERVER uk.whois-servers.net

  ARGS simon.me.uk

  PORT 43

  TYPE domain

DISCLAIMER
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2017.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REGISTERED no

DOMAIN

  NAME simon.me.uk

NSERVER

  WOOD.BOCKS.COM 213.229.84.132

  BARK.BOCKS.COM 92.48.127.146

Go to top

Mistakes


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

  • www.usimon.com
  • www.7simon.com
  • www.hsimon.com
  • www.ksimon.com
  • www.jsimon.com
  • www.isimon.com
  • www.8simon.com
  • www.ysimon.com
  • www.simonebc.com
  • www.simonebc.com
  • www.simon3bc.com
  • www.simonwbc.com
  • www.simonsbc.com
  • www.simon#bc.com
  • www.simondbc.com
  • www.simonfbc.com
  • www.simon&bc.com
  • www.simonrbc.com
  • www.urlw4ebc.com
  • www.simon4bc.com
  • www.simonc.com
  • www.simonbc.com
  • www.simonvc.com
  • www.simonvbc.com
  • www.simonvc.com
  • www.simon c.com
  • www.simon bc.com
  • www.simon c.com
  • www.simongc.com
  • www.simongbc.com
  • www.simongc.com
  • www.simonjc.com
  • www.simonjbc.com
  • www.simonjc.com
  • www.simonnc.com
  • www.simonnbc.com
  • www.simonnc.com
  • www.simonhc.com
  • www.simonhbc.com
  • www.simonhc.com
  • www.simon.com
  • www.simonc.com
  • www.simonx.com
  • www.simonxc.com
  • www.simonx.com
  • www.simonf.com
  • www.simonfc.com
  • www.simonf.com
  • www.simonv.com
  • www.simonvc.com
  • www.simonv.com
  • www.simond.com
  • www.simondc.com
  • www.simond.com
  • www.simoncb.com
  • www.simoncom
  • www.simon..com
  • www.simon/com
  • www.simon/.com
  • www.simon./com
  • www.simonncom
  • www.simonn.com
  • www.simon.ncom
  • www.simon;com
  • www.simon;.com
  • www.simon.;com
  • www.simonlcom
  • www.simonl.com
  • www.simon.lcom
  • www.simon com
  • www.simon .com
  • www.simon. com
  • www.simon,com
  • www.simon,.com
  • www.simon.,com
  • www.simonmcom
  • www.simonm.com
  • www.simon.mcom
  • www.simon.ccom
  • www.simon.om
  • www.simon.ccom
  • www.simon.xom
  • www.simon.xcom
  • www.simon.cxom
  • www.simon.fom
  • www.simon.fcom
  • www.simon.cfom
  • www.simon.vom
  • www.simon.vcom
  • www.simon.cvom
  • www.simon.dom
  • www.simon.dcom
  • www.simon.cdom
  • www.simonc.om
  • www.simon.cm
  • www.simon.coom
  • www.simon.cpm
  • www.simon.cpom
  • www.simon.copm
  • www.simon.cim
  • www.simon.ciom
  • www.simon.coim
  • www.simon.ckm
  • www.simon.ckom
  • www.simon.cokm
  • www.simon.clm
  • www.simon.clom
  • www.simon.colm
  • www.simon.c0m
  • www.simon.c0om
  • www.simon.co0m
  • www.simon.c:m
  • www.simon.c:om
  • www.simon.co:m
  • www.simon.c9m
  • www.simon.c9om
  • www.simon.co9m
  • www.simon.ocm
  • www.simon.co
  • simon.me.ukm
  • www.simon.con
  • www.simon.conm
  • simon.me.ukn
  • www.simon.col
  • www.simon.colm
  • simon.me.ukl
  • www.simon.co
  • www.simon.co m
  • simon.me.uk
  • www.simon.cok
  • www.simon.cokm
  • simon.me.ukk
  • www.simon.co,
  • www.simon.co,m
  • simon.me.uk,
  • www.simon.coj
  • www.simon.cojm
  • simon.me.ukj
  • www.simon.cmo
Show All Mistakes Hide All Mistakes