Archive for the ‘Windows, ASP & .NET’ Category
Monday, June 23rd, 2008
For .NET 1.1, 2.0, 3.5
Trust levels are basically different sets of security configurations depending upon the circumstance.
You have:
- Full - You can do whatever you want, format the HDD, shut-down the server.
- High - Same as Full but you can’t call unmanaged code.
- Medium - Recommended by Microsoft for shared hosting environments (and all sane sysadmins).
- Low - Same as medium but you can’t do any DB, Network or other calls.
- Minimal - Unless we just wanted to calculated things, we can forget this trust level.
What we actually run is a custom trust level… By this we mean the standard Microsoft Medium trust with a few relaxations and few more restrictive items for ‘proper’ shared hosting security, such as:
- Allowing of OleDbPermission.
- Allowing of OdbcPermission.
- Less restrictive WebPermission.
- Reflection but no ReflectionPermission (so you can still use reflection for code you have permission to access).
Using a Medium trust level prevents applications from accessing shared system resources and eliminates the potential for inta application interference.
Offsite links:
Posted in FAQs, Windows, ASP & .NET | No Comments »
Monday, June 9th, 2008
In order to take advantage of ASP.NET 3.5 support customers on win7.pipeten.co.uk and win9.pipeten.co.uk can change the ASP.NET version in the control panel to 2.0. By choosing .NET 2.0 you should be able to take full advantage of .NET 3.5 also.
Shared hosting customers on servers other than those listed above should contact support via the hosting control panel regarding .NET 3.5 availability and/or moving your account to win7 or win9.
Posted in Windows, ASP & .NET | No Comments »
Monday, April 28th, 2008
A common issue people face when first migrating/installing their .NET web application is an error which suggests you turn custom errors off to allow a detailed view of the error message. Commonly this will tell you to apply the following code to your Web.config:
<system.web>
<customErrors mode="Off">
</customErrors
</system.web>
In some situations you will find that this takes no affect, check the following:
- You may have the wrong .NET framework version selected within the control panel. Select ASPNET 1.1 or ASPNET 2.0 (which at time of writing 2.0 also enables .NET 3.5).
- There is a syntax or configuration error with your Web.config. Work through the Web.config section by section, double checking code, database and security configurations.
- If all else fails, start with the bare minimum Web.config and build it up section by section.
Posted in Windows, ASP & .NET | No Comments »
Thursday, April 24th, 2008
Pipe Ten now offer free crontabs on their Linux Venture, Multihost and Enterprise accounts. Windows Enterprise customers can now also create a free Scheduled Task to run a script on their website at a schedule of their choosing. Contact the support team for more details.
Posted in Linux & PHP, News, Windows, ASP & .NET | No Comments »
Friday, April 18th, 2008
Due to popular request Pipe Ten have now launched their exciting new SQL Server 2005 backup facility using MyLlttleBackup. All customers that have databases on Pipe Ten’s MSSQL server can now log in to the new online backup facility to create, download and restore full backup’s of their databases directly through their web browser at http://mylittlebackup.pipeten.co.uk
Posted in MS SQL, News, Windows, ASP & .NET | 2 Comments »
Sunday, February 17th, 2008
Full Trust would mean that we trust you, the user to have full access to the server. This includes access to all other users data, ability to reboot, reformat and completely take over the server. We hope you understand why we would never, ever consider granting this. (more…)
Posted in Windows, ASP & .NET | No Comments »
Monday, December 3rd, 2007
To enable write access for ASP.NET:
- Click text ‘Domains Settings‘ within navigation.
- Click text ‘Domain Info‘ within sub-navigation.
- Find the ‘Controls‘ column and click the ‘Edit‘ icon next to the domain in question.
- Click the ‘Edit‘ icon next to the text ‘Web Service‘.
- Click the ‘Edit‘ icon next to the text ‘Web Directories Settings‘.
- Click the ‘Edit‘ icon next to the text ‘Document Root‘.
- Click the checkbox next to the text ‘Allow write access‘.
- Click the ‘Submit‘ button.
- Wait 5 minutes and then test.
Posted in Windows, ASP & .NET | No Comments »
Thursday, October 4th, 2007
In this short tutorial we will show you how to add a custom web directory and application to your domain. More information on the features available through these items can be found in the manual.
For the purposes of this example we will be using the third level domain ‘webapp.pipeten.co.uk’ and creating an application called ‘newapp’ with standard settings.
Creating a Web Directory on an existing domain:
- Login to your control panel.
- Within the navigation go-to ‘Domain Settings’ and then ‘Domain Info’.
- Click the ‘Edit’ icon next to the domain ‘webapp.pipeten.co.uk’ (remember this is your domain).
- Locate the text ‘Web Service’ and click the ‘Edit’ icon next to it.
- Located the text ‘Web Directories Settings’ and click the ‘Edit’ icon next to it.
- You should now see the default ‘Web Directory’ and ‘Web Application’ for your chosen domain.
- Click the ‘Add’ icon at the bottom of the page.
- You are now on the ‘New Web Directory’ page.
- For the purposes of this example enter:
- Web Directory Name: newapp
- Web directory path relative to the user home: webapp.pipeten.co.uk\newapp
- Leave all other items as default.
- Click the ‘Submit’ button at the bottom of the page.
- You should now be back on the ‘Web Directories Settings’ page as covered in step #6
- You have successfully created a ‘Web Directory’. Please see the following page of the manual for more information on Web Directories.
Creating a Web Application on an existing domain (and under and existing Web Directory):
- Complete steps 1 through 6 on the above walk-through.
- Click the ‘Off’ button under ‘Web Application’ -> ‘Status’ next to the web directory newapp.
- You have now created a web application and will need to configure it’s settings. Please see the following page of the manual about configuring web applications.
Posted in Windows, ASP & .NET | 2 Comments »
Wednesday, July 11th, 2007
Please follow steps 1 to 4 in the post Custom Web Directories & Applications.
Then complete the following steps:
- Select ‘Web Application’ next to ‘Web Directories and Web Applications’ and click Go.
- Click the ‘Off’ icon next to ‘ASPNET’ turn ASPNET on and select your version number.
Posted in Windows, ASP & .NET | No Comments »
Thursday, May 24th, 2007
Yes we do allow some additional components to be installed on our servers. All you have to pay is any license fees that might be required.
Posted in Windows, ASP & .NET | No Comments »