29/06/2019

creating a restful api tutorial with nodejs and mongodb


Read more...

13/05/2019

The list is too large to save as a template. The size of a template cannot exceed 52428800 bytes.

By default, you can't save the SharePoint list when it's exceed 52428800 bytes, but you can increase the size by power shell as below:

stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 100000000

Read more...

05/05/2019

Microsoft SharePoint Remote Code Execution Vulnerability

A remote code execution vulnerability exists in Microsoft SharePoint when the software fails to check the source markup of an application package. An attacker who successfully exploited the vulnerability could run arbitrary code in the context of the SharePoint application pool and the SharePoint server farm account.


Remediation:
The security update addresses the vulnerability by correcting how SharePoint checks the source markup of application packages.

Security Updates
Product
Article
Download
Impact
Severity
Supersedence
Microsoft SharePoint Enterprise Server 2016
Remote Code Execution
Critical
4462155
Microsoft SharePoint Foundation 2010 Service Pack 2
Remote Code Execution
Critical
4461580
Microsoft SharePoint Foundation 2013 Service Pack 1
Remote Code Execution
Critical
4461596
Microsoft SharePoint Server 2010 Service Pack 2
Remote Code Execution
Critical
Microsoft SharePoint Server 2013 Service Pack 1
Remote Code Execution
Critical
4462139
Microsoft SharePoint Server 2019
Remote Code Execution
Critical
4462171

Read more...

03/02/2019

Internal Server Error 500

When create a new web site, Internal Server Error 500  message appear, the solution is:

  1. Open Front-End server.
  2. open IIS
  3. Select Application Pools
  4. From the right side, select SecurityTokenServiceApplicationPool
  5. Right-Click, Choose Advanced Settings.
  6. Go to Identity, and set the Farm Admin user.
  7. Recycle the Application Pool.

  8.  

Read more...

13/10/2016

Live State

You can check the data volume for most sites as twitter and facebook http://www.internetlivestats.com/

Read more...

09/10/2016

Create a Web site with ease - Wix.com

Want to make your site even more beautiful? Find out how to do it with 10 stunning design features you can add quickly and easily.

Read more...

23/05/2015

When Use !important In CSS


Read more...

13/05/2015

Direct Link To Workflow Manager 1.0


Read more...

29/04/2015

Differences between Event Receivers and SharePoint Workflows

 

Event Receivers
Workflows
Can be Executed Synchronously or Asynchronously.
Can be Executed only Asynchronously which means when an action is completed.
Since it is executing in both modes we can cancel the action which is going to be occurred.
Once an action is started you cannot stop the operation.
Can't be initiated manually
Can be initiated automatically or manually.
Logs are not possible
Log can be written in workflows
Can be used in actions that needs to be completed immediately based on logic (Immediate execution)
Can be used in actions that will take even months or years to complete.( Long running)
no state is maintained
Workflow maintains state.
Triggered on Synchronous or Asynchronous events.
Triggered only on Creation/Change/deletion events.
 

Read more...