 |

|
Okay, I'm trying to debug a site and i can't log into it. Everytime I press F5 and let the debugger run I can't log into the site. Now, I can log into the site any other time, but I just can't when I'm debugging. Any ideas why?
|
|
|
|

|
Can't you log in or aren't you able to access?
Once I had the problem, that I couldn't access while debugging. There was a error in my solutions that wasn't displayed but VS.Net. I think it was a administrative error. I had to change some websiteoptions to get it work again.
------------------------------
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.
|
|
|
|

|
Actually found the resolution and forgot to post it here. Anyway, it was the loopback check issue. It's a known issue from Microsoft, but apparently there is an update that has gone out and set a loopback check in the registry, which made the server keep checking the credentials whenever you tried logging into a site on it.
I'll try to find the actual registry fix and post it here, but if you Google loopback check you should find the fix as well.
|
|
|
|

|
Ah yes! Ok, I use the solution for disabling the loopback check, as I wrote it in my Installation Guide for SP. But as I always turn it off, I never faced the problem yet.
So, yes! I learned something.
------------------------------
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.
|
|
|
|

|
<pre lang="sql">I have to create a Leave approval workflow where User submit leave request 1) Which goes to manager at the same time it get updated in Calendar and also both manager and user received email. 2)When manager approved or reject the request. User should get email whether it reject or approved and also Leave request should get deleted from Calendar If any one could jst tell me regarding simple workflow of approval and rejection will also do.</pre>
|
|
|
|

|
First you should tell us a little bit more about the system you use:
Should it be a solutions, a workflow with SharePoint Designer or do you use a third party tool like nintex?
If you use SharePoint Designer you could draw your workflow with Visio Premium. Just start a SharePoint workflow. You can use the SharePoint-Components for creating or deleting items (such as calendar entries), create tasks and add or remove rights, depending on a state or values.
It's very easy. Same for nintex.
Best: Always start by drawing the Workflow as Diagramm (UML for example or Visio SharePoint Workflow).
------------------------------
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've got some backend code on an app page that I'm using to count objects in a list. When I run the following code:
Dim query As SPQuery = New SPQuery
query.Query = "<Where><Eq><FieldRef Name='PlaneID' /><Value Type='Text'>" & id & _
"</Value></Eq><Where>"
Dim flItems As SPListItemCollection = fuelList.GetItems(query)
Dim count As Integer = 0
count = flItems.Count
Return count.ToString
I run this code from the page using a web method. Through trail and error I have narrowed down the offending code to count = flItems.Count
The method keeps failing and return a status code of 500. Can someone tell me why?
|
|
|
|

|
Aptiva Dave wrote: The method keeps failing and return a status code of 500. Can someone tell me why?
May be flItems is null. Check if flItems is not null, before you set count to flItems.Count.
------------------------------
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 did check for null and also put something into the list that flItems is getting objects from. I'm not sure what is going on, but on top of everything I can't log into the site when I try to debug on the dev server.
|
|
|
|

|
Aptiva Dave wrote: query.Query = "<Where><Eq><FieldRef Name='PlaneID' /><Value Type='Text'>" & id & _
"</Value></Eq><Where>"
There is a "/" missing:
"</Eq></Where>"
------------------------------
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.
|
|
|
|

|
Dang! Looked over that code a hundred times and didn't see that! Thanks!
|
|
|
|

|
Aptiva Dave wrote: Dang! Looked over that code a hundred times and didn't see that! Thanks!
No Problem. I just saw it after you said it doesn't was the test of null.
------------------------------
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.
|
|
|
|

|
hi all,
i have created documentset,inside documentset i have uploaded few documents.
each document is having (type,name,modified,modifiedby,Doc_status,comments fields)
Doc_status column is haveing select,review fields,once the user selects the Doc_status= review , i want to copy the whole documentset in the same location,
My query how to capture the event when Doc_status value changes using object model in sharepoint.
Please guide me , i am new to sharepoint.
Thanks in advance
Sams
|
|
|
|

|
1. Create a new empty SharePoint 2010 project in .NET
2. Add a new EventReceiver to the Project
3. Select the type: Listselementevents
4. Select the Element: your List
5. Select the Events you want to handle.
Implement the code to copy a documentset (did I said, you should never do this ? By the way you mustn't believe me, but read about document handling in SharePoint, there you will read, that I'm right - but it's your decision)
------------------------------
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.
|
|
|
|

|
HI ,
Actually i know only basics,suddenly my manager asked me to do this, i don't know wht to do.
|
|
|
|

|
sai.2012 wrote: Actually i know only basics,suddenly my manager asked me to do this, i don't know wht to do.
Well, of course you should work it out, but perhaps you should talk to the manager and tell him, that he can use SharePoint that way, but SharePoint shouldn't be used that way. Try a little google to find some arguments (prevention against dublicates should be one).
I hope I gave you the startpoint for doing what you manager asked you to do. Feel free to ask more questions.
------------------------------
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.
|
|
|
|

|
Hi all,
I am new to sharepoint,i have created documentset and i have added few documents, if i change the status of the document to 'xxx',then i need to create copy of that documentset.(ex:original documentset name is test,after changing the status i have to create test_review.
how to do that, please if any body knows can you please guide me.
Thanks in advance
Sai.
|
|
|
|

|
sai.2012 wrote: I am new to sharepoint,i have created documentset and i have added few documents, if i change the status of the document to 'xxx',then i need to create copy of that documentset.(ex:original documentset name is test,after changing the status i have to create test_review.
Well that isn't the way you should do it in SharePoint. "Copies" aren't meant to be created, as SharePoint is no FileSystem. You should integrate Versioning and create Minor or Major Versions with the ability to be approved.
Of course you could create a copy (DON'T DO IT) but that would be against the principles of management of documents in SharePoint. You just should have just one instance of every document, best with a global ID. Changes should be maintained due by versioning.
If you still like to create a copy (DON'T DO IT), then you could build a workflow and create a copy (DON'T DO IT) or you could build a solution with an event (DON'T DO IT).
The only reason I see for creating copies is a public archive with a documentset which is build of several documents by automation. But just a copy of an existing documentset should be handled by versioning: There is a public (major) version to read and a internal minor version to change.
SharePoint provides the options to prevent dublicates, which wasn't possible in the filesystem! Use them. Don't create copies!!! (think yourself a hundred more exklamation marks at this point)
------------------------------
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.
|
|
|
|
|

|
Please Telll me
software And Hardware Requirements For SharePoint.
And What are The Steps For It.
Thanks
|
|
|
|

|
It's not easy to answer that without knowing how many people will access and how they will work with sharepoint. It's like asking what engine you need if you buy a new car without knowing your driving style and if you like to pull a trailer.
You need (for SharePoint 2010):
- Windows Server 2008 R2 / 2012
- Optional (but usefull) SQL-Server 2008 R8 / 2012
- Optional MS Office Plus (if you want to provide office services)
- A connection to AD
For SharePoint 2013 you should run Windows 2012 and SQL-Server 2012
Hardware for good working for up to 150 workers:
- 4 Core
- 8 better 16 GB RAM
SQL-Server:
- 2 Core +
- 16 GB RAM
You should perform a farm installation even if you install everything on one machine.
------------------------------
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.
|
|
|
|

|
This is my first question on the forum so feel free to move/delete/refer as necessary.
What's happening is that when you access our new Sharepoint site in our head office, and your security settings are correct, you are prompted to log in once when you open the site and then you can continue on opening other pages and documents with no additional requests for credentials. Totally normal.
Now, if you use an identical computer in another office in a different city (so we have the same credentials, OS, security settings), you are periodically and seemingly randomly asked to log in multiple times while browsing the site. In some cases, you will have to enter your credentials 10 times, one right after the other, before you can continue viewing a page or opening a document. It is extremely disruptive.
Also, if you take that same, identical computer home or to a hotel and try to log on to our Sharepoint site, you'll have no problems. It's like you never left the office. You'll be prompted to log in once when you enter the site and then you won't see the login prompt again.
The Sharepoint machines are located in our head office and the remote offices access the Sharepoint site through a VPN tunnel. The remote office can ping both the main Sharepoint site as well as the the domain controller with no problem.
Has anyone even encountered this problem before? Any and all suggestions will be very welcome!
|
|
|
|

|
eparcey wrote: so we have the same credentials, OS, security settings
I'm not shure if you are right in this point, as it's sound that there are not the same settings. This would be the first point to check: are they really same?
Are you using IE? Are the setting the same? Have you included the pages to secure pages?
Do you use Kerberos?
------------------------------
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.
|
|
|
|

|
ihoecken wrote: I'm not shure if you are right in this point, as it's sound that there are not the same settings. This would be the first point to check: are they really same?
Are you using IE? Are the setting the same? Have you included the pages to secure pages?
We've actually physically moved one of the laptops from our head office to our Toronto office. Works here, works in the hotel but doesn't work in the TO office.
ihoecken wrote: Do you use Kerberos?
And no, we don't use Kerberos.
|
|
|
|

|
eparcey wrote: And no, we don't use Kerberos.
Well, that might be the answer. I have several VMs with different SharePoint installations and on some without Keberos there are Problems. Kerberos is standard nowadays, I think you are using it in AD so you might should activate it in SharePoint.
------------------------------
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.
|
|
|
|

|
We've reconfigured to use Kerberos and we've noticed no change.
|
|
|
|

|
eparcey wrote: We've reconfigured to use Kerberos and we've noticed no change.
Sorry, then I don't have any further idea as this problem never occured by any of our customers or our own sharepoint.
------------------------------
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.
|
|
|
|

|
Well another try! I got some new ideas
Which browser are you using and what versions. Is there an update missing?
Perhaps it's because of the IE options? Are they the same?
Third point to look at is the firewall? Is there an extra firewall via VPN? Are there different settings?
------------------------------
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.
|
|
|
|

|
VPN settings I will have to look into, but I know for a fact that the IE settings and updates are the same. We've actually moved one of the managers (and her laptop) from one office to the other, and she is fine here but on the same laptop in a different office she has problems. I was even able to remote in and do some testing, it was very intermittent.
She says things were fine while she was in the hotel though...
And the weird thing is that it's not just the one office but all the field offices that have this problem.
It has to be the firewall or VPN; we're running out of other options!
I will keep you posted.
|
|
|
|

|
eparcey wrote: It has to be the firewall or VPN; we're running out of other options!
I will keep you posted.
Well it's strange anyhow. Please tell if you found a solution. I'm very interested in now!
------------------------------
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.
|
|
|
|

|
So we ended up contracting an external netowrk guy to fix something completely unrelated. In order for him to dial-in to a computer at one of our other sites to do maintanence we had to temporarily turn off the anti-virus on the router. Guess what? People could log into SharePoint with no problems while we had the anti-virus turned off. Looks like the auths where getting picked up by the anti-virus on their way back out to the client. Go figure.
Anyways, we've reconfigured our antivirus and everyone is happy.
|
|
|
|

|
Wow! I never thought of that. There are so many errors possible at those complex systems today, it's hard to figure out everyone.
------------------------------
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've noticed that too. Sometimes you tell the browser (IE) to remember the credentials, and the browser asks you for the credentials again.
|
|
|
|

|
User should be able to personalise his own themes and when he login he should be able to see his themes and background images in Sharepoint 2010.please help
|
|
|
|

|
I don't know how extensive you want your re-theming to be. However if it could be CSS-only you could use this approach:
Store the CSS files for the different themes in the Style Library or in 14 Hive.
Create a list/table that stores the user and their chosen theme.
Write a feature and custom application page to allow the user to change their theme.
Write a control that does a lookup on the list against the current user and obtains the a reference to the corresponding CSS file in the Style Library or in 14 hive. The control would then output the CssRegistration and CssLink controls to the page for this file.
Add this control to the master page so it executes on every page (caching should be added).
I can't see why this wouldn't be supportable by Microsoft as you're only changing CSS.
If you need to do more than that then another option is to write an HTTP module that changes the HTML output. Or of course JavaScript. With these two options you may have supportability issues (it depends on how extensive your changes are).
|
|
|
|

|
Hallo,
I´ve the Reservation Webpart in my WSS 2007 Site. In this Year I can insert some reservations at the same Time or Time overlapping for different rooms. In 2013 a error ocurred
"The following reservation conflicts with the desired reservation." What can I do?
|
|
|
|

|
That's not a standard webpart, isn't it (I just know SP 2010 and there is no such webpart)?!
Is it a solution of a third party, is it an own solution?
------------------------------
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 have this Webpart from here
http://www.codeproject.com/Articles/30983/SharePoint-Reservations
it`s not a standart webpart.
|
|
|
|

|
Well at the bottom of this page you can ask questions. It would be good to ask the author himself cause he knows the code. Or take a look at the code on yourself to check where the error comes from.
------------------------------
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.
|
|
|
|

|
Hi,
I am going to create new shared document which will helps user can share the documets by using this site.And we already have SQL server 2008 & Visual Studio 2008 in using.That using SQL server 2008,VisualStudio 2008 is enough or we nee to install in saparate server.Can you please mensition the Hardware and Software requirements for creating sharepoint document shareing(Shared document).
Regards,
Hemadri.T
modified 19 Nov '12 - 15:08.
|
|
|
|

|
HemadriT wrote: Can you please mensition the Hardware and Software requirements for creating sharepoint document shareing
You should install a SharePoint FarmServer (even if you only have one Server, because you can then add other servers, if you need them).
Hardware:
Depinding on how many users you have a good start would be 4 Cores with 8 better 16 GB. You can also use VMs if you like to, it's a good way, cause you can easily backup them.
Software:
SharePoint 2010 and SQL-Server 2008 or SharePoint 2013 and SQL-Server 2012 are good combinations.
You only need Visual Studio if you want do build Solutions, but it's better not to run Visual Studio on production Servers, install another Server.
------------------------------
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.
|
|
|
|

|
Running with 2 Custom master pages that previously worked on Server 1
Now a new server is established and "Invalid viewstate" now occurs – It's the mngfield.aspx that is involved
I can create a column on list or document library but can’t delete it again.
No changes has been made in the master pages at all.
If I change the custom master page to standard master page there’s no errors.
The URL when the error occur is:
…./_layouts/mngfield.aspx?i=1&Cmd=DeleteField&List=%7B347EBA87%2D794D%2D4A4E%2DB597%2DC21
520011A75%7D&Field=test&owshiddenversion=34&NextUsing=
http%3A%2F%2Fportal%2Fsite1%2site2%2FSite3%2Fit%2F%5Flayouts%2
FListEdit%2Easpx%3FList%3D%257B347EBA87%252D794D%252D4A4E%252DB597%252DC21520011A75%257D
The ULS log contains:
w3wp.exe (0x0c9c) - Thread: 0x0F78 - Level Medium and Unexected on the tkau
the ULS Eventid is:
xmnv
xmnv
tkau
b4ly
|
|
|
|

|
What is WebPart, and whats the benefit of it?
|
|
|
|

|
silentspeaker wrote: What is WebPart, and whats the benefit of it?
Take a look: http://en.wikipedia.org/wiki/Web_part[^]
WebParts allow the User (with enough rights) to change the content of the side without programming. You can just include the WebParts he need and control them, so that the side shows what is needed.
------------------------------
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.
|
|
|
|

|
Web Parts is a highly customizable windows that shows information within SharePoint website or helps you to write your own code as per your business logic.
Web Parts are located within the web part zones.
There are many different built-in web parts categories and types.
Can display data from various sources such as Lists,forms, your database
|
|
|
|

|
Hi everyone
I have installed sharepoint 2010(server) on the windows server 2008 R2 but I have a problem with configuration wizard
It cant accept any username of me
When I write a user name it shows this error
The username is invalid.The account must be a valid domain account
When I write Administrator it shows this error
The Specified user Administrator is a local account.Local accounts should only be used in snad alone mode.
Could please tell me a solution?
|
|
|
|

|
messages wrote: The username is invalid.The account must be a valid domain account
That's right, you need a domain account and the SharePoint Server should run in that domain. For example:
Your domain is "mydomain" / "mydomain.local", your user is "admin" so enter "mydomain\admin". Normally that should be the solution.
------------------------------
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.
|
|
|
|

|
Hi again
your help solved my problem and I could pass the settings but in the las window it tells Configuration Failed
Failed to create the configuration database.
An exception of type System.Data.SqlClinet.SqlException was thrown.Additional exception information Could not find stored procedure 'sp_dboption'
How can I solve this problem?
|
|
|
|

|
messages wrote: but in the las window it tells Configuration Failed
Failed to create the configuration database.
I'm not sure, but it sounds like that there is a problem accessing the sql-server. The installation-account should have the rights to create a database!
------------------------------
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.
|
|
|
|

|
Hi again
I found the problem sharepoint 2010 cant install in the Sql server 2012 and you need to install SP1 for sharepoint 2010 or you can use of sql server 2008
This is the link for SP1
http://www.microsoft.com/en-us/download/details.aspx?id=26623
|
|
|
|
 |