Monday, May 4, 2015

Apache Solr - Installation on windows PC

For windows :
  • Download Solr zip file from  here
  • Extract to a folder
  • Make sure you have JRE > 1.7
  • Navigate to the extracted folder
  • To Execute Solr as Windows service: 
  • bin\solr.cmd start



Now you can navigate to   http://localhost:8983/solr  for Solr Admin UI

How to set up Amazon S3 to publish Webfonts & overcome CORS Issue




How to set up  Amazon S3 to publish  Webfonts & overcome CORS Issue



  • Go to the Bucket in Amazon S3 Console
  • Select the Bucket that you want to enable CORS
  • click Properties Tab
  • click Permission and then click "Edit CORS config"
  • Enter below policy
  • <CORSConfiguration>
        <CORSRule>
            <AllowedOrigin>*</AllowedOrigin>
            <AllowedMethod>GET</AllowedMethod>
        </CORSRule>
    </CORSConfiguration>


  • Click Save..
  • Refresh webfont link ! Thats it .