test
test
If you have problem connecting to MSSQL$Microsoft##SSEE instance after installing SharePoint Services 3.0, check if Windows Internal Database (Microsoft##SSEE) is really installed (should be in services list and Add/remove programs).
If its not installed try this:
References:
If you are trying to create Sharepoint 2007 Workflow project and receiving error message:
“A 32-bit version of SharePoint Server is not installed. Please install a 32-bit version of SharePoint Server” then try this solution.
References:
When a user installs an alert she receives an email “You have successfully created an alert for …” but alerts aren’t being sent from SharePoint.
run stsadm.exe:
stsadm.exe -o setproperty -url http://mywss30server/mysite -pn alerts-enabled -pv true stsadm.exe -o setproperty -url http://mywss30server/mysite -pn job-immediate-alerts -pv "every 5 minutes"
java -cp fitnesse.jar fitnesse.FitNesse -p 8080
where -p is port number. You should start it and check if under http://localhost:8080 runs your installed FitNesse.
instsrv.exe FitNesse "<path to the srvany.exe file>\srvany.exe" -a AcoountName -p AccountPassword
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FitNesse\Parameters] "Application"="C:\\Program Files (x86)\\Java\\jre6\\bin\\java.exe" "AppDirectory"="<path to the FitNesse folder>\\FitNesse" "AppParameters"="-cp fitnesse.jar fitnesse.FitNesse -p 8080"
and run it. This will add required keys to the registry.
instsrv FitNesse REMOVE
Spis narzędzi przydatnych przy projektowaniu stron www i nie tylko: http://ui.blox.pl
Po przeładowaniu strony, zdarzenia w jQuery nie zawsze się podpinają. Trzeba to zrobić tak:
// Podpięcie zdarzeń po postbacku: var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_endRequest(bindEvents); // Po załadowaniu się strony. $(document).ready(bindEvents); // Podpięcie zdarzeń. function bindEvents() { // kliknięcie na tabeli: $("table#tableElements").click(clickOnTable); }
Obsłużenie zdarzeń po np. kliknięciu na dynamicznie dodane nowe elementy:
// Ustawiam zdarzenia na tabeli. I wtedy nieważne czy się dodało dynamicznie nowe elementy. function clickOnTable(event) { var target = $(event.target); if (target.is('a.lnkEditMenu')) return clickEditMenu(target); if (target.is('a.lnkDeleteElement')) return deleteElement(target); if (target.is('a.lnkEditElement')) return editNoteElement(target); };
Whole process looks very simple: grab VSS, produce text file, run SVN and consume produced file.
vss2svn.exe --vssdir \\vss\repository\path
vss2svn-dumpfile.txt
file which will be consume by svnadmin
"{PathTo7-Zip}\7-Zip\7z.exe" a "%DATE% vss2svn-dumpfile.7z" "vss2svn-dumpfile.txt" -t7z -mx9 -aoa"{PathToSVN Server}\VisualSVN Server\bin\svnadmin" load "E:\SVN Repositories\BackupVSS" < "vss2svn-dumpfile.txt"Whole script might look like this:
E: CD E:\Vss2Svn\ vss2svn.exe --vssdir \\vss\repository\path :: ### Optional compression, you might do this if you want send file somewhere else ### "C:\Program Files (x86)\7-Zip\7z.exe" a "%DATE% vss2svn-dumpfile.7z" "vss2svn-dumpfile.txt" -t7z -mx9 -aoa :: ### SVNAdmin ### "C:\Program Files (x86)\VisualSVN Server\bin\svnadmin" load "E:\SVN Repositories\BackupVSS" < "vss2svn-dumpfile.txt"
This little function converts HTML characters (for example brackets < >) to entities (like < >).
function escapeHTMLEncode(str) { var div = document.createElement('div'); var text = document.createTextNode(str); div.appendChild(text); return div.innerHTML; }
Source: http://sanzon.wordpress.com
Add following code to file: FCKEditor\editor\fckeditor.html
window.onload = function() { // 25-11-2008 Han: Fixing the issue with the backbutton, when the back/forward button is hit then the html to display is // still HTMLEncoded which will cause the control to display html control sequences in the editor. // The easiest solution is probably to always htmldecode the value before it is beaing displayed in the editor, this can be done // using the statement below. // FCK.LinkedField.value=FCKTools.HTMLDecode(FCK.LinkedField.value); FCK.LinkedField.value=FCKTools.HTMLDecode(FCK.LinkedField.value); // THIS LINE InitializeAPI(); // existing code line ....... }
After adding the code line you will have to make sure that the javascript is downloaded to the client, so in your browser delete the local files ( tools->internet options->delete files).
And then it should all work as expected.
Source: FCKEditor forum