Issue with the hit counters no longer working in MOSS , this is one of the issues after MOSS SP2 deployment and happen.
Microsoft has confirmed that this functionality was a FrontPage Server Extension holdover from the previous versions of SharePoint and they never intended for it to continue working in MOSS.
The latest service pack (SP2) finally saw the removal of the hitcounter functionality from MOSS. Microsoft’s official recommendation is to use the Site Usage Reports (Site Actions –> Site Administration/Site Collection Administration –> Site/Site Collection Usage Reports)
Monday, November 16, 2009
Friday, November 13, 2009
SSP Search settings – Authentication failed because the remote party has closed the transport stream
Just now during the rebuild MOSS farm process we faced the problem half way, that is we are unable to log in to SSP serach settings , with error messageAuthentication failed because the remote party has closed the transport stream.
do some search at internet , about all is related is SSL. But first of while i think i am not use SSL should be not this issues... but at last get the detail from http://support.microsoft.com/?id=962928
After try the luck!!! yeah is working!!
do some search at internet , about all is related is SSL. But first of while i think i am not use SSL should be not this issues... but at last get the detail from http://support.microsoft.com/?id=962928
After try the luck!!! yeah is working!!
Tuesday, November 10, 2009
Downloads from SharePoint Conference 2009
- Master-PowerShell with Dr. Tobias Weltner (free 500 page eBook)
- Getting started with business intelligence in SharePoint Server 2010 (downloadable poster)
- Design Search Architectures for Microsoft SharePoint Server 2010 (downloadable poster)
- Organizing Information in SharePoint (video)
Just keep this for my future references , in coming 6-10 months i will not touch any sharepoint. I will go to explore about Oracle. :) Due to Job Role change i need to pick up Oracle skill, so coming few month i will starting sharing about the Orcale.
Anyway i will be back to SharePoint!!!
Thursday, November 5, 2009
How to create a page and add a hit counter in SharePoint Designer 2007
Want to know how many hit on your MOSS site? yeah..just add the hit counter as simple step with SPD2007:
here you go : ( opss after the simple step is not showed at moss sites!! ha ha, but i think i working for majority...i will try to found out why i cannot see the counter!!)
NoteBecause the output from the hit counter object is text, the hit counter changes when you change the fonts and colors for the page.
here you go : ( opss after the simple step is not showed at moss sites!! ha ha, but i think i working for majority...i will try to found out why i cannot see the counter!!)
How to create a page and to add the hit counter
To create a page and to add a hit counter to the page, follow these steps:- On a Web server that is running Microsoft Internet Information Services (IIS) or Microsoft FrontPage Server Extensions 2002, start SharePoint Designer 2007 or FrontPage 2003, and then open a Web page.
- Start a new page. To do this in SharePoint Designer 2007, click the New Document button on the toolbar.
To do this in FrontPage 2003, click the New Page button on the toolbar. - In Page view at the bottom of the document window, click Design.
- Put the insertion point where you want to create the hit counter.
- On the Insert menu, click Web Component.
- Under Component type, click Hit Counter.
- Under Choose a counter style, double-click a hit counter style, and then click Finish.
- To set the counter to a specific number, click to select the Reset counter to check box, and then type the number.
- To display a fixed number of digits in the hit counter, click to select the Fixed number of digits check box, and then type the number.
For example, to display the hit counter as "00#" instead of as a single or double digit, click to select the Fixed number of digits check box, and then type 3. - Click OK.
How to use the hit counter on the page
To use the hit counter on the page, follow these steps:- Put the insertion point before the hit counter object on the page.
- Type You are visitor followed by a space.
How to save and to preview the page
To save and to preview the page, follow these steps:- On the File menu, click Save.
- Name the file CounterText.asp, and then click Save.
- On the File menu, point to Preview in Browser, and then specify the option that you want.
- Click Preview.
NoteBecause the output from the hit counter object is text, the hit counter changes when you change the fonts and colors for the page.
How to reset the hit counter
To reset the value of the hit counter, follow these steps:- In Page view, at the bottom of the document window, click Design.
- Double-click the hit counter.
- Click to select the Reset counter to check box, and then type a number in the box.
- Click OK.
Thursday, October 22, 2009
Batch file command to call other batch file!
hi hi, is a very simple batch file command learn today . just keep for future reference. Just now thinking to run few batch file automatically. So try to write one batch file to make it auto.
script as below :
call batchfile1.bat
call batchfile2.bat
save this batch file as .bat file will do.. the magic keyword is CALL!!
script as below :
call batchfile1.bat
call batchfile2.bat
save this batch file as .bat file will do.. the magic keyword is CALL!!
Thursday, October 1, 2009
Use PowerShell ADSI provider to add domain group to Local Admin group
ha ha, as i am not Domain administrator so not using much script to add user. This morning have one task need me to add some security team to 5 server, so thiking to try about the powershell. so below is the simple script have created : (is not perfect but is working fine :) )
*servers.txt is all your servers name going to add in.
$serverList = 'C:\servers.txt'
$names = get-content $serverList
$Admins = [ADSI] 'WinNT:///'
foreach ($name in $names)
{
Write-Host 'Adding Admins to' $name
#get the local group
$localAdminGroup = [ADSI]("WinNT://$name/Administrators")
#add the global group to the local group
$localAdminGroup.Add($Admins.PSBase.Path)
}
This script have a bug , that is once the group is available at the target server then will stop and give error :). ha ha , either u write the if statement to catch it or just make sure all your server is not exist the name you want to add . ha ha..is simple, but is very fun for me to find out it.
*servers.txt is all your servers name going to add in.
$serverList = 'C:\servers.txt'
$names = get-content $serverList
$Admins = [ADSI] 'WinNT://
foreach ($name in $names)
{
Write-Host 'Adding Admins to' $name
#get the local group
$localAdminGroup = [ADSI]("WinNT://$name/Administrators")
#add the global group to the local group
$localAdminGroup.Add($Admins.PSBase.Path)
}
This script have a bug , that is once the group is available at the target server then will stop and give error :). ha ha , either u write the if statement to catch it or just make sure all your server is not exist the name you want to add . ha ha..is simple, but is very fun for me to find out it.
Sunday, September 20, 2009
the issues i have faced after deploy MOSS SP2
After deploy MOSS SP2 to QA environment i have faced 3 issues :
- Telerik Radeditor not working as normal at Mac client with Safari.
- Foxit PDF i0Filter is not working
- Some changer on the layout folder, so our layout customization lost some imagine.
- no solution yet, still checking at telerik forum.
- Reinstall the PDF i-filter and start full crawl
- Developer help to move the image to right folder
Subscribe to:
Posts (Atom)



Back to the top