RATS Dyna block list is common to avoid Trojan and bots sending mail to recipients. SPAMRATS detect unhealthy and invalid rDNS records entries in server.…
Leave a CommentCategory: SharePoint
SharePoint 2013 tweaks
SharePoint 2019 security CVE-2019-1330 patch has been released in October’19. The patch causing search indexes the crawl of content that has many links fails because…
Leave a CommentAs expected Microsoft introduced SharePoint server 2019 product in May 2018 SharePoint conference. The product has more refined feature in terms of user experience, development…
Leave a CommentSharePoint 2013 Config Cache fix mostly unstable service or applications, try with cache clear script as troubleshoot them in farm level. Here the scripts makes…
Leave a CommentIts been very long time to back in here to share the work around fixes. I have been configured public facing branding site in SharePoint 2013 multi tier environment.
Servers in the farm
SPAPP-V01
SPAPP-V02
SPWFE-V01
SPWFE-V02
SPSQL-AG (Availability group listener)
SPSQL-V01
SPSQL-V02
SPSQL-V03
Web application has been extended to Internet zone, which is exposed in public via F5, SSL configured on IIS.
AAM looks like
http://SPAPP-V01:8080 Default http://SPAPP-V01:8080
https://www.sathiya.io Internet https://www.sathiya.io
http://www.sathiya.io Internet https://www.sathiya.io
http://sathiya.io Internet https://www.sathiya.io
https://sathiya.io Internet https://www.sathiya.io
SharePoint search was configured with below topology;
SPAPP-V01 : Admin, Crawler, Content Processing, Analytics Processing & Index Partition
SPAPP-V02 : Admin, Crawler, Content Processing, Analytics Processing & Index Partition
SPWFE-V01 : Query Processing
SPWFE-V02 : Query Processing
We everyone are looking for very simple HTML and classy site maintenance page for hosting. Nowhere we go. html maintenance page snippet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!doctype html> <title>Site Maintenance!</title> <style> body { text-align: center; padding: 150px; } h1 { font-size: 50px; } body { font: 20px Helvetica, sans-serif; color: #333; } article { display: block; text-align: left; width: 650px; margin: 0 auto; } a { color: #dc8100; text-decoration: none; } a:hover { color: #333; text-decoration: none; } </style> <article> <h1>We’ll be back soon!</h1> <div> <p>Sorry for the inconvenience but we’re performing some maintenance at the moment. Please feel free to <a href="mailto:contact@sathiya.io">contact us</a>, otherwise we’ll be back online shortly!</p> <p>— IT Admin <a href="http://sathiya.io" target="_new">Sathiya.io</a></p> </div> </article> |
Cheers…!
3 CommentsSharePoint apps feature has been looks great in your site. Here the simple steps to configure an apps and few tweaks to ride it. Before…
Leave a CommentTweaks of SharePoint PowerShell script to download installed SharePoint solutions from the farm. All solution has deployed on server hives folder and the database but…
Leave a CommentTo upgrade SharePoint server 2013 Enterprise from 15.0.4569.1000 to 15.0.4641.1000 had a long investigation and searching on web made me confusion. Even I didn’t find any clear…
Leave a CommentOnce we configured the SharePoint outbound mail server then our responsible to test the setup. Here the small powershell snippet will do!
1 2 3 4 5 6 7 |
### The script will return True or False $toemail = "sathiya@sathiya.io" $subject = "Test - SharePoint Outbound mail" $body = "This mail for testing purpose...! Please ignore your action!" $site = New-Object Microsoft.SharePoint.SPSite "http://sharepoint/" $web = $site.OpenWeb() [Microsoft.SharePoint.Utilities.SPUtility]::SendEmail($web,0,0,$toemail,$subject,$body) |
If you…
Leave a Comment