Using PowerShell it's rather easy to find information list. In messages about denied access (especially in custom SharePoint solutions) you can see in URL ID of denided list.
To find-out where it is you can using this script: (more...)
Using PowerShell it's rather easy to find information list. In messages about denied access (especially in custom SharePoint solutions) you can see in URL ID of denided list.
To find-out where it is you can using this script: (more...)
Search engines don’t like some versions of site URL, even if it’s the same domain with and without "www". Sometimes search engines can ban your site because of the same content on several domains.
So, if you want your site to be without "www", you need to add some rules to a web-server. For example, our site is "markimarta.com", we need to make a permanent redirect from "www.markimarta.com" to "markimarta.com". (more...)
When you have a table which you can’t edit, you think you can’t do anything with it. It may be a result of an outside procedure or web-service (usually it returns data in XML, but html-table also can be).
So, for example, we have a list of Borussia Dortmund players. We know id in list, Name of player, his Lastname and date of birth (Figure 1). (more...)
Using Google AdSense panel I saw that google gives only 3 stars of 5 available. My self-esteem warmed up because I want five stars 🙂 So I’ll tell about it. (more...)
While editing chunk in ModX CMS all the quotes became with extra backslashes.
So, code was:
<div id="item1">Item 1 </div>
But after pressing button Save code became like this with extra backslashes:
<div id=\"item1\">Item 1 </div>
Once I need to install more memory on my server. The server was installed long ago and nobody knows what memory is installed there and whether there are free slots for memory. (more...)
For example, I need to make list like this:
My list items
- item1
- item2
- item3
Here's a nice way to make list with dashes. (more...)
Create a table with cells width exactly you need is some more difficult than it may be seemed at once. So, if you need to make a table 300 pixels width with 5 cells same width, than cell width should be no more than 60 pixels. Of course, you should remember about borders and paddings in cells. (more...)
Sometimes you may need to show information in SharePoint list only how you want it but not users. You create a list view and hope than other users will not change anything. But to be more assured that list view will be the same as you created it, you need to disable a change of list view in SharePoint list. (more...)
In SharePoint site you can see usually a lot of groups. Sometimes administrator gets a task to add user to several groups. If it’s 3-5 groups you can do it manually, but if you need to add user to 30 groups? I’m too lazy to do it manually and too smart not do it at all. (more...)