|
I had created Share point intranet site using sharepoint foundation 2010. How can i host in public shared server to make public access?
Can u Help by step by step???
Thanks in Advance
Karthick.RR
|
|
|
|
|
As far as I know there is no out-of the box way to publish a sharepoint foundation server site with public. Therefore are the internet server editions of sharepoint. For using sharepoint foundation public sites you need to have MS Internet Connection License.
Perhaps take a look at: Can I use SharePoint 2010 Foundation as a public facing site?[^]
|
|
|
|
|
I am unable to delete pages from my website. I went to site settings and chose "sites and workspaces" , however upon trying to delete the page,I got an error message stating " There is no web named /(name of my page) "
Please help ...
|
|
|
|
|
A page isn't a website, so the way is wrong. If you want to delete a page than open that page, choose "site" in the ribbonbar and there you can use "delete site / page" to delete it (I'm not totally shure about the naming because I use the german edition).
There are differences between WebSiteCollections, WebSites, Sites and Pages in SharePoint (Google gives further informations) so you must be shure what kind of element you want to delete to get the proper way.
|
|
|
|
|
Just goto sitepages select your page and delete.
Sometimes it happen it shows it cant be deleted or similar kind of error try refresh and try deleting now.
If still facing problem do reply.
|
|
|
|
|
Hi All,
First time poster here so I hope I haven't messed my post up...
I am currently using Sharepoint at work with a third party web part that utilises CAML for queries. things so far have been going well until I ran into my latest problem which I cannot solve and hope that someone out there could lend some assistance.
Requirement is:
"Action 1 due date" to be less than "Today" AND the Status not equal to "Completed"
OR "Action 2 due date" to be less than "Today" AND the Status not equal to "Completed"
This pattern will carry on for all four actions. I can get it to partially work but it seems to disregard the Or clause.
Thank you all in adavance.
<Query>
<Where><And><Or><And><Or><And><Or><And><Lt><FieldRef Name="Action One Due Date" />
<Value Type="DateTime">
<Today/></Value></Lt>
<Neq><FieldRef Name="Action One Status" />
<Value Type="Text">Completed</Value></Neq>
</And><Lt><FieldRef Name="Action Two Due Date" />
<Value Type="DateTime">
<Today/></Value></Lt></Or><Neq><FieldRef Name="Action Two Status" />
<Value Type="Text">Completed</Value></Neq></And><Lt><FieldRef Name="Action Three Due Date" />
<Value Type="DateTime">
<Today/></Value></Lt></Or><Neq><FieldRef Name="Action Three Status" />
<Value Type="Text">Completed</Value></Neq></And><Lt><FieldRef Name="Action Four Due Date" />
<Value Type="DateTime">
<Today/></Value></Lt></Or><Neq><FieldRef Name="Action Four Status" />
<Value Type="Text">Completed</Value></Neq></And></Where></Query>
|
|
|
|
|
|
Hi,
I downloaded the CAML tool but am unable to use it because the CAML is referencing a list aggregation via a third party plugin (Bamboo Solutions Alerts Plus).
There is a CAML builder within the plugin which I use but it doesn't like the nested operators.
I do like the builder though for standard lists 
|
|
|
|
|
Check if this would work:
<where>
<Or>
<And>
<Lt>
<FieldRef Name='Action 1 due date' />
<Value Type='Text'>Today</Value>
</Lt>
<And>
<Neq>
<FieldRef Name='Status' />
<Value Type='Text'>Completed</Value>
</Neq>
</And>
</And>
<Or>
<And>
<Lt>
<FieldRef Name='Action 2 due date' />
<Value Type='Text'>Today</Value>
</Lt>
<And>
<Neq>
<FieldRef Name='Status' />
<Value Type='Text'>Completed</Value>
</Neq>
</And>
</And>
<And>
<Lt>
<FieldRef Name='Action 3 due date' />
<Value Type='Text'>Today</Value>
</Lt>
<And>
<Neq>
<FieldRef Name='Status' />
<Value Type='Text'>Completed</Value>
</Neq>
</And>
</And>
<And>
<Lt>
<FieldRef Name='Action 4 due date' />
<Value Type='Text'>Today</Value>
</Lt>
<And>
<Neq>
<FieldRef Name='Status' />
<Value Type='Text'>Completed</Value>
</Neq>
</And>
</And>
</Or>
</Or>
</Where>
|
|
|
|
|
Hi Manohar and others,
I ended up utilising the CAML builder and cleaned the query up in Notepad++.
I tested it and it works well but unfortunately I ran into another problem
If "Action One Due Date" is greater than today and status = "completed" it stops and doesn't continue on to the next actions to apply the rule. Is there a different way to go about this?
<Query>
<Where>
<And>
<Lt>
<FieldRef Name="Action One Due Date" />
<Value Type="DateTime"><Today/></Value>
</Lt>
<Or>
<Neq>
<FieldRef Name="Action One Status" />
<Value Type="Text">Completed</Value>
</Neq>
<And>
<Lt>
<FieldRef Name="Action Two Due Date" />
<Value Type="DateTime"><Today/></Value>
</Lt>
<Or>
<Neq>
<FieldRef Name="Action Two Status" />
<Value Type="Text">Completed</Value>
</Neq>
<And>
<Lt>
<FieldRef Name="Action Three Due Date" />
<Value Type="DateTime"><Today/></Value>
</Lt>
<Or>
<Neq>
<FieldRef Name="Action Three Status" />
<Value Type="Text">Completed</Value>
</Neq>
<And>
<Lt>
<FieldRef Name="Action Four Due Date" />
<Value Type="DateTime"><Today/></Value>
</Lt>
<Neq>
<FieldRef Name="Action Four Status" />
<Value Type="Text">Completed</Value>
</Neq>
</And>
</Or>
</And>
</Or>
</And>
</Or>
</And>
</Where>
</Query>
<pre lang="xml">
|
|
|
|
|
Hi
I have an adf file (BDC model)uploaded in central admin. And now i am trying to access an entity with business data item webpart and in the tool pane, selected the entity and when trying to provide value to item, i am getting error.
When i checked in logs, i got the below error
Child TypeDescriptor with Name 'Rows' and Id '27822' exists at a path containing a TypeDescriptor with Name 'DataSet' and Id '27819', representing a Collection, which creates an ambiguity for reflection.
Please guide me on how i can proceed further. I am using webservice as datasource.
Thanks
Naina
Naina
|
|
|
|
|
 Hi
I have got it fixed. Below is the solution i found
<Parameters>
<Parameter Direction="In" Name="OrderId">
<TypeDescriptor TypeName="System.String" IdentifierName="OrderId" Name="OrderId" />
</Parameter>
<Parameter Direction="Return" Name="WorkOrder Dataset">
<TypeDescriptor TypeName="System.Data.DataSet, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Name="DataSet">
<TypeDescriptors>
<TypeDescriptor TypeName="System.Data.DataTableCollection, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" IsCollection="true" Name="Tables">
<TypeDescriptors>
<TypeDescriptor TypeName="System.Data.DataTable, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Name="Table">
<TypeDescriptors>
<TypeDescriptor TypeName="System.Data.DataRowCollection, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" IsCollection="true" Name="Rows">
<TypeDescriptors>
<TypeDescriptor TypeName="System.Data.DataRow, System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Name="DataRow">
<TypeDescriptors>
<TypeDescriptor></TypeDescriptor>
</TypeDescriptors>
</TypeDescriptor>
</TypeDescriptors>
</TypeDescriptor>
</TypeDescriptors>
</TypeDescriptor>
</TypeDescriptors>
</TypeDescriptor>
</TypeDescriptors>
</TypeDescriptor>
</Parameter>
</Parameters>
<MethodInstances>
<MethodInstance Type="SpecificFinder" ReturnParameterName="WorkOrder Dataset" Name="GetMaintenanceWorkDetails" ReturnTypeDescriptorName="DataRow" ReturnTypeDescriptorLevel="4" Default="true" />
</MethodInstances>
In the above code, i have not given the attribute returnTypeDescriptorName and ReturnTypeDescriptorLevel.
Giving the above parameters fixed the problem.
Thanks
Naina
Naina
|
|
|
|
|
I'm trying to use a Sharepoint Calendar to track the availability of Meeting Rooms. I've added the list of rooms to the Resource list and I've created a Calendar list with the 'Use this calendar for Resource Reservation' option set to 'Yes'. The problem is, every time I load the page, I have to manually select and add the resources. Is there any way to make them appear by default? Also, how can I ensure that a booking made by Person A is not deleted by Person B?
I'm using Sharepoint 2010 Foundation.
|
|
|
|
|
Hi All
I new to sharepoint 2010 , I want to find no of visitors in website using sharepoint 2010.
Please provide me your suggestion,,
Thanks in advance!
Failure is Success If we learn from it!!
|
|
|
|
|
|
Hi team,
I need to display all server information into sharepoint dashboard means OS details and wat softwares installed like that. Its very urgent help me as soon as possible.
|
|
|
|
|
First: I don't think you want a Dashboard or does the Server-Information changes every day? A dashboard is a normally grafical optimized output for displaying events and changes of data, a tool for displaying complex sets of indicators oder a set of controls with data and functionality.
So we speak of an information output not a dashboard. Therefore a Site or a Webpart would be good. You can programm a WebPart with VS.Net and display the Server Informations.
How to get Server-Informations?
You can use WMI (http://msdn.microsoft.com/en-us/library/windows/desktop/aa394587%28v=vs.85%29.aspx[^].
Take a look at google: WMI[^]
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
Thanks for u r Reply ihoecken.I need Sysytem information create on Visio diagram and publish as Sharepoint dashboard, I need step by step pls help me. If that dash board should display on browser also great. pls help as soon as possible.
Thanks & Regards
Veera
|
|
|
|
|
|
Hi
http://www.scom2k7.com/wp-content/uploads/2012/05/image3.png
You can go on above url that will display one inmg, I need that type of dashboard. So pls go through on help as soon as possible.
Regards,
Veera
|
|
|
|
|
Okay, so this is breaking my brain.
I have developed a Sharepoint solution with about 15 webparts for a client.
This site has been up and running for about a year and a half, and so far all good.
They have a QA site and then a production site, but one heck of a timeline between deployments, so recently they have given me a "Test" server that I can deploy to whenever I want for interim testing purposes.
This too, was all good for about two months.
Then BAM, Sharepoint did its thing.
The site is an enterprise WIKI so we create and edit an publish article pages.
All of a sudden the "Edit Article" link is missing for me. But for me only. No one else.
I can go "Site Action >> edit page" but when I go into edit mode or type in the edit URL, then most of my functionality is disabled.
I am web admin.
I am site admin.
I have full control on the site itself.
Whaaaaat the heck?
Anyway, any help would be appreciated.
So far, the universe is winning.
|
|
|
|
|
Yes, well. I have no idea.
It sounds like you have crashed the site. Perhaps you should test on a new WSC if it still appears.
It's hard to get the problem without taking a deeper look in the site settings. I have ascertained that most times such problems depends on
- site corruption - a new site is needed
- a access problem you might be site-admin, but some rules are wrong
- a problem with your browser
- a wrong hotfix - some have been withdrawn, because after installation some features aren't working
To detect what the problem is:
- test on a new empty website (or WSC)
- test with another user, take a deeper look into the rules
- try another browser (I had the phenomenon that one feature wasn't accessable with IE and I had to use FF)
- install another, newer hotfix
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
I was also having the same issue in one of my project. That time the issue was in the Master Page HTML.
Accidently I left one HTML tag open and it was causing the malfunctioned HTML rendering. So just to help you on lead…
Is the Site Master Page Changed recently or Can you please check whether the Master page has well-formed HTML?
|
|
|
|
|
Hello,
I have a simple feature to add a CustomAction Link to the site action menu. The feature is scoped "Site". For some reason, The link shows up on the root site collection only before the feature is activated and when I activate the feature on all site collections using PS Script, the link will be duplicated on that site collection. I have attached the Element.xml if it helps, I would appreciate if you can point me what I am doing wrong or trouble shoot this issue?
<?xml version="1.0" encoding="utf-8" ?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="XXXXX="101" Url="up">
<File Url="Pages\EditProfile.aspx" Name="EditProfile.aspx" Type="Ghostable"></File>
</Module>
<CustomAction
Id="UserProfileUpdateLink" Title="Edit User Profile" Description="Edit or Update your profile information and password."
GroupId="SiteActions"
Location="Microsoft.SharePoint.StandardMenu"
ImageUrl="/_layouts/images/ApViewProps.gif"
Sequence="1000">
<UrlAction Url="/up/EditProfile.aspx" />
</CustomAction>
</Elements>
|
|
|
|
|
any 1 have any idea how To fetch data from repeating table of infopath 2013 form to sharepoint list 2010
plz help me out..
thanks in advance
regards,
vanita
modified 16-Jul-13 4:48am.
|
|
|
|