Posts

Showing posts with the label crash

WSS 3.0 | SpellCheckEntirePage.js file not found

WSS 3.0 Error: Cannot make a cache safe URL for "SpellCheckEntirePage.js", file not found. Please verify that the file exists under the layouts directory. Don't know why it has gone missing but here's the solution: Go to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\ [your_language_LCID] copy SpellCheckEntirePage.js and SpellChecker.js to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\1033

Upload Multiple Files IE Crash

Image
I have been getting this error after clicking "Upload Multiple Files..." on picture lists in MOSS 2007 So far I haven't found a solution yet but I know this: - The option is only available to IE browsers (specific Internet Explorer feature). - Its not a browser issue, but something regarding Office Instalations and probably Outlook application conflicts. Some claim to have the issue solved by reinstalling office. - If you go to "Upload Picture" instead of "Upload Multiple Pictures", and then, right-click "Upload Multiple Files..." and select "Open in new window", it works like a charm!

SharePoint 2007 | Web Part Maintenance Page | Existing WebPart ID error

Image
- So you're building webparts and the page is crashing? - Are you getting an annoying error that won't allow you to add your webpart saying: "A Web Part with this ID has already been added to this page" - Let's say your site is, for example: "http://myspsite/default.aspx" - You can add "?contents=1" to the browser's adress bar and try to remove some webparts or even all webparts if needed and the error is sure to go away "http://myspsite/default.aspx ?contents=1 " This one is kind of tricky to get to, but you can get it through the browser - "Site Actions" - "View All Site Content" - "Pages" - Hover a page, like "Default.aspx", click the arrow context menu on that file and select "Edit Properties" - On the bottom of the editing page will se an option saying: "Open Web Part Page in maintenance view" Its amazing what you can find on a sharepoint test server homepage Sources...

SharePoint WebPart | Unexpected Error

Image
So you want to create a new web part with custom editable controls in "Modify Shared Web Part" area ERROR: An unexpected error has occurred. Web Parts Maintenance Page: If you have permission, you can use this page to temporarily close Web Parts or remove personal settings. For more information, contact your site administrator. Troubleshoot issues with Windows SharePoint Services. SOLUTION: - Add constructor to editor file, with ID - Make sure your CreationEditorParts() method is returning something - Make sure you add IWebEditable to header and implement the functions public class MyWebPart: System.Web.UI.WebControls.WebParts.WebPart, IWebEditable /* editor part */ public MyEditorPart() { this.ID = "MyEditorPart"; this.Title = "My Editor Title"; } /* main webpart */ #region IWebEditable Members EditorPartCollection IWebEditable.CreateEditorParts() { try { List editors = new List (); ...

SharePoint CRASH | 503 Service Unnavailable

All your SharePoint Sites (Central Admin included) are 503 error crashing? - This may have happened because of conflicting features and other server changes. - You also probably moved your notebook to another location, or changed your connection do Internet/Network. As a result, SharePoint will not recognize the previously configured address at C:\windows\system32\drivers\etc\hosts file If you just add [Active_Network_IP] [Your_computer_name] to the hosts file, it is very likely that you have your problem solved. If not, follow these steps: 1) C:\windows\system32\drivers\etc File: "hosts" Delete line: your_ip your_pc # Added by Office SharePoint Server Search (your_date your_time). 2) Start, Run, "Services.msc" Stop and Start: - Windows SharePoint Services Search - Office SharePoint Server Search 3) (I think this one is optional, you can try skipping it) Control Panel, Network devices, Network Device (lan, wan) Desactivate IP v6 (checkbox) 4) Start, Run, "inetm...