Hey all:
When you build a web solution in Visual studio, if the following error message is shown:
"Unable to start debugging on the web server. The web server is not configured correctly. See help for common configuration errors. Running the web page outside of the debugger may provide further information."
There can be two reasons...
A) The directory where the web application stays may not be configured as web application.
Steps to Solve:
1. Right click the project folder & Click properties.
2. Select "Web Sharing" tab.
3. Choose the option "Share this folder" radio button & Edit Alias window will pop-up, Press OK and build the application.
B) The Frame work version may not be the appropriate one.
Steps to Solve:
1. Right click the project folder from IIS (Run>inetmgr), Click properties
2. Select ASP.NET tab & select the appropriate ASP.NET Version from combo box.
3. Press OK & build the application again.
Hope it is helpful...
Regards
Fauzi
Blog from a software professional, Passionate to work in latest cutting edge technologies in order to get better results in business.
Showing posts with label Server. Show all posts
Showing posts with label Server. Show all posts
Wednesday, May 13, 2009
Wednesday, October 8, 2008
Automate MOSS 2007 Backup
Hi...
To automate the backup activity of MOSS 2007 portal Server we use to do the following two steps...
1. Creation of Batch file: Here we create a batch file which will execute the stsadm.exe, passing necessary parameters to perform the backup activity in command prompt.
Batch file Code as follows:
@echo off
echo ====================================================
echo Backup Script For Office SharePoint Server 2007
echo ====================================================
@echo off
RD D:\Backup\SOME FOLDER /S /Q
MD D:\Backup\SOME FOLDER
stsadm.exe -o backup -directory "\\SOME FOLDER" -backupmethod full -item "Farm" -overwrite
echo completed
2. Scheduled Tasks: In this step we can create a scheduled task (Control Panel --> Scheduled Tasks) to execute the batch file at a preferred frequency of time.
Thus your backup is automated, its advisable to the monitor free space available on the disk regularly...
Now recently there are new tools available to take backups.And they come with more cool features. If you use some interesting tools or any other technique, feel free to let us know :)
Warm Regards
Mohammed Fauzi ~ 4Z
To automate the backup activity of MOSS 2007 portal Server we use to do the following two steps...
1. Creation of Batch file: Here we create a batch file which will execute the stsadm.exe, passing necessary parameters to perform the backup activity in command prompt.
Batch file Code as follows:
@echo off
echo ====================================================
echo Backup Script For Office SharePoint Server 2007
echo ====================================================
@echo off
RD D:\Backup\SOME FOLDER /S /Q
MD D:\Backup\SOME FOLDER
stsadm.exe -o backup -directory "\\SOME FOLDER" -backupmethod full -item "Farm" -overwrite
echo completed
2. Scheduled Tasks: In this step we can create a scheduled task (Control Panel --> Scheduled Tasks) to execute the batch file at a preferred frequency of time.
Thus your backup is automated, its advisable to the monitor free space available on the disk regularly...
Now recently there are new tools available to take backups.And they come with more cool features. If you use some interesting tools or any other technique, feel free to let us know :)
Warm Regards
Mohammed Fauzi ~ 4Z
Labels:
Automate,
Backup,
MOSS,
MOSS 2007,
Scheduled Tasks,
Server,
SharePoint,
stsadm
Subscribe to:
Posts (Atom)