| Nick Porter 的个人资料Nick Porter - SharePoint...日志列表 | 帮助 |
|
2006/4/19 Enabling Secure Sockets Layer for SharePoint Portal Server 2003If you are looking at enabling an extranet using SharePoint Portal Server 2003 and need to implement SSL, read this article by Emily Schroeder.
2006/4/6 How to add a Site Template to the Site Definitions List in Windows SharePoint ServicesIt's easy enough to create a new site template in SharePoint, but these templates can only be saved in the top level web sites template gallery and applied to sub sites only.
To add a new option to the list of choices when creating a top level website you need to create a "Site Definition".
This is a far more difficult task but there is a way you can add a site template file (.stp) to the list of Site Definitions using the stsadm.exe command line utility:
1. Create a WSS Site 2. Click on "Site Settings" at the top of the page.
3. Under the "Administration" heading click on "Go to Site Administration"
4. Under the "Management and Statistics" heading click on "Save site as template"
5. Give the template a File Name, Title and Description. Also select if you want the content of the template site included (documents etc).
6. Click "OK"
7. On the following page click on the "site template gallery" link
8. Right click on the name of the template and select "Save target as"
9. Save the file to your local computer
10. Copy the file to your Front end web server (preferably onto your c:\ drive)
11. Click on Start > Run and type "cmd" then hit "Enter"
12. Change to the following directory in the command prompt window:
c:\program files\common files\microsoft shared\web server extensions\60\bin 13. Type the following command:
stsadm.exe -o addtemplate - filename "c:\sitetemplate.stp" -title "Site Template" 14. Hit "enter"
15. type "iisreset" and hit enter
Now your site template will appear in the site definitions list when creating a new top-level website.
2005/9/22 Echo for SharePointEcho is a great product developed by the guys at Winapp Technology.
We have been using this in our production environment for a while now and it certainly saves a lot of time in updating configuration/content across multiple areas/sites.
Say if I wanted to add a web part, or change a view across 1000 of our WSS sites, the out-of-the-box SharePoint process would take a considerable amount of time and effort.
With Echo, it takes me no more than a couple of minutes to apply these changes. An incredible increase in productivity and an excellent ROI. And that's only the start.
More information here:
http://www.winapptechnology.com/products/echo.asp Contact details and a trial version are available on their site.
- Nick Porter 2005/9/15 SharePoint vNextPJ Hough and others – First look at next version of Sharepoint
- Scoble rambles a bit too much about blogging with SharePoint vNext in this video. Would have been nice to see some more stuff on collaboration. Looks good though.
Rob Lefferts – Sharepoint Services and Workflow
Nick Porter
2005/9/9 SharePoint Topics Area - where do I begin?Follow these three simple steps to understanding the "Topics" area in SharePoint Portal Server 2003:
1. Read this:
http://www.othermedia.com/go/Article_28.html (replace the word "Taxonomy" with "Topics Area") 3. Classify your own data (speak to your users - they will tell you how to do this)
Just remember, a "Topics" area (taxonomy) is an evolving process. Don't expect it to be complete on your first attempt.
As your portal expands, so to will your "Topics" area. Nick Porter 2005/9/5 Tech Ed 2005It's been a while since I updated this space!
I just got back from Microsoft Tech Ed 2005 (Australia) which was held in Surfers Paradise.
I had a great time and learnt quite a lot.
It was great to catch up with a lot of the SharePoint people from around Australia and finally put some faces to names!
Some of the highlights of the convention were:
- The keynote speech and seeing some of the awesome technologies coming out of Microsoft.
- Hearing about some of the features in SharePoint v3 (but not as much as I would like to know)
- The party held at Warner Bros Movie World (and the taxi ride home [don't even ask!])
Another thing I wanted to mention was the Sydney SharePoint User Group, which is holding it's third meeting on Tuesday, 20th September. If you are in Sydney, or even just visiting come along.
For more details: http://sps.uniqueworld.net/Sydney/default.aspx
I will try to update this space more regularly, maybe even share details of my never-ending saga with the Portal_Conent index.
(some photos of my past week attached) 2005/5/10 SharePoint prompt for password after changing network password.I have come across an issue (bug?) when using SharePoint (SPS and WSS) with Windows XP. On our network we have a password policy, so users are required to change their password every 45 days. I have noticed a few times now that some users, after changing their network password are then prompted by SharePoint (SPS and WSS) for their credentials. After entering the information 3 times they are given an "Access Denied" error. This was also then performing an AD "Account Lockout" on their account and preventing them from accessing their email and other network services. If the user logged onto a different machine with their new network password there would be no problem accessing SharePoint and no prompt was displayed, which meant the problem was a local issue. It seemed as though the old username and password was being cached somewhere. This issue only seemed to affect some users and not everyone who changed their password. After much investigating I found the cause and a workaround to resolve the issue. Cause: If a user who had ever tried accessing an Area or document library in SharePoint where they didn't have permission, they were getting prompted for their credentials, and the information was being stored in this list. When the user changed their network password after 45 days, then went to log back on to SharePoint, it was still recognising their old credentials from the cached password list, so when they typed their new password it wasn't authenticating, because the passwords matched. To resolve this issue: 1. Click "Start" > "Settings" > "Control Panel" 2005/5/4 Simple SQL Query to return all documentsBelow is a simple SQL Query to return all documents stored in SharePoint and includes the Title, Directory Name, File Name and Size of each document that sits in the database. Use it as a starting point for writing your own queries if you want. I find it comes in handy every now and then. SELECT FROM Docs, UserData WHERE (DoclibRowId > 0) 2005/3/26 IIS 6.0 HTTP Compression for SharePointWow, it has been a while since I posted anything. Been unbelieveably busy, migrating users to SharePoint Portal Server 2003. Last week I migrated about 20,000 Excel workbooks from a corporate file share to SharePoint 2003. The majority of these files were all linked as well, which meant having to write code to programmatically run through all excel workbooks, find any links, replace the link with the new location the file had been moved to on SPS 2003, then update the link. What I really wanted to write about though - is more to do with the performance of SPS/WSS. I was trying to think of some other ways that could marginally improve the performance of SharePoint, especially in regards to the time taken to load an individual page in both an SPS Area and a WSS Site. So I followed the advice not expecting much, but to my surprise, this fairly simple configuration seemed to make quite a dramatic improvement in regards to the time taken to load pages in SharePoint. To cut a long story short - I was so happy with the performance gain on our staging portal that I implemented it on our production portal - and the results are a vast improvement. There is no point in re-inventing the wheel and have me write the configuration steps involved, so if you want to know more about IIS 6.0 HTTP Compression - read about it over on Maurices Blog My advice is - check out IIS 6.0 HTTP Compression for some great performance gains on your SharePoint Portal Server or Windows SharePoint Services installation - but make sure you read up on it first, as wrong configurations can actually have negative effects on performance. I pretty much followed Maurice's article to the letter - except I didn't include .dll and .exe files in the compression of dynamic files. 2005/2/21 Areas Vs SitesI'm back from spending all of last week in Canberra for work... <W00t!> I have read a few articles on this topic and there a few differing opinions on how to use SharePoint Portal Server Areas versus the use of Windows SharePoint Services Sites and there is also quite a bit of confusion on what they are. The reason why there are differing opinions is because not everyones use of Sharepoint is going to be the same. It is an extensible platform and for that reason there is no right or wrong approach to how you should use either Areas or Sites, but there was a concept behind Microsofts design and what their intended purpose was. I thought I would try to explain the concept of Areas and Sites from how I have seen and used them in my day to day experiences. As it has been outlined by Microsoft and by a few other SharePoint Gurus, The idea behing SharePoint Portal Server is, that it was designed to be an aggregator. A place you can go to to find information quickly and easily. There is no point putting ALL of your collaborative documents and lists in a Portal Area, as that would sort of defeat the purpose of what an area was designed for. Windows SharePoint Services Sites are the place to put ALL your documents and lists relevant to a task, business unit, project etc. They are typically refered to as "Team Sites" because you can allow a team of people to "collaborate" all of their work into one central place. Let me try and think of a good analogy for Areas and Sites..... Take for example my old High School Biology text book. You could say that the entire textbook was the portal. Each chapter would be about a different topic - just like each Area is about a different topic or department etc. At the beginning of each chapter there would be a Chapter Summary, which highlighted the most important information that you needed to know about the topic you were viewing. So if you couldn't remember something and had to cram the night before, you would always go to the Chapter Summary and you would then have a general idea of what you needed to know. This is the equivalent to the content displayed in an Area. It is generally the most used or important information to a particular business unit (or department) and is easily accessible from the Area. But how about the rest of the information? The stuff that may not be in the Chapter Summary (Area) but evidently, information that you may need to read. Well this is when you would need to read the chapter itself and in contrast to the portal - you would need to actually visit the WSS site related to this Area, to locate information that may be more relevant to your needs. The WSS site contains all the linking information that you may want to know about. Book = Portal Ok...this was probably not the best analogy - but hopefully, you get my drift :)
Pros and Cons: Areas allow only one level of security across the whole area, where as in a site you can set permissions on indivual Libraries and Lists. Areas are easily located on a portal, where as you will need to know the actual URL, content or have a well designed Site Directory to locate the site. Sites are better for managing external access to (extranet). You probably won't want third parties accessing your portal to look at information in Areas, as the portal is more of a productivity tool for internal use. Having a separate site can allow you to provide access to external resources, and lock down content to a specific level. Hope his cears things up for those who are a little bit confused about Areas and Sites.
2005/2/16 Effective Email ManagementVia 43Folders Not really SharePoint related but still a great article for those who find they are swamped with incoming email and can't seem to keep up.
2005/2/11 Lack of postsHmmm...just got reminded that I haven't really posted anything up here in a while. Been a little busy and have also just started a new job, so haven't had much time to write alot. Got a few ideas on what to write about next - going to try and step away from FrontPage a bit and focus more on the SharePoint Platform. Plus I may put up a couple of downloads which are useful with SharePoint. Hopefully there will be some new content in the next few days.
2004/12/22 Re-arranging links in the SharePoint Quick Launch barSomething that annoys me greatly when you're in a Windows SharePoint Services site is, when you add a link to the quick launch bar, it appears in the order it was added. You have no control over the order in which it is added. You'd think that it would seem more logical to display the links alphabetically rather than, no order at all? The problem with this is, when you want a certain link to a document library or list to appear before another, your only real option in WSS is to remove all the links, then add them back in the order you prefer, but usually once you have them in nice logical ordering, someone decides to create a new document library or list, and you will need to change the order all over again - pretty time consuming and annoying. NOTE:
1. Open Microsoft FrontPage 2003 Synchronizing a Remote Windows SharePoint Services SiteIn my last post I mentioned something about the "Remote Web Site" option in FrontPage 2003. I have found this option really useful, especially when I have two WSS sites residing on different servers, but I want to keep the same documents and/or lists synchronized on both sites. To use the Remote Web Site feature in FrontPage 2003: 1. Open Microsoft FrontPage 2003 12. Once you have made a selection, click on "Publish Web site" and the options you chose will then be published. More information on FrontPage and it's features can be found here Using FrontPage 2003 to view Windows SharePoint Services usage data.One thing I have noticed when dealing with clients is that they like to know what is happening with their SharePoint sites on a regular basis. A lot of people want statistics on a particular site, mostly they want to know who is accessing the site. If you want to know what kind of impact your Web site has, you need to track how many users visit your site, the type and number of hits your site receives, and other site-usage information. Windows SharePoint Services includes features that analyze the usage of your site. Summary and detailed usage reports supply information such as: - Number of page hits for each individual page This is all well and good, but what about taking it a step further? If you have a copy of Microsoft FrontPage 2003, then you can. To open a site in FrontPage, do the following: 1. Click on the "File" menu It will open the site like this. Once the site is open in FrontPage you will notice a few options underneath the list of files and folders. If you click on the "Reports" option you will get a page similar to this. You have a whole lot of options to look at in regards to the site analysis but the one I want to look at is the "Usage Data" option at the top. If you click on the "Usage Data" link you are presented with a few different views: e.g. Date of first data As you can see you get a lot more options than the site usage in WSS site administration. Let's say your boss wants to know how many people have visited the site since it was created and has given you the task of compiling a report to show at the next departmental meeting. Once you're in the "Usage Data" section of the Reports, select "Total Visits" If you right click on any of the white space around the data, you get an option to "Copy Report", which you can then paste directly into Excel. Now this is all well and good, but what about a graphical representation of this data, it's friday afternoon and the last thing you want to do is read a lot of numbers.... Easy.... At the top right hand side you will see a toolbar. Depending on the data you are analysing, you are presented with a number of different charting styles. Select on, e.g. "Area Chart" and it will automatically generate an area chart for you. Very cool. FrontPage has a lot of hidden features which are extremely useful for SharePoint (i.e. Windows SharePoint Services). Hidden meaning - these features are native to FrontPage and not included with SharePoint documentation so if you don't own FrontPage, you will probably never know about them. In my next post I will discuss the "Remote Web site" option in FrontPage, which allows you to synchronize files between a local site and remote site. This option is extremely useful if you have two SharePoint servers in different locations (e.g. countries) but want to keep the same content on each. How to enable Full Text Searching in WSS when it fails:Have you ever been using Windows SharePoint Services and the search functionality will just fail and not return any results at all? I have seen this problem a few times and experienced it myself. If the full text search functionality fails, do the following: Note: Backup your registry before trying any of the following steps! 1. Open the Registry Editor (RegEdit) If you have not previously installed SQL Server SP4 continue at step 4. 4. Run the SQL Server 2000 install program from the CD and run through it until you get to a dialog that asks if you want to "Add components to your existing installation" <Updated to reflect changes in service packs 19/12/2006> |
|
|