Sharepoint hit counter is not displayed - sharepoint

I followed the instructions here
http://support.microsoft.com/kb/825532
After that when I preview my page, I can't see the hitcounter. I learned that it may be related to permissions of the site but I couldn't find how to do it.
Is it realy related to permissions ? If so what should I do to ? And any external solution (except this one: http://hitcounter.codeplex.com/) would help, the one in pharanthesis, I couldn't make it work.

http://nspsharing.blogspot.com/2009/11/hit-counter-sharepoint-designer-is-not.html

Related

How we can achieve HMC customisation?

In Hmc.xml we can do it but don't know how so, please give some examples and if any other ways are there to customise HMC please explain.
All the examples you need, you can find in the current system hmc.xml files. In general you can have a hmc.xml for each of your extensions and during build,they are all appended to the main hmc.xml. If you don't want to build and start the server every time, in your hmc->System->hmc configuration you can find the currently used xml and also can modify it and save. After that you are logged out and when you login again, you can see your changes. Here is some documentation Hybris Wiki

Is it possible to fully customize a sharepoint?

Alright, I received a job to fully customize a Sharepoint into a simple website, but all the information I found in google didn't helped and I don't know anybody who have worked with this, I have never seen those tags before, such as , so I need some infos about fully customization, is that possible? Where do I start from? I already installed the sharepoint 2010 and added the website but couldn't do anything.
Thanks anyway.
look here , i think that you can find there answer http://idratherbewriting.com/2008/06/21/customizing-your-sharepoint-site-read-these-10-conceptsgotchas-first/

Sharepoint Designer 2010 won't display lists of libraries

Not quite sure what I've done to screw up SPD2010 (was working), but it displayed
Sharepoint Designer cannot display the item
What you can try:
Click refresh ... blah
Most likely causes
The file has been deleted from the site
The site is encountering problems
I can't see anything related in event viewer. I think is web service related as I think the queries are made via a WS?
In my case it wasn’t a solution. So, I made a backup of the site collection before to try anything. After a lot of time and different problems I figured out that some lists were causing the missreading. I tried one more time to get the lists in SharePoint Designer 2010 just to cause some entries in the log. After that I opened the log file and looked for something like: “Failed to determine the setup path of the list schema for feature {GUID}, list template XXX.”. With the GUID I looked for a match here. http://sharepoint-geek.com/2010/10/08/sharepoint-2007-moss-features/
With the feature name I used this blog: http://aurramu.blogspot.com/2011/03/failed-determine-setup-path-of-list.html.
With the feature re-installed I went to SPD and it worked like a charm.
I hope it helps someone else.
It appears this was caused by a "phantom" list definition. I experienced a number of other problems (some in SP some in SPD), all generating variations of this error;
<nativehr>0x8107058a</nativehr><nativestack></nativestack>
The problem list definition was deployed and undeployed from VS2010, so I have no idea why it was still around! The Sharepoint UI wont allow you to remove it (errors as above), so the trick is to use the stsadm powershell command with forcedeletelist as detailed here
http://technet.microsoft.com/en-us/library/cc262609(office.12).aspx
Hope this helps someone else !

How to find missing web part?

Does anybody know how to find offending web part which causes this error ?
“A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe.”
I have inherited an old SharePoint 2003 portal site which uses custom web parts.
I know what this error means. I also know that each web part must be installed and registred as safe in web.config. The problem is that I don't know which one is missing.
I get same error when I'm trying to open the page in FrontPage as well.
Use contents=1 in QueryString to disable/remove WebParts from page that causes errors.
stsadm.exe -o enumallwebs -includewebparts
http://sharepointreporter.wordpress.com/
Requires updating to Sp2 I believe, for this command to be available. Problematic web parts will appear as 'Missing' in the resultant list.
Go to Event Viewer of the machine and you shall be able to see Error entries. Out of tons of entries you have to find out the entries related to you and you shall be able to see the names of the webparts that the sharepoint site is trying to load but fails. If you shall read the complete description of the error entry in the Event Viewer, it will give you version and even PublicKey Token of the webpart as well.
I hope this helps!!!
Try reading this:
http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=189
It should give you some clues to solving the problem. Essentially you have a control that is not marked as safe and it is failing. You can most likely config it to work, but the link above has other possible solutions.
in your url just append content=1. This will give you the all the webparts that are deployed. Now, you can keep deleting each of the webpart to find which one is causing issue ( ensure that you know to add the web parts back).
For example: if Url is http://localhost:9000/default.aspx, try with http://localhost:9000?contents=1
Alternatively, try to create a new webpart page,add web parts that are there on your actual page and check which one is causing issue. This will avoid changes to the actual page.
Hope this helps.
I've just suggested this same answer on MSDN:
This stsadm helped me in finding where the webpart was referenced in any way:
stsadm -o enumallwebs -includewebparts > C:\temp\somelog.txt
Then you can see the web part is listed under some <Web Id=... Url=...> XML node, i.e. you know the "culprit" web site.
At that point, some reasons I've found for those forgotten references:
the webpart is used in some sub-site of the culprit website, and the sub site is hidden from the quick list or top bar
the webpart has been deleted from the culprit website, but it still is in the "site collection recycle bin". You can reach that by going to the normal website recycle bin, then look for its link on the top bar description ("Use this page to restore items that..."). By the way, this site collection recycle bin has two views itself: be sure to check them both.
In both cases, I got some help by browsing the culprit website with SharePoint Manager. With that I could easily spot the existence of a forgotten subsite, as well as the existence of this "second level recycle bin".
HTH

Customize accessdenied.aspx in Sharepoint

I have a web in Sharepoint 2007. I have sites with permission for certain roles. When a user with a role that has not got permission to enter the site, Sharepoint redirects him/her to accessdenied.aspx which has Sharepoint design.
How can I change this redirection so that it goes to a customized one? I don't know if the server will be shared with other Sharepoint webs, so i don't dare to edit accesdenied.aspx directly (i have not verified if i can anyway).
I would need precise code and indications, because i am no guru of Sharepoint.
I wish I could offer you more in terms of precise code, but this website seems to have pretty clear instructions.
Hope that helps.
Check this article for the issue you face when you create your own custom access denied error page and solution proposed in my post.
http://social.technet.microsoft.com/Forums/sharepoint/en-US/9332cbe8-fda4-48de-a397-5f42bff9bf73/sharepoint-2010-custom-access-denied-page
Thanks & Regards,
Syed Abbas

Resources