QVSR Felixstowe
Charity Number: 272077
Contact: Centre Manager
Address: Felixstowe Seafarers Centre, Dock Road, Felixstowe, Suffolk
Postcode: IP11 3TG
Phone: 07974 401 990
Website: www.fhpss.org
Email: admin@fhpss.org.uk
Summary: To provide seafarers' facilities in the ports of Felixstowe, Harwich and Ipswich where seafarers may find relaxation and respite from their ship, use telephone and internet facilities and in addition receive spiritual and pastoral guidance in a welcoming and secure environment.
Related Articles
QVSR Felixstowe Seafarers Centre
QVSR Felixstowe Seafarers Centre Website: https://www.qvsr.org.uk/qvsr-felixstowe/ Centre location: Felixstowe Seafarers Centre, operated by QVSR. Transport bookings and enquiries: +44 (0)7968 306381 +44 (0)1394 613502 Volunteer and general ...
Queen Victoria Seamen's Rest (QVSR)- Tilbury Seafarers Centre
Charity Number: 1106126 Address: 121-131 East India Dock Road, Poplar, London Postcode: E14 6DF Phone: 020 7987 5466 Website: www.qvsr.org.uk Email: enquiries@qvsr.org.uk Summary: The Queen Victoria Seamen's Rest will provide accommodation and ...
Liverpool Seafarers' Centre
Charity Number: 1125539 Contact: Mr John Wilson (Chief Executive) Address: 20 Crosby Road South, Waterloo, Liverpool Postcode: L22 1RQ Phone: 0300 8008080 Website: www.liverpoolseafarerscentre.org Email: admin@liverpoolseafarerscentre.org Summary: ...
Liverpool Seafarers Centre
Contact Details Website: https://liverpoolseafarerscentre.org/ Address: Liverpool Seafarers Centre, 20 Crosby Road South, Liverpool, L22 1RQ, United Kingdom. UK Telephone: 0300 800 8080. International Telephone: +44 300 800 8080. Email: ...
Seaham Seafarers Centre
Charity Number: 517633 Contact: Mr Tom Pattison Address: The Seaham Harbour Dock Co. Cargodurham Distribution Centre, Seaham Postcode: SR7 7NZ Phone: 0191 5814841 Website: www.missiontoseafarers.org/seaham/ Email: tompattison@seahamharbour.com ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();