Pages

Wednesday, November 28, 2007

Sharepoint Timed Job Errors

if your timed jobs are no longer running or even starting, or you notice that Application Server Administration Service Timer Job has failed, or maybe none of your timed jobs are running...


Restart Windows Sharepoint Timer Service in Admin Tools>Services

PHEW!

Tuesday, November 20, 2007

Finding Sharepoint List ID GUID

http://cisa.ca/blogs/medhat/Lists/Posts/Post.aspx?ID=7

Thursday, November 15, 2007

CAML query to return approved documents

http://www.sharepointblogs.com/krayscosp/archive/2004/08/10/using-caml-to-retrieve-sharepoint-event-lists-based-on-dates.aspx#comments

Thursday, November 1, 2007

One or more web parts on this page references a zone that doesn't exist. It has been moved to the

Have you ever gotten this error when dealing with custom page layouts?

"One or more web parts on this page references a zone that doesn't exist. It has been moved to the Closed Web Part Gallery."

and then the web parts disappear from the page?

try checking in/publishing your Page Layout first!

damn!

Using List NewForm.aspx for user submissions w/o showing the List behind it

My task was to create a Comments/Suggestions submission method on a SharePoint site. A great way to implement this is to use a list and capture the "New Item" form you get built in with the list. Just post a link to the form using Source in the url to redirect after submitting the form to whereever you want.

for example:
you have a -
-site: http://mysite
-list: MyList

place a link on the http://mysite homepage http://mysite/Lists/MyList/NewForm.aspx?Source=http://mysite

this link will show the user the form to submit a new item and then redirect them to the page they came from once they hit "OK".

using a list is a great option b/c you can create approval workflows attached to it to notify the correct parties.