Document Libraries
Is there any way or application that integrates with Windows Services to
allow for setting of permissions at the folder or document level in the
document libraries? Tag: Permissions Tag: 26761
PDF & WSS
I want to 1) be able to save pdfs from within Adobe to my WSS site, and 2)
to be able to open them in WSS by using a similar menu when opening an
office document. It seems that WSS is Office aware and offers me the choice
to open the document in Word, Excel, etc, but not for pdfs. For those I
have to just click on the link to open the pdf, then can't save it back to
the site. Tag: Permissions Tag: 26760
Customize Status Values
Can the default list provided in the Status field be customized beyond
"draft", "pending approval" and "approved"?
THanks in advance. Tag: Permissions Tag: 26758
Link to Outlook doesn't exist ....
One of my users doesn't have this link for Events. She has administrative
rights for this server. What is responsible for this ???
Please help. Tag: Permissions Tag: 26757
Calculated Values not working
I have been looking for information about how to create a concatenated field
by using the 'Calculated Value' option for a text field. My goal is to have
a field that automatically concatenates [Company] & " - " & [First Name] & "
" & [Last Name]. All attempts thus far have resulted in the following error
page:
The formula contains reference(s) to field(s).
(Isn't this the whole point of a concatenation?) Tag: Permissions Tag: 26750
Issues with Project Server 2003 and Share Point on Server 2003
Hello,
I have a bit of a problem. I botched an origional install of Project Server
2003 and Share Point on a Server 2003 machine. After realizing I had made
several mistakes I tried to clean up my mess by uninstalling everything so I
could get a clean start. During the process I must have done something out
of order since now I can't uninstall or install Project Server. Each time I
do so it
automaticly goes into uninstall mode and then gives me the following message;
"Installation ended prematurely because of an error."
Does anyone know how I can work around this problem short of completely
redoing the OS?
Thanks,
Doug Tag: Permissions Tag: 26749
Moving front end to new server
I have a wss site on an old server that is using a remote sql database. I
need to move the front end to a new server, but I will keep the data on the
existing sql server. What do I need to tell the stsv2 install? Tag: Permissions Tag: 26748
How to reinstall WSS onto SBS 2003
Hi
Somehow our WSS has become corrupted with a CS0007: Unexpected common
language runtime initialization error -- 'Class not registered error. No
matter i do i cannot resolve the problem.
I deceided to uninstall WSS from the server (we have a full backup of the
sites and databases) reboot, and reinstalll WSS from the download site.
But i still get the CS0007: Unexpected common language runtime
initialization error -- 'Class not registered error.
I now want to reinstall WSS from the SBS 2003 install wizard but i dont have
a clue on how to do this (to recreate companyweb etc..)
Tasks that i have done:
c:\windows\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
regsvr32 c:\windows\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll
synciwam.vbs
Installed lastest .Net SP
Please help, my customers are constantly on my back
Many Thanks in advance
James Tag: Permissions Tag: 26747
Saving List Data in another database
HI,
I wish to store the data entered in a List into a seperate SQL table.
Is this possible ? Any advices will be of great help.
thanks in advance
regards
PV Tag: Permissions Tag: 26746
Permissions Issue
I have WSS running on Server 2003.
The problem is that no matter what group I assign a user to:
Administrator
Web Designer
Contributor
Reader
The user ends up with Full (Administrator) Rights.
What am I doing wrong?
Thanks in advance. Tag: Permissions Tag: 26745
users permissions issue
I use a task list. When I "modify settings and columns"- "change permissions
for this list"- "modify item-level security" and on "item-level permissions"
I select Read access:only their own, edit access:only their own, for a user
who is in contributor site groups still can read and edit all other posts.
Can you guide me ?
Thank you Tag: Permissions Tag: 26742
Moving wss from a full drive
Hi,
I want to move wss instalation from a full drive to another bigger drive.
Which are the best practices ?
Thank you. Tag: Permissions Tag: 26739
How can I allow om\nly specific user to see in WSS ?
As I see on document by default user in AD cannot access WSS unless already
assign user right in WSS (via Site group) and right ogf Guest Site Group is
none.
But in my WSS no have Guest Site Group. And User who login WSS by no user
right assigned will get administrator right. Homw can I mange this.
Thank you
B Aung Tag: Permissions Tag: 26738
Disabling menu in sharepoint list
Hi,
Can any one tell me how to disable options like view,edit etc in a share
point list?
ie if the user logged in as a reader,and try to edit items he'l get an error
message
"Access denied. You do not have permission to perform this action or access
this resource. You can request below that the owner give you access to the
resource."
Instead of this error,i dont want the user to see the menu options...
Pls help....
Thanks
Anu Tag: Permissions Tag: 26728
keep username and password
Hi,
I want to know can we create site or workspace with user name and password
.;
suppose we have created site for any employee which can access that site
with providing user name and password
when the employee want to open his sharepoint site he must provide user name
and password then site will open .
regards
basim alvi Tag: Permissions Tag: 26726
connectionString encryption decryption issue
Hello,
I have a ASP.NET web application problem involving the data encryption and
decryption assembly(DLL) used on the connection string value that is set in
the webconfig file.
The problem occurs in the application when you instantiate a new instance of
the class as shown below:
---Dim dp As DPAPIComp.DataProtectorComp = New DPAPIComp.DataProtectorComp---
where DPAPIComp is the name of the namespace referenced to in the library
and DataProtectorComp is the class. This class contains the Encrypt and
Decrypt function used to encrypt and decrypt the connection string pass to
it.
Below is the code responsing to the call above. (in the form of an assembly)
using System;
using System.EnterpriseServices;
using System.Security.Principal;
using System.Runtime.InteropServices;
using DataProtection;
namespace DPAPIComp
{
public class DataProtectorComp: ServicedComponent
{
public byte[] Encrypt(byte[] plainText)
{
DataProtector dp = new DataProtector( DataProtector.Store.USE_USER_STORE );
byte[] cipherText = null;
try
{
cipherText = dp.Encrypt(plainText, null);
}
catch(Exception ex)
{
throw new Exception("Exception encrypting. " + ex.Message);
}
return cipherText;
}
public byte[] Decrypt(byte[] cipherText)
{
DataProtector dp = new DataProtector( DataProtector.Store.USE_USER_STORE );
byte[] plainText = null;
try
{
plainText = dp.Decrypt(cipherText,null);
}
catch(Exception ex)
{
throw new Exception("Exception decrypting. " + ex.Message);
}
return plainText;
}
public DataProtectorComp()
{
}
}
}
--------------------------------------------
The error message as it passes this line in the debugger is "Access is
denied".
Source: "mscorlib"
StackTrace: " at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32 errorCode,
IntPtr errorInfo)
at System.EnterpriseServices.Thunk.Proxy.CoCreateObject(Type serverType,
Boolean bQuerySCInfo, Boolean& bIsAnotherProcess, String& uri)
at
System.EnterpriseServices.ServicedComponentProxyAttribute.CreateInstance(Type
serverType)
at
System.Runtime.Remoting.Activation.ActivationServices.IsCurrentContextOK(Type
serverType, Object[] props, Boolean bNewObj)
at BoardroomBookings.DBConnection.GetConnectionString(String Name,
String& CnnStr) in C:\Inetpub\wwwroot\BoardroomBookings\DBConnection.vb:line
14" String
--------------------------------------------
I have tried placing the DLL in the GAC and giving it a strong name and that
still give the same error message. The DPAPI solution was built successfully.
Would this indicate that there is some sort of permission being applied to
the encryption/decryption call because I cannot connect to the server.
How do I get it to instantiate this probably and be able to connect to the
database.
Cheers,
Please note the same version works on the server but does not work on my
local workstation. Does this tell you something? Tag: Permissions Tag: 26714
Data Encrypt/Decrypt - Instantiating DPAPIComp.DataProtectorComp
Hello,
I have a ASP.NET web application problem involving the data encryption and
decryption assembly(DLL) used on the connection string value that is set in
the webconfig file.
The problem occurs in the application when you instantiate a new instance of
the class as shown below:
--------------------------------------------
Dim dp As DPAPIComp.DataProtectorComp = New DPAPIComp.DataProtectorComp
--------------------------------------------
where DPAPIComp is the name of the namespace referenced to in the library
and DataProtectorComp is the class. This class contains the Encrypt and
Decrypt function used to encrypt and decrypt the connection string pass to
it.
Below is the code responsing to the call above. (in the form of an assembly)
--------------------------------------------
using System;
using System.EnterpriseServices;
using System.Security.Principal;
using System.Runtime.InteropServices;
using DataProtection;
namespace DPAPIComp
{
public class DataProtectorComp: ServicedComponent
{
public byte[] Encrypt(byte[] plainText)
{
DataProtector dp = new DataProtector( DataProtector.Store.USE_USER_STORE );
byte[] cipherText = null;
try
{
cipherText = dp.Encrypt(plainText, null);
}
catch(Exception ex)
{
throw new Exception("Exception encrypting. " + ex.Message);
}
return cipherText;
}
public byte[] Decrypt(byte[] cipherText)
{
DataProtector dp = new DataProtector( DataProtector.Store.USE_USER_STORE );
byte[] plainText = null;
try
{
plainText = dp.Decrypt(cipherText,null);
}
catch(Exception ex)
{
throw new Exception("Exception decrypting. " + ex.Message);
}
return plainText;
}
public DataProtectorComp()
{
}
}
}
--------------------------------------------
The error message as it passes this line in the debugger is "Access is
denied".
Source: "mscorlib"
StackTrace: " at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32 errorCode,
IntPtr errorInfo)
at System.EnterpriseServices.Thunk.Proxy.CoCreateObject(Type serverType,
Boolean bQuerySCInfo, Boolean& bIsAnotherProcess, String& uri)
at
System.EnterpriseServices.ServicedComponentProxyAttribute.CreateInstance(Type
serverType)
at
System.Runtime.Remoting.Activation.ActivationServices.IsCurrentContextOK(Type
serverType, Object[] props, Boolean bNewObj)
at BoardroomBookings.DBConnection.GetConnectionString(String Name,
String& CnnStr) in C:\Inetpub\wwwroot\BoardroomBookings\DBConnection.vb:line
14" String
--------------------------------------------
Would this indicate that there is some sort of permission being applied to
the encryption/decryption call because I cannot connect to the server.
How do I get it to instantiate this probably and be able to connect to the
database.
Cheers,
Please note the same version works on the server but does not work on my
local workstation. Does this tell you something? Tag: Permissions Tag: 26712
Anonymous access - can't get rid of logon box
Hi,
I have turned Anonymous access on in IIS and I have enabled Anonymous access
in WSS admin so that anonymous users can access the entire site. This is
intened to be a public web site, but certain features require certain users
to "sign in".
So far so good. The issue is that when I go to the site, the logon box
always appears. I can click cancel and navigate the entire site, but each
mouse click brings up the logon box and another mouse click to cancel.
Is this just an IE browser setting or is there something in IIS and/or WSS
that requires more tweaking?
Thanks,
Mitch Tag: Permissions Tag: 26707
Dynamic menu
Hello,
I have generated a working version of the dynamic menu from
(http://www.wssdemo.com/Pages/Menu.aspx?menu=Articles) and also incorporate
the highlighted link-click from Jim Duncan's article so it has a nice user
friendly effect.
To enhance on this model, does anyone know how to keep the menu in a
collapse state after you click on a selected item in the menu?
That is, the sub-menu items are shown depending on which menu you click on.
Ian? Tag: Permissions Tag: 26706
anonymous discussion boards
Is there a better way to create an anonymous discussion board than from
microsofts way of creating one
(http://office.microsoft.com/en-us/assistance/HA010990371033.aspx) ?
I think if another user wanted to they can create there own personal view
and see who is posting. Tag: Permissions Tag: 26704
WSS on server with Act 7
Hi All,
I'm about to install WSS on a server that's running Act 7. Act installed
SQL2000. Should I have WSS use the same installation of SQL? I assume I'll
be prompted for this during install?
Thanks.
JV Tag: Permissions Tag: 26702
iisreset failed
Running Windows 2003 Server Enterprise Ediion...
Just installed Sharepoint Windows Services...however when the iisreset
script ran I got the following error..."Restart attempt failed. IIS Admin
Service or a service dependent on IIS Admin is not active. It most likely
failed to start, which may mean that it's disabled." I went into services
and IIS Admin is started Tag: Permissions Tag: 26700
Publish aspx files for Lists
Hello,
I changed a lot of aspx files on our development server direct under
the List "Folder" entry in frontpage.
After I published this aspx pages using frontpage to the productive
server these pages are almost empty - all webparts are missing. I use
custom webparts too.
If I restore the content db, everything works, but I have to update
the prod enviroment incrementally.
Aspx (webpart) pages - containing standard or custom webparts -
outside the list "folders" are published 100% ok.
Any hints for me?
Thank you a lot!
Michael Tag: Permissions Tag: 26699
Site Collection Space Usage?
Does anyone know what tool I can use to determine the total amount of
disk space a site collection is using? I've had mixed results with the
"View storage space allocation" top-level site administration tool.
Thanks,
Tim Tag: Permissions Tag: 26697
Site Definition Mis-match
I've created 5 custom site definitions. This all works great except
for the creation of custom pages. (I've included the webtemp.xml file
below.)
For example, if there is a WSS site built on STSeBrndB (1005) and a
user creates a new Web Part Page through the browser, they will get a
page based on the STSeBrndL (1000) site definition. I've checked the
pages in the ...\60\TEMPLATE\1033\STSeBrndB\DOCTEMP\SMARTPGS and they
are correct. If I modify the files in
...\60\TEMPLATE\1033\STSeBrndL\DOCTEMP\SMARTPGS then the pages do alter
their apperance accordingly even though the site is based on STSeBrndB
(1005).
This same problem will occur regardless of which of my custom templates
the site is based upon. The custom pages will always follow the
STSeBrndL (1000) site definition. All the other pages in the site work
as expected. It's just the custom web part pages. Ideas?
Here's my WEBTEMPeBranding.XML file contents (truncated on right)
<Templates xmlns:ows="Microsoft SharePoint">
<Template Name="STSeBrndL" ID="1000">
<Configuration ID="71" Title="eBranding Light" Hidden="FALSE"
ImageUrl="/_l...
</Configuration>
</Template>
<Template Name="STSeBrndM" ID="1001">
<Configuration ID="72" Title="eBranding Medium" Hidden="FALSE"
ImageUrl="/_...
</Configuration>
</Template>
<Template Name="STSeBrndR" ID="1003">
<Configuration ID="73" Title="eBranding Rich" Hidden="FALSE"
ImageUrl="/_la...
</Configuration>
</Template>
<Template Name="STSeBrndA" ID="1004">
<Configuration ID="74" Title="eBranding Custom A" Hidden="FALSE"
ImageUrl="...
</Configuration>
</Template>
<Template Name="STSeBrndB" ID="1005">
<Configuration ID="75" Title="eBranding Custom B" Hidden="FALSE"
ImageUrl="...
</Configuration>
</Template>
</Templates> Tag: Permissions Tag: 26694
Document Library Eventhandler and Delete Event
Hi!
I'm writing an eventhandler for a document library that writes some of
the data that a user provides when creating or uploading a file.
When ctahcing the Insert or Update events I get the file using
Microsoft.SharePoint.SPWeb web = listEvent.Site.OpenWeb();
Microsoft.SharePoint.SPFile file = web.GetFile(listEvent.UrlAfter);
Then the ListItem via file.Item
Problem is, when catching the Delete Item, I get the file through
Microsoft.SharePoint.SPWeb web = listEvent.Site.OpenWeb();
Microsoft.SharePoint.SPFile file = web.GetFile(listEvent.UrlBefore);
And item.List is null;
How do I get the ListIte data when catching a delete event?
Thanks in advance, Philipp Lenz Tag: Permissions Tag: 26681
Removing a meeting in a meeting series
Is there anyway I can remove a meeting in a meeting series? A user created
two meetings with the same date and now we're not able to remove it.
TIA,
Jackson Tag: Permissions Tag: 26680
installation problem
I am trying to install Sharepoint to work with SQL and be Active Directory
integrated. I follow all the instructions from the help file, but when I try
to extend a virtual server it says it can't complete the operation.
When I try to access the newly extended site, I am prompted to sign in, and
then I get a blank page with this text:
"The Web site that is referenced here is not in the configuration database."
Any thoughts? I feel like I am missing something simple. I have used
Sharepoint with MSDE, and even succesfully updated MSDE deployments to SQL.
Just can't get it a fresh install working. Tag: Permissions Tag: 26678
Error creating Site form custom template
Hi,
I have installed some site custom templates in SPS.
From Sites Area in SPS 2003, whenever I try to create a new site I received
an error: file not found.
I tried to see any logs in event viewer, in SPS log files, etc. but I didn't
found any trace.
Do you have any suggestion ?
Thanks a lot in advance
bye Tag: Permissions Tag: 26676
WSS show the The Site does not exist when I try to delete a existing site
Hello. how are you?
I have a problem with Windows Sharepoint Services.
It turns out that I created a first level site and now I want to erase
it and cannot.
I have tried from the administration pages of the own site, from the
central administration page, also I have proved with the tool stsadm
it, and the message of error is the same: the site does not exist
/sites/2003, I do not believe that it has anything in common the fact
that the name is a 2003, but I inform you.
It looks that some incoherence has remained in the Database, because
from the admnistration page, when I indicate the site that I want to
eliminate, it shows me the information of the site on the Confirmation
page: it shows the URL, the title and the description. But when you
click the delte button, samples the message>> the Web does not exist
"/sites/2003". Tag: Permissions Tag: 26671
Sharepoint services vs sharepoint portal server
I'm doing some reasearch for our organisation, which has 35 employees on a
system for document control and projects. I have read pretty much about
Sharepoint, but I'm not quite sure what a organisation of ours size should go
for.
We work very much in projects.
What will best meet our needs, Sharepoint services or Sharepoint Portal
server.??
We already have win 2003 server in house. Tag: Permissions Tag: 26669
CommVault Qinetix for Sharepoint
I am analyzing the possibility of using CommVault Qinetix for
Sharepoint and I have some questions about it,
1. Is possible to restore a complete list (like a discussion panel or
a contact list)?
2. Is possible to restore a complete area on the SPS portal?
3. Can we restore a document library as we can restore a document?
Thank you in advance.
Regards, Tag: Permissions Tag: 26667
Meeting Workspaces + SSL + Outlook
Has anybody got this working? Outlook fails when creating a meeting
workspace on a HTTPS:// sharepoint server is attempted.
Using HTTP and without requires SSL in IIS, and the create meeting works.
Can't find any helpful documentation on Microsoft.com about configuring
office components with SSL sharepoint services servers.
WSS on 2003, and Office 2003 are being used. Any advice would be greatly
appreciated.
jerry. Tag: Permissions Tag: 26665
I Want to know How to upgrade STS to WSS2.0
I have a server with sharepoint team service 2001.Now I have to Upgrade it
to WSS2.0 because I would install project server 2003 on it,and Wss is
needed by project server.
Anyone have a success way to achieve it?
Thanks Tag: Permissions Tag: 26664
SQLAgent is not allowed to run
The SQLAgent service on the Sharepoint SQLServer instance will not start. The
service is starting, and will stop immediately with the error message (in the
agent log file and Application event log): 'SQLAgent is not allowed to run'.
How comes? Tag: Permissions Tag: 26662
Assigning themes to personal views - WSS
Is there a way for a user to assign a theme to a personal view of a
site? Even a page by page assignment would probably be OK since they'd
only have to assign it once. Tag: Permissions Tag: 26656
Fancy layouts like sharepointcustomization.com site
I'm getting all mixed up with the lingo here but I've just realized
that a Template is more like a determined set of webparts for a type
of site (right?).
And a Theme is like CSS and mostly only deals with fonts, colors,
links.
My question is--how do I create fancy layouts like the ones in the
sharepointcustomization.com site or like the ones sold by Coras works.
If these are templates, I still haven't been able to figure out how
to create one after looking at all the usual articles on the Microsoft
site and other internet articles.
Can I create some kind of design in Frontpage with no webparts and
save that as a template then create a Sharepoint site and apply it,
and then insert webparts? Or do I create a Sharepoint site with blank
template and then open it in Frontpage and muck around with the design
in there?
Basically if I designed something in pure HTML how can I use it for a
Sharepoint site? Tag: Permissions Tag: 26653
Uploading Documents or Pictures
I have administrator rights. I can perform all WSS functions for a
particular site but I cannot upload a document to the Document Library or a
picture to the Picture Library. Can add issues, risks, discussions, etc. and
can attach documents to any of those. I get the Log On to Server promt and
then when I cancel, get the "Access denied. You do not have permission to
perform this action or access this resource." Any idea what is going on? We
recently upgraded from Project Server 2002 and this has been a problem ever
since the upgrade. The lab environment is fine, no issues. Of course,
right?! I have compared user rights, etc. on both until I'm bleary-eyed and
cannot locate any differences. HELP!!! Thanks! Tag: Permissions Tag: 26650
Remove the words "Count =" and "Sum ="
I was wondering if anyone has an idea how to remove the words "Count ="
or "Sum =" from a list when you use the Totals group in a view?
Any help will be much appreciated
Thank you in advance
Josh Tag: Permissions Tag: 26646
Can't enable Full Text Search
I have seen many entrys regarding this, but don't see anything that will
solve my problem.
I disabled Full Text Search per the Microsoft instructions for importing a
SPS1.0 site to WSS2.0.
I imported the site fine.
When I went to re-enable Full Text Search, it won't re-enable. Occasionally,
I'll get a Thread was being aborted. Often times, it will just stay on the
blue gear screen with the blue status bar and never finish.
I have read all the WSS FAQ's without an answer.
I have rebuilt all Full Text searches in all the SQL server databases.
I have restarted the services, changed the login for mssearch and MSSQL to
be the same and still cannot find a solution.
Can anyone help please?
Thank You,
--
Edward York
724 Internet Solutions.
SharePoint Hosting Services.
http://www.724hosting.com Tag: Permissions Tag: 26641
Theme - How to determine current theme (API?)
Is there a way to programatically determine what Theme a user currently has
applied? I am wondering how custom web parts can utilize the theme and
associated stylesheets.
TIA
Mark Tag: Permissions Tag: 26621
Document library "missing" pages
I have set up a document library of web part pages on a WSS site that are
actually pages with essenially Page Viewer web parts to show the contents of
news articles from various sources. I added fields to the library to keep
track of the source, date, and several categories that I can use for views.
All of this works fine, but I find that some articles don't show up in the
views or seem to drop out. For example, I created a new page last night for
an article and I could see it listed on the WSS site and open it. I even
did a copy of the category it was in, pasted it to FrontPage, and then
copied to an E-mail message that I send to a group.
This morning, I can still access the web part page via the E-mail links that
I sent out last night and I can see it in the library in FrontPage, but it
no longer appears in any view (all items and several views based on
categories) in the document library.
Can anyone please tell me what is going on here? The document still exists
because I can display it via the link I saved last night, but it no longer
shows up in any view.
There are a little over 200 webpart pages like this in the library and I am
not doing any filtering on the views that I displaying.
Thanks,
Bill Patterson
UW-Madison School of Business Tag: Permissions Tag: 26620
SPS and STS header standardization
I have tried to make all the pages on my intranet have the same look & feel
but i´am having a lot of problems when i try to use the header of SPS.
I have used the AlternateHeader option in the ONET.xml in the /STS/XML
folder and also modified PortalHeader.aspx (which is the default page for
this property, as far as i know) and i even modified the default.aspx in the
/STS folder using this piece of code:
<!-- Banner -->
<%
string alternateHeader = SPControl.GetContextWeb(Context).AlternateHeader;
if (alternateHeader == null || alternateHeader == "")
{
%>
<TR>
<TD COLSPAN=3 WIDTH=100%>
<!--Top bar-->
<table class="ms-bannerframe" border="0" cellspacing="0" cellpadding="0"
width="100%">
.
.
.
.
</table>
</TD>
</TR>
<%
}
else
{
Server.Execute(alternateHeader);
}
%>
But Nothing!! :S, i do not know what to do now. I would apreciate your help.
Thanks! Tag: Permissions Tag: 26618
WSS Contacts List, linked to Outlook, sends bad attachments
We have a Contacts list on a Windows SharePoint Services team web site. The
list includes names and email addresses for all users on our local network.
Users with Office 2003 Professional use the "Link to Outlook" button from the
SharePoint Contacts list to get a linked copy of the list into Outlook.
Outlook checks the linked copy of the list for addresses when users compose
new messages. It's a great feature and it works.
The problem is with attachments sent from an address taken from the linked
Outlook Contacts. When sent to internal users who use Outlook, all is well.
But some of our internal users use Lotus Notes. The same message, when sent
to a Notes user, includes only an attachment called "Winmail.dat" which
contains no useful information. The actual attachment is missing.
More information:
It appears that Outlook is trying use Rich Text Format to send messages to
addresses taken from the SharePoint site. I think that's the specific
behavior I'd like to change but I don't know how.
Our email server is Lotus Domino. Outlook clients connect to it using POP3.
We don't use Exchange. I don't think that's relevant but I thought I'd
mention it, just in case.
Any suggestions, ideas or help will be appreciated. Tag: Permissions Tag: 26616
Different servers, same data
Is it possible to set up Sharepoint and Portal server on separate servers,
both accessing the same data?
I want to set up Sharepoint for extranet access with no access to the
portal, using account creation mode, and have Portal Server on the internal
server, with reader access for domain accounts.
Is this possible? Can you mix and match the account mode to suit the server
it's installed on? Tag: Permissions Tag: 26615
search tool
Hi !
I seek a component webpart which makes a search deepened in the site
sharePoint. A webPart which offers the same possibilities as the
search tool in Windows. For example with the Boolean and research in
the metadata.
Thanks
A.Pilote Tag: Permissions Tag: 26614
SharePoint Services cannot deserialize
An error has occurred.
or
One of the properties of the Web Part has an incorrect format. Windows
SharePoint Services cannot deserialize the Web Part. Check the format of the
properties and try again.
Yes its that dreaded message
i have tryed everything i can ,i have 3 servers all same hardware and same
software all built exactly the same way ,on 2 of them the sharepoint team
sites is fine ,no problems at all ,on the last machine i get the above error
from the very start i can add no web parts ,even the default ones.
server 2003 patched up domain controller,norton corp antivirus, Tag: Permissions Tag: 26613
http://www.microsoft.com/communities/newsgroups/en-us/default.aspx
Yes its that dreaded message
i have tryed everything i can ,i have 3 servers all same hardware and same
software all built exactly the same way ,on 2 of them the sharepoint team
sites is fine ,no problems at all ,on the last machine i get the above error
from the very start i can add no web parts ,even the default ones.
server 2003 patched up domain controller,norton corp antivirus, Tag: Permissions Tag: 26612
Versions with the smae time last midified
Hello, how are you?
I have a problem with versions of a SPFile object.
I have an application that save files in a Document library of a WSS
site. This document library allows versions.
My problem happens when I save the second version. The TimeLastModified
property of the old version is the same of the new version.
My code is this:
if(exists(archive))
{
folder.Files[archive].CheckOut();
//In this moment the TimeLastModified is the old DataTime
SPFile file = folder.Files.Add(archive,bsForDoc,true);
//In this moment the TimeLastModified is the new DataTime
carpeta.Files[archivo].CheckIn("My comment");
}
What is the solution for update a new version?
How can I preserve the correct properties of old versions?
TIA, trallon Tag: Permissions Tag: 26608
Is there any way or application that integrates will allow you to set
permissions to remove the create subsite, but allow to link to a site that
has been created?