• Our Office
  • 12 Alpine Close Lakefield Benoni 1501

Clickatech

Domain Contacts

When you register your domain the domain typically requires 4 contacts that will be linked to your domain: Registrant Contact Administrative Contact Technical Contact Billing Contact The last 3 are typically set to your ISP/Hosting provider to deal with technical and billing issues. The first contact (Registrant) HAS to be [...]

Read More

Useful Chrome Extensions

New Identity – https://chrome.google.com/webstore/detail/openmultilogin/plaahcaagklllbcjognjgcnldgjnjhpb?utm_source=chrome-app-launcher-info-dialog Page Load Time – https://chrome.google.com/webstore/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig?utm_source=chrome-app-launcher-info-dialog ColorZilla – https://chrome.google.com/webstore/detail/colorzilla/bhlhnicpbhignbdhedgjhgdocnmhomnp?utm_source=chrome-app-launcher-info-dialog Page Ruler – https://chrome.google.com/webstore/detail/page-ruler/jlpkojjdgbllmedoapgfodplfhcbnbpn?utm_source=chrome-app-launcher-info-dialog Image Size Info – https://chrome.google.com/webstore/detail/image-size-info/oihdhfbfoagfkpcncinlbhfdgpegcigf?utm_source=chrome-app-launcher-info-dialog [...]

Read More

Find something in a SQL Database

Previously posted about finding content in a SQL Stored Procedure. Here is a nice script that creates a new Stored Procedure called SearchAllTables that will scan all tables and columns for a string input: CREATE PROC SearchAllTables ( @SearchStr nvarchar(100) ) AS BEGIN DECLARE @Results TABLE(ColumnName nvarchar(370), ColumnValue nvarchar(3630)) SET NOCOUNT [...]

Read More

Move search index location

When you install SharePoint 2013 there is no option to change the default search index location (like the ULS log folder). If (like us) you keep your default c drive small and only allocated for installations it can cause some issues with size as the search index grows. Unfortunately there [...]

Read More

Azure: Temporal Tables

Will be adding some Azure content just to try and keep myself sane with all the new features and updates rolled by MS. Temporal Tables: Nice new feature that enables versioning and history out the box for SQL databases, so no need to build your own archiving etc. Hit the [...]

Read More

Require HTTPS on Azure

To force HTTPS on an Azure site that is configured to run HTTPS and HTTP add the following to your web.config file: <?xml version=”1.0″ encoding=”utf-8″?> <configuration> <system.webServer> <rewrite> <rules> <rule name=”Redirect to HTTPS” stopProcessing=”true”> <match url=”(.*)” /> <conditions> <add input=”{HTTPS}” pattern=”^OFF$” /> </conditions> <action type=”Redirect” url=”https://{HTTP_HOST}/{R:1}” redirectType=”Permanent” /> </rule> </rules> [...]

Read More