Etiket: MOSS
Ocak 31st, 2010
Elinizde bulunan bir excel i, Excel Service den yararlanarak Sharepointte göstermek istiyorsunuz; Fakat her sayfa açılışında aşağıdaki gibi hata mı alıyorsunuz?
xxxx workbook contains one or more queries that refresh external data.
A malicious user can design a query to access confidential information and distribute it to other users or perform other harmful actions.
If you trust the source of this workbook, click Yes to enable queries to external data in this workbook.
If you are not sure, click No so that changes are not applied to your workbook.
Bunu aşmak için yapmanız gereken;
- Central Administration dan ilgili SSP nin Admin Page ine gidin.
- Buradan Trusted File Locations.
- İlgili güvenilir locationı bulun ve tıklayın.
- Açılan konfigürasyon sayfasından External Data nın Warn On Refresh özelliğini disable edin;
Tags: Central Administration, Excel Services, External Data, MOSS, MOSS 2007, Sharepoint, SSP, Trusted File Locations, Warn On Refresh
Posted in Sharepoint, Yazılım | No Comments »
Ocak 8th, 2010
Bazen sharepoint listelerinin GUID lerine ihtiyaç duyarız,
Bunları bulmanın üç yolu mevcut, ikisi kolay, biri zor
hangisini isterseniz kullanabilirsiniz;
Birinci Yol;
- İlgili listenin settingslerine geliyoruz,

- Burada adres çubuğunda yazan
http://moss/_layouts/listedit.aspx?List=%7B90D46FEF%2D30EE%2D4DB3%2DB027%2DCBE7EDA5DB09%7D
benzeri adresten List değerinde yazan stringi alıyoruz

- %7B90D46FEF%2D30EE%2D4DB3%2DB027%2DCBE7EDA5DB09%7D
bu stringin
%7B = {
%7D = }
%2D = -
değişikliklerini yapıyoruz ve
{90D46FEF-30EE%2D4DB3-B027-CBE7EDA5DB09}
şeklinde GUID imizi elde ediyoruz.
İkinci Yol;
- İlgili listenin settingslerine geliyoruz,

-
Information Management Policy Settings e tıklıyoruz.
-
Adres çubuğundan list değerini çevrime gerek duymadan kopyalayıp yapıştırabiliriz

Üçüncü Yol;
- İlgili listenin settingslerine Firefox kullanarak geliyoruz,

-
Hiç bir ek işleme gerek kalmadan decode edilmiş şekilde list değerinden GUID imizi alabiliriz
Evet farkındayım en kolay yolu en sona yazdım…
Tags: GUID, List, List GUID, List Settings, Liste, Liste Ayarları, Liste GUID, MOSS, MOSS 2007, Sharepoint
Posted in Sharepoint, Sistem, Yazılım | No Comments »
Ağustos 26th, 2009
First,
Make definitions,
string siteURL = "http://siteURL";
SPSite site = new SPSite(siteURL);
SPWeb web = site.OpenWeb();
Get Current User,
SPUser user = web.CurrentUser;
Get User Informations,
string name = user.Name;
string loginName = user.LoginName;
string eMail = user.Email;
Hope this post helps,
Tags: Current User, MOSS, Sharepoint
Posted in Sharepoint | No Comments »
Nisan 28th, 2009
- Open Sharepoint 3.0 Central Administration

- In Central Administration, Click on Application Management

- In Sharepoint Site Management, Click on Site collection administrators

- Now, you can change or add Site Collection Administrators. This user can be a domain user or a local user.

Tags: MOSS, Sharepoint, Site Collection Administrators
Posted in Sharepoint | No Comments »
Nisan 7th, 2009
To Access the web part maintenance page of the current page, just write;
?contents=1
at the end of th URL. So your url must looks like
http://server/site1/site2/site3?contens=1
so this url opens the web part maintenance page of site3.
Tags: contens, MOSS, Sharepoint, Web Part Maintenance Page
Posted in Sharepoint | No Comments »
Nisan 7th, 2009
When you add two or more Content Editor Web Part your page, sometimes this error occurs;
Error Definition;
line: 2135
Char: 4
Error: ’style.display’ is null or not an object
code: 0
Error Type;
This is a Content Editor Web Part Javascript Error;
Error Resolution;
“When you delete or close your web parts, you wont get any error;” if the sentence is true for you then,
your problem is copying / pasting CEWP information. Probably, you prepared your text on Office Word then you copied it to the CEWP. Seems like the error appears, because of conflicting IDs.
So try these;
——-——-——-——-——-——-
Before you try, please copy ‘Rich Text Editor‘ and ‘Source Editor‘ text to a safety place. Just a precaution
——-——-——-——-——-——-
- Open ‘Modify Web part Page‘,
- Select ‘Rich Text Editor‘,
- Copy the text,
- Select ‘Source Editor‘,
- Paste the text,
- Then Open again ‘Rich Text Editor‘ and stylize your text all over again
or you can copy from old copy…
Tags: CEWP, Content Editor Web Part, Error, Javascript, MOSS, Sharepoint
Posted in Sharepoint, Sistem | No Comments »
Nisan 7th, 2009
private string GetServerUrl()
{
string strContextURL = HttpContext.Current.Request.Url.ToString(); //Full Url of the current site
int i = strContextURL.LastIndexOf("//") + 2;
string strProtocol = strContextURL.Substring(0, i); //to find protocol
string strServer = strContextURL.Substring(i); //to find server
string strBaseUrl = strProtocol + strServer.Substring(0, strServer.IndexOf("/"));
return strBaseUrl;
}
Tags: Current Site, Get Current Site URL, MOSS, Sharepoint
Posted in Sharepoint, Yazılım | No Comments »
Ağustos 23rd, 2008
Sharepointte query hazırlarken bir çok insanın yaşamını kurtaran, vaktini boşa harcamasını engelleyen U2U CAML Query Builder’ın daha kullanışlı, daha fonksiyonlu yeni versiyonu çıktı.
Yeni versiyonu buradan indirebilirsiniz.
Programın yeni versiyonu hakkında detaylı bilgi için tıklayın.
Tags: CAML Query Builder, MOSS, Sharepoint
Posted in .NeT 2008, Sharepoint | No Comments »
Ağustos 15th, 2008
MOSS’unuzdan Webpermission Request Error hatası alıyorsanız, yapmanız gerekenler:
- “C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG” adresindeki “wss_minimaltrust.config” dosyasını açın.
- <namedpermissionsets> nodunun altında, son <permissionset> nodundan sonra
<ipermission>
class=”WebPermission”
version=”1″
Unrestricted=”true”>
</ipermission>
kodunu ekleyin.
- Dosyayı kaydedip kapatın.
Tags: MOSS, security exception, Sharepoint, vs.net
Posted in .NeT 2008, Sharepoint | No Comments »
Ağustos 11th, 2008
MOSS kurulumu için gerekenler ve kurulum sırası;
- Windows Server 2003
- IIS
- .NeT Framework 2.0 + 3.0
- Microsoft SQL Server 2005
- MOSS 2007
Tags: MOSS, Sharepoint, vs.net
Posted in .NeT 2008, SQL Server, Sharepoint | No Comments »