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 welfare support for seafarers both active and retired, ex-Servicemen and other adults in need of accommodation. The charity aims to do this in a caring environment where individuals will be helped and encouraged - physically, mentally and spiritually - to meet their full potential, regardless of race, colour or creed.
Queen Victoria Seamen's Rest (QVSR) actively works within the Port of London providing Chaplaincy services to visiting ships/seafarers at the Port of Tilbury and DP World London Gateway. It also provides a satellite seafarers' centre (Cafe Maritime) serving the upper pool area of the Thames. For further information please contact our Chaplain on 07958 005124.
Note/Restrictions: No minimum length of service. All applications for accommodation considered on an individual basis. Applicants must be male (at present) but can be any nationality.
Related Articles
Queen Victoria Seamen's Rest (QVSR)
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 ...
QVSR London Tilbury (Queen Victoria Seamen's Rest)
Contact details Website: https://www.qvsr.org.uk/qvsr-london-tilbury/ Seafarers' Centre Telephone: +44 (0)1375 840454 WhatsApp: +44 (0)7431 246007 Email: londontilbury@qvsr.org.uk Opening hours: Daily from 13:30 to 21:30 (GMT). A 24-hour lounge ...
QVSR Bristol (Queen Victoria Seamen's Rest Bristol)
Key Contact Details Website: https://www.qvsr.org.uk/qvsr-bristol/ Telephone (transport and centre enquiries): +44 (0)1275 374895 +44 (0)1275 372926 Email: qvsrbristol@qvsr.org.uk Opening hours: Open daily: 13:00 to 22:00 GMT A 24-hour lounge is ...
QVSR (Queen Victoria Seamen’s Rest)
Contact details: Website: https://www.qvsr.org.uk/ Contact page: https://www.qvsr.org.uk/contact-us/ Address: QVSR House, Poplar, East London What this organisation does QVSR (Queen Victoria Seamen’s Rest) is a long-established charity that supports ...
QVSR Immingham Seafarers Centre
Contact details Website: https://www.qvsr.org.uk/qvsr-immingham/ Centre telephone: +44 (0)1469 574195 Transport / WhatsApp: +44 (0)7380 540023 Email: qvsrhumber@qvsr.org.uk Parent organisation: QVSR (Queen Victoria Seamen's Rest) Main office ...
(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);
})();