Articles about European Sharepoint Hosting Service
Posts tagged HostForLife
HostForLIFE.eu Proudly Announces Microsoft SQL Server 2014 Hosting
Apr 7th
HostForLIFE.eu Proudly Launches Scalable Enterprise Email Hosting
Dec 17th
HostForLIFE.eu, a leading Windows web hosting provider with innovative technology solutions and a dedicated professional services team proudly announces Enterprise Email Hosting for all costumer. HostForLIFE.eu aim to help you grow your bottom line whether it is driving direct sales from emails, driving website traffic or delivering outstanding service.
Enterprise Email is a great tool for communicating to existing customers, or individuals who know your organization well enough and have interest in opting-in to receive your e-mail. Your promotions, sales and offers get their attention, meet a need, and encourage them to do more business with you. What e-mail marketing typically doesn’t do very effectively is attract the attention of new customers.
Robert Junior and Sophia Levine from HostForLIFE.eu say:
“Once a business has secured a domain name, we setup an email hosting account for them and they can choose any email account they wish. Most popular email accounts for small business are sales, info and accounts, although it can be virtually anything once you own your own domain name.” Robert says.
“I would expect that once more small business owners had the flexibility to mange their own email hosting, they would save money on their monthly internet costs because there are always cheaper deals being promoted. Of course email hosting does not replace your internet service, but it enables you to switch to a cheaper plan and not loose contact with your customers.” Sophia says.
“Our clients have found that they are able to save money on their internet services because once they no longer rely to manage their email, they can shop around for a better deal, save some money and take their Email Hosting with them. Having your own domain name and email hosting also improves your business image far more that an ISP account or hotmail email address.” Robert says.
“What many small business owners often struggle with is continuing to pay high internet service costs to keep their allocated ISP email address if they use their ISP email for their business. What people do not realise is that if they were to purchase their own .com or etc domain name they have a unique email address like ‘sales@hostforlife.eu’. It means they can move to a cheaper ISP if they find a better deal and not risk losing contact with their business contacts.” Sophia Says.
HostForLIFE.eu provides a full suite of self-service marketing solutions with the following features: Total Bulk Email up to 10.000 emails/month with total maibox is 5, users receive 2 GB mailbox quota, a platform fully support Blackberry, SPF/DKIM/TXT, WebMail Access, and POP/SMTP/IMAP.
Are you sending direct mails to your customers just once a month or every three days? Simply choose the plan that suits you the most. All price plans are based on actual use of the system – from 10,000 e-mails sent out in a month starting at €8.00!
Further information and the full range of features Enterprise Email Hosting can be viewed here http://www.hostforlife.eu.

European SharePoint 2013 Hosting :: Find Performance Issue on SharePoint 2013
Nov 25th
Background
SharePoint 2013 has now as designed the architecture of FAST Search. This is one of the important reasons why more and more corporates are now switching to SharePoint 2013 and not to other collaboration platform’s.
It sound perfect to have a SharePoint Server 2013 with fast; but if you’re on a development environment with limited hardware resources, the chance exists that you’re Virtual Machine became too slow or even worst it will not respond anymore and the only way is reboot your server.
I have a SharePoint Farm installed on my laptop and only 2 Service Applications has been configured:
- Search Service Application
- Managed Metadata Service Application
Nobody is using or connected to the SharePoint Farm but the RAM has almost reached the Maximum
As you can see “Noderunner.exe” (Microsoft SharePoint Search Component) is itself consuming a lot of memory and the same Process is running multiple times. Noderunner.exe is the new executable of search service on SharePoint 2013. This process can’t turn it off because Search is one of essential service application in SharePoint 2013, and it is integrated in many features.
Find Problem
Let’s kill manually these services and see if my SharePoint site is still answering. Select your process and hit “End Process Tree”. This will kill the Process and all children that are attached to him.
As I’m on my Development machine I’m doing the same operation on all the Processes.
And Strike! Everything related to the Search (Content Search, Web Part …) is broken. I can browse to my Website but can’t execute anything related to the Search Service Application. As you can see this isn’t the best approach to gain performance.
Test
It’s really annoying because the Search Service Application shouldn’t not cause so much damage on our SharePoint Farm.
On SharePoint 2010 I knew we could configure the Search Service Performance Level with powerhsell.
Powershell Cmdlet:
Get-SPEnterpriseSearchService | Set-SPEnterpriseSearchService –PerformanceLevel “PartlyReduced”
Performance Level Explained:
- Reduced: Total number of threads = number of processors, Max Threads/host = number of processors
- PartlyReduced: Total number of threads = 4 times the number of processors , Max Threads/host = 16 times the number of processors
- Maximum: Total number of threads = 4 times the number of processors , Max Threads/host = 16 times the number of processors (threads are created at HIGH priority)
And in fact on SharePoint 2013 it’s the same scenario. After searching a while I found on TechNet this article: http://technet.microsoft.com/en-us/library/ff608126.aspx who actually confirms my theory.
Open Powershell with a Domain Account who has Farm Administrator Rights and hit Get-SPEnterpriseSearchService and as imagined the PerformanceLevel is set up to Maximum.
To change this to reduced or partly reduced hit Set-SPEnterpriseSearchService -PerformanceLevel Reduced and restart the SharePoint Search if your Virtual machine is still answering. After this manipulation your SharePoint Server will be able to breathe and you can continue to work.
Test: Not tested way
You can also say that you want to have the Maximum Performance Level and refuse to change it to reduced.
There is a Config file for NodeRunner.exe’s configuration file that can limit RAM usage of a single process to specific value in megabytes.
You can find it under :
C:\Program Files\Microsoft Office Servers\15.0\Search\Runtime\1.0\noderunner.exe.config.
The configuration setting is called memoryLimitMegabytes and the default value is 0 (I guess unlimited). You can hit the value you want, save the file and restart your Search Service.

Europe SharePoint 2013 Hosting :: Call WebService in SharePoint 2013, How to Use it?
Aug 21st
In SharePoint2013, you can use call web service action and loop. In this post, I will show you how to achieve this.
1. Create a List workflow called CallWebService
2. Create a variable called listurl
3. Create a dictionary variable called RequestHeaders and add the following key value pairs.
4. Call the web service with the HttpHeaders you just build in the previous step and store the response in the variable ResponseContent.
5. The ResponseContent variable is the Dynamic values (in SharePoint designer it will be called dictionary type) and it is new feature for SharePoint2013 workflow. We can use the following actions to count the number items in the variable.
6. You can use loop in SharePoint 2013 workflow and out each list title as shown below.