Websites Calendar 2015


Job Times

20152014

JanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecember
November 2015


2 Monadminabs
Nicholas Mosse pottery
0.000.00
 JHSinstructions for Del to transfer files across tomorrow

copy over zipped 90/05 to w: drive
0.500.25
 kylscorers4.000.00
 pastoralloaded nov tables0.250.00
 headleyWill requested access to linode

no control cpanel 20-45$ a month
webmin could be setup
linode is a raw virtual private server

headley.co.uk/phpmyad min
nickebdon
n1ckh3d

Ftp host 80.85.87.182
user nickebdon
pword hbr0t h5rs
/var/www/headley.co.uk/ which is under owner/group nickebdon:nickebdon
1.000.00
6.00


3 Tueklslook at renewal form. option button round will be less clunky and is expandable. 0.500.00
 headleyattempt to discuss above0.250.00
 kylcms scorers Iain problem with input. Think it is to do with not putting a goal number in the box 1.0

team pages not showing scorers 3.0
4.000.00
 adminBracken buried sad0.000.00
 JHShttp://www.tandfonline.com/action/aboutThisJournal?journalCode=thsb20#.VjjXZG7SneG

load up pdfs
1.000.00
 TrainingINSTRUCTIONS FOR SEARCH IN PDFS
require( "cla ss.filetotext.php" );

$docObj = new Filetotext( "test.docx" );
$return = $docObj -> convertToText();

print $return;

As you can see, we include our class file then create a new Filetotext object which takes the file path as its parameter. Then we use convertToText() method on the object which returns the converted text.

Here follow another two examples. It is basically the same thing for any documents in the supported formats.

require("class.filetotext.php");

$docObj = new Filetotext("test1.doc");
$return = $docObj -> con vertToText();

print $return;

require( "class.filetotext.php" );

$docObj = new Filetotext( "test2.pdf" );
$return = $docObj -> convertToText();

print $return;

Searching the Document Text

With this class it is a piece of cake to convert any DOCX, DOC or PDF to plain text. The resulting text may not be suitably formatted for display to users but it can well be used for searching purposes.

In some cases we can also modify the text and then save it back to a document file of the original format using with another class that can generate documents in the format we want.

Anyway, for searching purposes the text can be stored in any database, so we can perform searches of multiple documents with a single query. If you use a database like MySQL you can store the text in a field with an associated full text index.

CREATE TABLE documents (
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
filename VARCHAR(255),
contents TEXT(65535),
FULLTEXT search_index (contents)
) ENGINE=InnoDB;

The we can use the MATCH expression to perform SELECT queries to search for given text inside the document text c ontents.

SELECT id, filename FROM documents WHERE MATCH (contents) AGAINST ('search keywords here' IN NATURAL LANGUAGE MODE);

If you just want to search a single document text, you can use for instance the strpos PHP function to search for some keywords in the text.

if( strpos( $contents, 'search keywords here') !== false)
{
echo 'Keywords found!';
}
0.000.00
5.75


4 Wedadminstretch & burn0.000.00
 JHSpdfs nov issue 3.00
online query .75
3.000.75
 LCRrenewals 63 emails 4 rejections forwarded to Chris
investigate duplicate
1.000.00
 kls Gmail doesn't support "display: none" but does support "display: none !important".
Gmail doesn't support embedded CSS.
Gmail styles links as blue and underlined by default.
Gmail converts the height property to min-height.
Gmail ignores margin and padding properties if they have a negative value.
Gmail doesn't allow backgrounds (mostly).
Gmail's DOCTYPE can affect line height.
Gmail automatically inserts a link around phone numbers.
Gmail automatically converts URLs and email addresses to links.
Gmail clips messages exceeding 102K.
Gmail does not support spaces within image paths.
Gmail's DOCTYPE can create extra space under images.
https://www.e mailonacid.com/blog/article/email-development/12_th ings_you_must_know_when_developing_
for_gmail_and _gmail_mobile_apps

So the 3d button will not show up on gmail

need to redesign button
https://lit mus.com/blog/a-guide-to-bulletproof-buttons-in-email-design

1.000.00
 headleyspoke to Will
ring new organisation need to give ftp and copy of db.
0.500.00
 intranetspoke with Mike re putty for the intranet
and let me use my backup machine for cloning Anita's bacs
1.000.00
7.25


5 ThuJHSpdfs 6.0
stats for sub 3794 .5
6.500.00
 adminswim completed channel swim challenge0.000.00
6.50


6 Friadminspin0.000.00
 LCRrep6 -> repjob2.php added a fix to print out invoice for 1 user renamed back to repjob2fix.php 0.500.00
 jazz jjacqui dankworth plaque pic missing. Must have been deleted may2013: Jacqui Dankworth.jpg
Recovered it
0.500.00
 JHSpdfs 6.0
page changes instructions .5
page changes subscriptions .5
7.000.00
 pastoralpre-press found pastoral review page and reloaded it so that I can check the sections 0.500.00
8.50


7 Satadmintbc0.000.00


8 SunJHSwill need to change the links general_instruction back to general_instructions and subscriptions2016 to subscriptions. Rename two to old when Judith has proofed the pages. 0.500.00
 pastoralcheck the site with the contents page. All good0.500.00
 kylscorer problem with cray wanders youth cup [c48] have no players allocated in team but cray wanderers fa c05 have players. With no players attached cannot create scorers 1.5
teams.php - team pages now shows scorers
3.500.00
4.50


9 Monadminab attack - cancelled

Marian meal in Ashford 5:30pm
0.000.00
 klsproblem with VAT on the database. When db was transferred to HI the cache was deleted making the VAT go to 0% which seems to have been incorrect for some time. The cache still said 20% 1.000.00
 CruiseFerrystats for website, and pageturner and ads0.500.00
 headleychecking out copy of headley.co.uk on servage.
n ew2.headley.co.uk

Spoken to Nic and will keep him informed of developments
3.000.00
 quoteneed to get pilot site up for Kent Schools FA0.500.00
 JHSset all articles to publish. Change home page. Do corrections. 2.000.00
7.00


10 TueJHS24 pdfs to corresponding authors. change the mailDOind which was failing. Problem with the failed filesize of one pdf was due to name of file. instead of a hyphen there was a unicode character and the module filesize is not compatable 1.250.00
 Traininghttps://www.servage.net/blog/2010/10/22/how-to-speed-up-wordpress/ 0.000.00
 headleychanged the .htaccess


Fatal error: Cannot redeclare class OAuthException in /mounted-storage/home106a/s ub008/sc63715-VPMJ/new2.headley.co.uk/public_html/w p-content/plugins/recent-tweets-widget/twitteroauth.php on line 15

no access to twitter account headley brothers
changed pwd to h5e6a7d8 twittter ins truction

request access Julia

Changed the servage mbstring function overload as .htaccess not working well


Seems to be a conflict on class being called twice add the first line to solve this
INSTRUCTION TWITTER PROBLEM


if (!class_exists('OAuthException')) {
class OAuthException extends Exception {
// pass
}
}


4.000.00
 kyladd and trim photo for contact page0.250.00
5.50


11 Wedadminemily stretch and burn0.000.00
 kylscorer problem with editresults due to bad team with no players. functions_commonp2 now changed to deal with this. 5.00

pdf conversion .25
5.250.00
 CruiseFerrydifferent ad for kubota - 468 image sent again0.500.00
 JHSsend images for twitter sue grimbly0.500.00
 subsinquirer labels0.250.00
 headleyfiles/upload/Jenny
for wonderful
1.750.00
8.25


12 ThuCruiseFerrycost for a 24 page turner. David thinking of offering individual page turners as advertising for his suppliers at an exhibition in January. A 2 page spread of each magazine will supersede an example 2 page spread of his existing pageturners.

Need to get quotes from Pina

looking at creating an html5 version for ip ods

www.turnjs.com

bookiza.io

investigating possibility of html instead
2.500.00
 TrainingINSTRUCTION pdf viewer

Problem is that embedded pdfs are not showing properly in ipads and mobiles. So reverting to html5. May have to use an object for older versions. Hopefully this will cover most instances
http://kentyouthleague.co.uk/web/viewer.html?file=/web/example.pdf
embed5.php
3.500.00
6.00


13 Friadminspin

hannahmccandlish@hotmail.com (hannahmccandl ish@hotmail.com);
dan.mccandlish@virgin.net (dan. mccandlish@virgin.net);
ziggy nightingale (nighti ngale.wmp@lineone.net);
john.nightingale@magd.ox.ac.uk (john.nightingale@magd.ox.ac.uk);
esther.wright1912@comcast.net (esther.wright1912@comcast.net);
nightingale.butle r@tiscali.co.uk (nightingale.butler@tiscali.co.uk);
Lizzie Johnston (lizzie.johnston@btinternet.com);
Joe Challis (joe@twtowncrier.co.uk);
charlottechallis@tiscali.co.uk

not paid
0.000.00
 JHSstats for 2934 and 3087 0.750.00
 Trainingpdf viewer

compatability for mobiles ipads etc


match-reports.php

change filenames club-news general
5.500.00
 CruiseFerrytalk to pina
100.00 per issue

0.500.00
 headleyproblem on backup machine said it had had config changes not me
0.750.00
7.50


14 Satadmintbc
Barbie stay
0.000.00


15 SunTrainingTesting embedded pdf object and html
http://kentyo uthleague.co.uk/web/view.html?file=/web/example.pdf

https://github.com/mozilla/pdf.js#building-pdfj s

http://kentyouthleague.co.uk/embed5.php

htt p://articulate-community.s3.amazonaws.com/Mike/2013 /Examples/PDF/story.html


http://mozilla.github.io/pdf.js/getting_started/
0.000.00
 hoafloating fire engines - not got as far as bank order

alter authenticate.php so does not display sql query if fails. admin webdes
0.500.00
0.50


16 Monadminabs0.000.00
 quote96 pageturners this year 100 a go about 6000 a year yudu
0.000.00
 Trainingtesting why the pdf embedding HTML5 is not showing properly on mobile. 3.0

investigating turn.js and pdf.js for pageturner option for iphones for landscaper

3.0
6.000.00
 CruiseFerrySpoken to Gary Taylor re charges for pageturners

100.00 per issue
0.250.00
 klsrenewals. Checked out db and Roger needs to up the dates on the expiry to end of the year

he can cut and paste the list of renewals for a company using the renewal tab

spoke to roger
1.000.00
7.25


17 TueTrainingHave added line to get mobile user to click on link for pdf. It works with kentyouthleague.co.uk/testiframe.html but not when within the kyl program. 0.000.00
 klsrenewals. 0.750.00
 CruiseFerryhttps://github.com/bookiza/bookiza
look to combine pdf.js and turn.js
landscaper directory pt; pteg; pageturner; and pdfhtml

Seen that yudu have added extra functionality since May so that although it is not like page turner the ipad edition shows as an arrowed pdf

This should be fine.
3.000.00
 kylthe option for viewing embedded pdfs is fine now. 2.500.00
 adminKING SCHOOL 2013:658.70; 677.90;705.00
SWIM 27.50; 32.50;31.20;26.40;31.20;36.00;34.45;34.45;39.75
2.5 X 11; 2.6 X 12; 2.6 X 12; 13 X 2.65; 15 X 2.65

2.5->2.6->2.65->6.7
0.000.00
 quoteKENT SCHOOLS PILOT create db and ksfanew as the existing one is ksfa.headley.co.uk
2.000.00
8.25


18 Wedadminstretch and burn
charles nightingale birthday
0.000.00
 jazz jcreate images re new rates and add to sub page2.000.00
 kylremove blank refs on email0.750.00
 Trainingiframe for a responsive bootstrap system testing4.000.00
6.75


19 ThuTrainingmasthead responsive bootstrap system testing5.000.00
5.00


20 Friadminspinning0.000.00
 hoachange helen.collins to christine.croal as recipient of book order 0.500.00
 Trainingresponsive for carousel ; responsive mast head header for bootstrap 7.000.00
7.50


21 SatadminLondon Pauline
tbc
0.000.00
 kylwebsite problem with left column. Re-copied over program 0.750.00
0.75


22 Sunjazz jdelete 2 images0.250.00
0.25


23 Monadminabs0.000.00
 quotepilot of ksfa5.500.00
 CruiseFerryremove stihl banner and get wyevale setup1.000.00
6.50


24 TueTrainingALTER TABLE some_table AUTO_INCREMENT=10.000.00
 adminDiana's chris gone to hospital0.000.00
 quotepilot of ksfa5.500.00
5.50


25 Wedadminstretch and tone0.000.00
 kyljames.reed cms pwd Stones72 .25

investigation for matchcard report - differences on the email to the report 2.0
2.250.00
 jazz jcopy over userFiles as it looks like some images are disappearing to w drive .5

create searchPic.php which scans for a filename with various words in it. Maybe add to admin 2.0

Mark has managed to recover image from cache
0.502.00
 quotepilot of ksfa2.000.00
6.75


26 Thuintranet 0.000.00
 jazz j