buy tb500

Archive for July, 2011

How to install joomla

Thursday, July 21st, 2011

How to Install Joomla From Your cPanel Using Softaculous

Last Updated on Monday, 30 November 2009 03:15 Written by Arian Jahansouz Monday, 30 November 2009 03:15

This article will give you a step by step guide on how to install Joomla from your cPanel. Sign into your cPanel and follow these steps:

1) Click Softaculous.

1

2) Scroll down to Portals/CMS. Find the Joomla link and click on it.

2

3) Click Install.

3

4) Fill out all of the boxes. For In Directory type the name of a new directory you would like created. By default, the box will be left blank to install the software into your main directory. When you are finished, click Install.

4

5) You will then get a confirmation page of your installation.

5

This concludes how to install Joomla from your cPanel.

Reset Windows server 2008 administrator password

Wednesday, July 13th, 2011

use this command in command prompt

net user administrator 123456

reference

http://www.petri.co.il/change_user_password_from_the_command_prompt.htm

Increase ASP upload file size

Wednesday, July 13th, 2011

ncrease File Upload Size in ASP & ASP.NET

There is no GUI option in Server 2003 to increase the ASP upload size limit. This guide will show you how this can be accomplished via the command line.

  • The default server size is 204,800 bytes (200k).
  1. Connect to your server via Remote Desktop. You can follow this guide on How do I connect to my Windows VPS?
  2. Open the command prompt. You can follow this guide on How do I open a command prompt?
  3. At the command prompt type “cd C:\Inetpub\AdminScripts” and press enter:
  4. Type the following command and press enter to check the upload limit:
  5. cscript adsutil.vbs get w3svc/ASPMaxRequestEntityAllowed

  6. To change the value to say 100mb, run the following command:
  7. cscript adsutil.vbs set w3svc/AspMaxRequestEntityAllowed 104857600

  8. Run the IIS restart command by typing: iisreset /restart and you are done.