Thursday, June 30, 2011 #

SharePoint Designer 2010: "Failed to get value of the "Attachments" column" error

Symptom:

Adding a custom "New ITem Form" to a page in SharePoint Designer 2010.  The new form adds properly and configures normally, but when you try to use it to submit a new item, you get this error:

Failed to get value of the "Attachments" column from the "Attachments" field type control.  See details in log. Exception message: Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)..

Solution:

Follow best practices.  :)

This was in our dev environment and I was hiding the out of the box new item form and adding a new (custom) one to the page.  The error goes away when you create a new form and stop fiddling with the out of the box pages.  Harumpf.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, June 30, 2011 12:41 PM | Feedback (0)

Wednesday, May 11, 2011 #

SharePoint 2007: Temp DB and Transaction Logs - Excessive Growth

Problem:

Every night, around 4 AM, the SharePoint temp DB and logs would grow very very large.  Size increased by about 60 GB every night, then shrank again.  I couldn't figure out why the excessive growth was happening to one of the content datases and the temp database.  All research pointed to the search crawler writing to the temp files. These are the steps I took:

  • I disabled all crawls
  • I disabled all usage analysis jobs
  • I disabled any job running at night.

This had no effect.  The databases were still growing out of control every night starting at 4 AM even though I had no jobs scheduled at that time.  But SOMETHING must still be running...

Issue:

I isolated the issue to one content database that was also growing every night.  There was one site in the database that went through a fairly major cleanup and had deleted 60 GB of content in one day from one folder just over 30 days prior.

I looked in the 2nd level recycle recycle bin and the folder was still there - deleted over 30 days previously.  The recycle bin should have deleted it during cleanup days ago.  It had actually been trying, but not successful.

SharePoint was running the job to delete items from the 2nd level recycle bin, starting the job at 4 AM, writing to the temp db and the transaction logs, then timing out.  So, it would not finish the deletion.  The entire process would start again the next night.

Solution:

I restored the content from the recycle bin to the site.  I went into the library and deleted smaller chunks, instead of one folder.  Then, I manually deleted 3-4 GB at a time from the 2nd stage recycle bin during off hours, which flushed the items from the database and lessened impact to users.  Problem solved.

I also learned that you can set the schedule of the Recycle bin cleanup via stsadm commands:

To set the schedule of a Recycle Bin cleanup for the Web application use the following syntax:

stsadm -o setproperty -pn job-recycle-bin-cleanup -pv "daily at 15:00:00" -url <site URL>

To view the current setting of the job-recycle-bin-cleanup property, use the following syntax:

stsadm -o getproperty -pn job-recycle-bin-cleanup

 

 

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, May 11, 2011 12:16 PM | Feedback (0)

Thursday, May 05, 2011 #

Sharepoint 2010 Error: The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator.

Symptom: When trying to publish a page in SharePoint 2010 publishing template, you get this error:

The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator.

Problem:

The State Service is not configured.  When you decide to configure everything yourself when installing 2010, the state service can only be installed/configured using PowerShell or the configuration wizard.

Solution:

Configure via configuration wizard:

Go to central admin, click on Configuration Wizards, Launch the Farm Configuration Wizard.  Check the box for State Service and deselect everything else.  Click on Next.

You can install it with Powershell, which I didn't choose.  I was reading that it can be problematic.   At some point I will research again and maybe the bugs will be worked out.

To configure the State Service by using Windows PowerShell:
1. Click Start, Administrative Tools, Windows PowerShell Modules.
2. In Windows PowerShell, type $serviceApp = New-SPStateServiceApplication -Name “State Service”
3. Create a State Service database and associate it with a service application, by typing New-SPStateServiceDatabase -Name “StateServiceDatabase” -ServiceApplication $serviceApp
4. Create a State Service Application Proxy and associate it with the service application by typing New-SPStateServiceApplicationProxy -Name “State Service” -ServiceApplication $serviceApp -DefaultProxyGroup
(You can use another proxy group if necessary by changing the DefaultProxyGroup parameter)

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, May 05, 2011 11:19 AM | Feedback (0)

Tuesday, May 03, 2011 #

How to get port number of SQL

Problem:

FAST Search is asking for the port number of SQL for the install.  If it isn't the default, what is it and how do I know?

Solution:

Execute the following query in SQL:

DECLARE @test VARCHAR(15) ,
    @value_name VARCHAR(15) ,
    @RegistryPath VARCHAR(200)
 
IF ( CHARINDEX('\', @@SERVERNAME) <> 0 ) -- Named Instance
    BEGIN
        SET @RegistryPath = 'SOFTWARE\Microsoft\Microsoft SQL Server\' +
            RIGHT(@@SERVERNAME,
                  LEN(@@SERVERNAME) - CHARINDEX('\', @@SERVERNAME)) +
            '\MSSQLServer\SuperSocketNetLib\Tcp'
    END
ELSE -- Default Instance
    BEGIN
        SET @RegistryPath = 'SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib\Tcp'
    END
 
EXEC master..xp_regread
    @rootkey = 'HKEY_LOCAL_MACHINE' ,
    @key = @RegistryPath ,
    @value_name = 'TcpPort' ,
    @value = @test OUTPUT
 
PRINT 'The Port Number is ' + CHAR(13) + @test 

 

Result:

In the messages, you will see this:

The port Number is

12345

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Tuesday, May 03, 2011 4:59 PM | Feedback (0)

Monday, April 18, 2011 #

Error when using RDP to Windows Server 2008: An authentication error has occurred.

Symptom:

When trying to use RDP to  a Windows Server 2008 machine, the following error message appears:

An authentication error has occurred.  The Local Security Authority cannot be contacted.  Remote computer: xxxxxxxx

Problem:

The security setting is too high to allow the account to log in.

Solution:

Lower Remote Desktop Security - On the terminal services server, go to Start, right click Computer, click on Advanced System Settings -> Remote Tab -> Allow connections from computers running any version of remote desktop (less secure).
 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Monday, April 18, 2011 3:52 PM | Feedback (0)

Friday, April 08, 2011 #

SharePoint 2010: error "The administration service is running sl all administration jobs will be run in the timer service"

Symptom:

I had a solution that was stuck in the deploying state.  When I looked at it, it had only deployed successfully on one the the front ends.  To solve the problem, I ran stsadm execadmjobs.  I have done this multiple times in 2007, but this time I got this message:

The administration service is running so all administration jobs will be run in the timer service.

Problem:

The timer service is set to take care of all admin tasks, so it is telling you that the jobs will run when the timer service is good and ready to kick them off, but until then, just sit on your hands and wait.

Solution:

Stop the admin service, then run the command to execute the admin jobs, then turn back on the admin service.  These are the three powershell commands to do this:

  • net stop SPAdminV4
  • Start-SPAdminJob
  • net start SPAdminV4

The first command shuts off the admin service.  The second command is the powershell equivalent to stsadm execadmjobs and the third one turns back on the admin service. 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, April 08, 2011 3:57 PM | Feedback (0)

Friday, February 11, 2011 #

Error Setting Java Environment Variables

Problem

Not exactly SharePoint, but the issue is when setting the %JAVA_HOME% environment variable, Java installs to the Program Files directory by default.  The space in the path seems to stop the variable from being read.  You get an error.

Solution

Change Program Files to Progra~1, so the path now looks like this:

C:\Progra~1\Java\jdk1.6.0_23\bin\;

You can type %JAVA_HOME%\bin\javac to test.  Output should look like this:

Usage: javac <options> <source files>
where possible options include:
...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, February 11, 2011 4:40 PM | Feedback (0)

Tuesday, February 08, 2011 #

SharePoint 2007: Error message when adding a Web part to a list or library page

Sytmptom:  

You have a list or document library page (allitems.aspx) and you are trying to add a Web part.  You get an error message:

Unable to add selected Web part(s).  (name of Web part): The file is not checked out.  You must first check out this document before making changes.

Publishing features are not turned on and it is not a page that lives in a library accessible by the GUI.

Solution: 

Open the site in SharePoint Designer and check out the page. Then, check in the page after modifications are done.  It seems like this is just a bug.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Tuesday, February 08, 2011 10:28 AM | Feedback (0)

Friday, August 06, 2010 #

SharePoint 2010: EventID7362 Super user account error

Symptom:

This Error in the application event logs:

Object Cache: The super user account utilized by the cache is not configured. This can increase the number of cache misses, which causes the page requests to consume unneccesary system resources.

To configure the account use the following command 'stsadm -o setproperty -propertyname portalsuperuseraccount -propertyvalue account -url webappurl'. The account should be any account that has Full Control access to the SharePoint databases but is not an application pool account.

Additional Data:

Current default super user account: SHAREPOINT\system

Solution:

This time, a helpful message in the error itself.  Just follow the instructions in the error and use the stsadm command to set the super user account for each Web app.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, August 06, 2010 3:12 PM | Feedback (0)

SharePoint 2010: Taxonomy Picker Error in Event Logs EventID 7043

Symptom:

EventID 7043 Source: SharePoint Foundation

Load control template file /_controltemplates/TaxonomyPicker.ascx failed: Could not load type 'Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker' from assembly 'Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'.

Problem:

The file drive:\Program Files\Common Files\Web Server Extensions\14\TEMPLATE\CONTROLTEMPLATES\TaxonomyPicker.ascx is badly formed and doesn't compile.

Solution:

You can change the bad syntax of the file. To Fix:

Find the character string &#44; and replace with a comma ‘,’ (without quotes).

Or, you can  rename it TaxonomyPicker.ascx_broken.  It is badly formed, but the file is never actually used.  Thank you to this post for the answer:

http://todd-carter.com/post/2010/05/03/Help-Wanted-Taxonomy-Picker.aspx 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, August 06, 2010 1:55 PM | Feedback (2)

Thursday, August 05, 2010 #

Visual Upgrade failed. The default master page for this user interface could not be found at "/sites/xxx/_catalogs/masterpage/v4.master". Add the requested master page at this path and try again.

Problem:

After a database detach upgrade from 2007 to 2010, you try to do a visual upgrade and get this message:

 
 
Visual Upgrade failed. The default master page for this user interface could not be found at "/teams/xxxxx/_catalogs/masterpage/v4.master". Add the requested master page at this path and try again.

 

Troubleshoot issues with Microsoft SharePoint Foundation.

Correlation ID: a4ead41e-8c93-4d9d-ae0e-580902b71714

Problem:

It is looking for a masterpage that isn't in the 2010 library.

Solution:

In short, add it to the library.  To do this:

1. Go to the upgraded 2010 site, and make a subsite

2. Download a copy of the v4.master page. (Site Settings, Galleries, Master Pages)

3. Go to the upper level (or any site where the error is) and upload the copy of the v4.master into the master page gallery. (Site Settings, Galleries, Master Pages)

4. Try the visual upgrade again.

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, August 05, 2010 2:29 PM | Feedback (0)

Wednesday, June 02, 2010 #

SharePoint 2007 Enabling Incoming Email Error

Symptom:

When configuring incoming e-mail, the e-mails come through just fine if the server name is in the e-mail address:

mylist@servername01.fqdn.com but when you change it to a vanity name mylist@sharepoint.fqdn.com, the message is bounced back and you get this error:

Delivery has failed to these recipients or distribution lists:

test3@sharepoint.fqdn.com
Your message wasn't delivered because of security policies. Microsoft Exchange will not try to redeliver this  message for you.    Please provide the following diagnostic text to your system administrator.

The following organization rejected your message: servername01.fqdn.com.
 
Problem:
The SharePoint server relay rejects the message because it doesn't recognize the name.  You have set it up in Exchange, but you need to set up an alias in the SMTP service on the SharePoint server;
 
Solution:
Configure an Alias Domain

An alias domain is an alias of the default domain. You can set up alias domains that use the same settings as the default domain. Messages that are received by the SMTP Service for an alias domain are placed in the Drop folder that is designated for the default domain.

To configure an alias domain, follow these steps:

  1. Start IIS Manager or open the IIS snap-in.
  2. Expand Server_name, where Server_name is the name of the server, and then expand the SMTP virtual server that you want (for example, Default SMTP Virtual Server).
  3. Right-click Domains, point to New, and then click Domain.
  4. The New SMTP Domain Wizard starts.
  5. Click Alias, and then click Next.
  6. Type a name for the alias domain in the Name box, and then click Finish.
  7. Quit IIS Manager or close the IIS snap-in.

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, June 02, 2010 1:10 PM | Feedback (1)

Friday, May 07, 2010 #

MOSS Search Error: Authentication failed because the remote party has closed the transport stream

http://support.microsoft.com/?id=962928

To resolve this issue, follow these steps:

  1. Stop the Office SharePoint Services Search service. To do this, follow these steps:
    1. Click Start, click Run, type cmd , and then click OK.
    2. At the command prompt, type net stop osearch, and then press ENTER.
    3. Type exit to exit the command prompt.
  2. Download and install the IIS 6.0 Resource Kit Tools. To obtain the IIS 6.0 Resource Kit Tools, visit the following Microsoft Web site:
    http://www.microsoft.com/downloads/details.aspx?familyid=56FC92EE-A71A-4C73-B628-ADE629C89499 (http://www.microsoft.com/downloads/details.aspx?familyid=56FC92EE-A71A-4C73-B628-ADE629C89499)
  3. On each server in the farm that has Office SharePoint 2007 installed, follow these steps:
    1. Click Start, click Run, type cmd , and then click OK.
    2. Navigate to the location of the IIS 6.0 Resource Kit Tools (default location is: C:\Program Files\IIS Resources\SelfSSL)
    3. At the command prompt, type selfssl /s:951338967 /v:1000, and then press ENTER.

      Notes
      • For 64 bit Server, 951338967 is the default ID of the Office Server Web Services certificate.
      • For 32 bit Server, 1720207907 is the default ID of the Office Server Web Services certificate. You can check the ID of Office Server Web Services from IIS.
      • 1000 is the number of days that the certification will be valid.
      • You need to execute the selfssl command on each MOSS Server in the farm which is running a "Office Server Web Services" site.
      • SharePoint partly uses SSL name resolution in the background between farm servers, which users generally do not need to be aware of.
  4. Start the Office SharePoint Services Search service. To do this, follow these steps:
    1. At the command prompt, type net start osearch, and then press ENTER.
    2. Type exit to exit the command prompt.
  5. Download and install the following update to the .NET Framework 3.5 SP1. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
    959209  (http://support.microsoft.com/kb/959209/ ) An update for the .NET Framework 3.5 Service Pack 1 is available

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, May 07, 2010 2:27 PM | Feedback (0)

Tuesday, March 09, 2010 #

SLK opens SCORM package as a ZIP file

Symptom:

After installing SharePoint Learning Kit successfully, (http://www.codeplex.com/SLK), everything works except that the SCORM package (a ZIP extension) is opening as a ZIP file instead of a course. You get the normal ZIP message "Do you want to open or save this file?"

Problem:

The package is zipped at the upper folder level and does not create a manifest that allows SharePoint to recognize it as a SCORM file instead of a ZIP file.

Solution:

Add the contents of the course to the ZIP, not the outer (uppermost) folder.  This creates a ZIP file that SharePoint can recognize as a SCORM package.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Tuesday, March 09, 2010 2:44 PM | Feedback (0)

Saturday, February 20, 2010 #

Enable Enterprise Features Fails on MOSS

When trying to enable Enterprise Features, the page comes up with a "Failed!" result.  (No kidding - they added the exclamation point.)  When you try to activate it again, you get this message:

An existing request to enable the Enterprise feature is in progress. To check the status of this request, go to the Timer Job Status page in Central Administration Operations and check the status of the Office Server Enterprise Features Upgrade Job.

When you check the status, it also says failed. 

To fix this, I just restarted the Timer Service on each server in the farm.  This kick-started the process and the upgrade job finished with success.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Saturday, February 20, 2010 5:29 PM | Feedback (1)

Wednesday, February 17, 2010 #

W3WP.exe process spiking CPU on Windows Server 2003

How to find out what process belongs to which application pool:

http://geekswithblogs.net/WorldofTray/archive/2009/11/05/how-to-determine-which-application-pool-w3wp.exe-belongs-to-on.aspx

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, February 17, 2010 9:54 AM | Feedback (0)

Thursday, January 07, 2010 #

Access Denied when trying to access User Profiles and Properties in SSP

Symptom:

Your account is the farm administrator and has been added to the policy for the SSP, as well as the site collection owner, but when you click on User Profiles and Properties (in the SSP under User Profiles and My Sites), you get "Access Denied"

Problem:

The account has not been added with permissions to manage My Sites.

Solution:

Click on Personalization Services Permissions (in the SSP under User Profiles and My Sites).  Add the account and give Manage User Profiles permissions.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, January 07, 2010 11:08 AM | Feedback (0)

Monday, January 04, 2010 #

Stock Ticker Web Part error - "Unable to contact the yahoo finance web site."

Symptom

The stock ticker Web part found here: http://www.codeplex.com/svstockticker is properly installed and rendering.  But instead of displying the stocks, this message appears: "Unable to contact the yahoo finance web site."  You are able to navigate to the yahoo site just fine, so it is up and running, but just not able to connect through the Web part.

Problem

I found a clue to the answer from Scott Vintinner on one of his blogs. 

He said, "That message usually means that the web server is unable to access the Yahoo web site. The Sharepoint web server downloads the data file directly from the Yahoo website (the client only downloads the chart images from the yahoo web site). Check with your firewall people to make sure that your server can access the Internet. If you use a proxy configuration, you'll need to modify the web.config file to accommodate that (I'm not sure of the steps)."

Solution

I changed the web.config in the virtual directory for the Web application. The default location is here: C:\Inetpub\wwwroot\wss\VirtualDirectories\Your_SharePoint_Site. 

1. Make a backup copy of the web.config.

2. Change this line:

    <defaultProxy>
      <proxy autoDetect="true" />
    </defaultProxy>

to:

    <defaultProxy>
      <proxy autoDetect="false" />
    </defaultProxy>

3. Save the web.config

After this change, I was able to see the stock in the Web part without an issue.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Monday, January 04, 2010 9:39 AM | Feedback (0)

Sunday, December 27, 2009 #

Error editing content source schedule in Microsoft Office SharePoint Server 2007: “Access is denied”

Symptom:

When you try and edit the crawl schedule in MOSS, you get an access denied:

Access is Denied (Exception from HRESULT: 0×80070005 (E_ACCESSDENIED))

Problem:

The wss_wpg doesn't have read/write permissions on the Windows/Tasks folder

http://support.microsoft.com/default.aspx?scid=kb;en-us;926959&sd=rss&spid=11373

Solution:

1. Change attributes of Tasks folder by typing this in a command prompt:

attrib -s c:\windows\tasks 

2. Restart Windows Explorer.

3. Add the wss_wpg account with read/write permissions to the permissions of the folder

4. Change the attributes of the Tasks folder back to a system folder:

attrib +s c:\windows\tasks

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Sunday, December 27, 2009 5:51 PM | Feedback (0)

Turn off custom errors

 

  1. Navigate to the site directory.
  2. Backup web.config.
  3. Open web.config.
  4. Switch Custom Errors off. Search for “customErrors” and set the value to “Off” instead of “On”. You can also set the value to “RemoteOnly” to troubleshoot a production issue.
  5. Enable CallStack. Search for “CallStack” and set the value to “true” instead of “false”.
  6. Save web.config.
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Sunday, December 27, 2009 4:08 PM | Feedback (0)

Tuesday, December 22, 2009 #

“Windows SharePoint Services Web Application" Stuck Starting

Problem:

When adding a server to the farm, the "Windows SharePoint Services Web Application" is stuck in a starting state

Symptom:

In Central Admin, Services on Server, status is "Starting"

Solution:

From the command line:

stsadm -o provisionservice -action start -servicetype SPWebService

You will get this:

Operation completed successfully.

If this is a Web service, IIS must be restarted for the change to take effect.
To restart IIS, open a command prompt window and type "iisreset /noforce".

Service is now started and it is possible to start other services successfully.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Tuesday, December 22, 2009 3:40 PM | Feedback (2)

Error in Upgrade Log: SyncUpgradeTimerJob: sleeping for 10 seconds

Problem:

SharePoint Configuration Wizard stuck at task 8 of 9

Symptom:

This appears in the upgrade.log file:

[SPManager] [DEBUG] [12/22/2009 1:56:15 PM]: SyncUpgradeTimerJob: sleeping for 10 seconds
[SPManager] [DEBUG] [12/22/2009 1:56:25 PM]: SyncUpgradeTimerJob: sleeping for 10 seconds
[SPManager] [DEBUG] [12/22/2009 1:56:35 PM]: SyncUpgradeTimerJob: sleeping for 10 seconds
[SPManager] [DEBUG] [12/22/2009 1:56:45 PM]: SyncUpgradeTimerJob: sleeping for 10 seconds
[SPManager] [DEBUG] [12/22/2009 1:56:55 PM]: SyncUpgradeTimerJob: sleeping for 10 seconds

Solution:

Set the following services to manual startup and shut them off:
 World wide web service
 Microsoft Single Sign-on Service
 Windows Sharepoint Services Search

Restart spadmin and sptimer services

If needed: Command line with C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN>psconfig.exe -cmd upgrade -inplace b2b -wait -force

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Tuesday, December 22, 2009 3:35 PM | Feedback (2)

Friday, December 18, 2009 #

STS command for deploying cab file Web part

Syntax

stsadm -o addwppack

   -filename <file name>

   [-lcid] <language>

   [-url] <URL name>

   [-globalinstall]

   [-force]

   [-nodeploy]

stsadm -o addwppack

   -name <Web Part name>

   [-lcid] <language>

   [-url] <URL name>

   [-globalinstall]

   [-force]

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, December 18, 2009 9:49 AM | Feedback (0)

Friday, December 11, 2009 #

Visual Studio: cablib compress error could not flush cabinet

Symptom: Can't build/deploy WSP in Visual Studio

Error message: cablib compress error: could not flush cabinet

Problem: In the file structure, the WSP has a property of Read-Only.  It can't create a new WSP because it can't overwrite the file.

Solution: Go into the file structure where the WSP gets built and right-click for properties.  Uncheck Read-only and try to rebuild/deploy.

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, December 11, 2009 6:31 AM | Feedback (1)

Thursday, December 10, 2009 #

ASP.NET v2.0.50727 missing in IIS Manager Web Service Extensions

When preparing to install SharePoint, ASP.NET v2.0.50727 must be set to a status of allowed in IIS Web Service Extensions.  If this item is not in the list in IIS, navigate to:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727> or

C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727> for 64 bit

At the command prompt type: aspnet_regiis - i

Go back into IIS Manger and it will show in the list and you can set it to a status of Allowed.

 

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, December 10, 2009 11:00 AM | Feedback (0)

Copyright © Cherie Riesberg

Design by Bartosz Brzezinski

Design by Phil Haack Based On A Design By Bartosz Brzezinski