Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing! [...]
12 Alpine Close Lakefield Benoni 1501
Welcome to WordPress. This is your first post. Edit or delete it, then start writing! [...]
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 [...]
We encountered this error when running the OutDoc solution on OutSystems. Based on some research this is a common issue across multiple platforms e.g. SharePoint and not just on OutSystems. To resolve do the following: Create a new registry DWORD value called LoaderOptimization and give it the value 1 within [...]
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 [...]
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 [...]
When inserting records into Storage Tables in Azure the base columns are PartitionKey, RowKey and TimeStamp. To ensure the other properties of your entity is also created in the storage you HAVE to define them as properties (with a GET and SET), otherwise it will not be created e.g.: This will [...]
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 [...]
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 [...]
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> [...]