http://world.episerver.com/Documentation/Items/Developers-Guide/EPiServer-Commerce/
Author: Andreas Plahn
Can Google Really Access Content In JavaScript? – YouMoz – Moz
Simple SQL script to show all Associations in EPiServer Commerce 1
There seem to be no good way to show all Entry Assocations (e.g. entries that have listings for accesories or related products set), in Commerce, so I just created some simple SQL scripts
Show all
SELECT CatalogAssociation.CatalogEntryId, CatalogEntry.Code, CatalogEntry.Name, CatalogAssociation.AssociationName FROM CatalogAssociation INNER JOIN CatalogEntry ON CatalogAssociation.CatalogEntryId = CatalogEntry.CatalogEntryId
If you need the associated entries as well, dig into this table:
[dbo].[CatalogEntryAssociation]
Where association contains ‘Expired’
SELECT CatalogAssociation.CatalogEntryId, CatalogEntry.Code, CatalogEntry.Name, CatalogAssociation.AssociationName FROM CatalogAssociation INNER JOIN CatalogEntry ON CatalogAssociation.CatalogEntryId = CatalogEntry.CatalogEntryId where CatalogAssociation.AssociationName like '%Expired%'
Most common associations counted
A variant for showing the most common associations (counted) are:
SELECT distinct CatalogAssociation.AssociationName, Count(*) as Count FROM CatalogAssociation INNER JOIN CatalogEntry ON CatalogAssociation.CatalogEntryId = CatalogEntry.CatalogEntryId GROUP BY AssociationName order by Count Desc
Uncompressed js for Episerver 7.6+ client debug
JavaScript — The weird parts — Medium
Get rid of Skype ads in Chat Screen (6.13) | Chris123NT’s Blog
How to remove ads from Skype in a simple way.
Works with latest skype version: 6.18.0.106 as well.
Tested with my Windows 8, 64bit.
Get rid of Skype ads in Chat Screen (6.13) | Chris123NT’s Blog.
How to convert url text to clickable hyperlink in Excel?
How to convert url text to clickable hyperlink in Excel?
Supposing you have multiple urls in your worksheet, but they are not linked, and now you need to convert all the unlinked urls to clickable hyperlinks, as following screenshots shown. Of course, you can double click them one by one to make them clickable, but this will be time consuming if there are lots of urls. How could you convert multiple unlinked urls to clickable hyperlinks automatically in Excel?
via How to convert url text to clickable hyperlink in Excel?.
Getting EPiServer 6 r2 drag and drop fileupload to work in Internet Explorer 11 / Windows 8
Make sure you have UAC disabled and running IE as administrator:
http://world.episerver.com/FAQ/Items/Installing-ActiveX-Controls-in-EPiServer-Client-Components-on-Windows-Vista/
Inspiration links:
http://world.episerver.com/Forum/Developer-forum/EPiServer-CMS-6-CTP-2/Thread-Container/2011/8/Problem-with-Advanced-File-Upload—wont-work/
http://blog.fredrikhaglund.se/blog/2008/07/22/installation-of-episerver-components/
Solution:
Go to this folder:
C:\Program Files (x86)\EPiServer\CMS\6.1.379.0\Application\UI\CMS\ActiveX
Open the EPiServerClientComponents.CAB file and extract the contents.
Run a cmd prompt as administrator and enter:
cd “C:\Program Files (x86)\EPiServer\CMS\6.1.379.0\Application\UI\CMS\ActiveX”
– or wherever you extracted the files
regsvr32.exe EPiFileUpload.dll (install fileupload)
regsvr32.exe EPiOfficeIntegration.dll (install office integration)