Lorem ipsum dolor sit amet, consec tetur adipiscing elit. Pellentesque diam sem, hendrerit ut faucibus sit amet, bibendum vel lacus. Nunc molestie magna sed sapien ornare tempus. Curabitur venenatis ipsum nec ligula placerat sollicitudin libero lorem.
Learn more
Aliquam erat volutpat. Pellentesque varius varius elit ac consectetur. Nunc varius, diam ut malesuada aliquam, odio ante faucibus erat, nec semper mauris arcu id turpis. Nulla at tincidunt arcu.
Sed suscipit, metus ac fermentum condimentum, justo lectus vehicula eros, sed accumsan mi risus ut velit. Donec sollicitudin lacus vitae mauris mattis tempor.
Creating component to display video : Part 13
November 1, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Creating Component To Display Video – So I added further now we wil make a new file in components folder ViewVideo.js Now we will start adding code in that so first import React and Component import React, { Component } from ‘react’; import { View, Text } from ‘react-native’; class ViewVideo extends Component { render() […]
Read more
Passing Navigation props to screen : Part 14
October 12, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Passing Navigation props to screen – Open View Video.js file and get props video id . so our code should be to get value. this.props.navigation.state.params.vidid; so add const videoId = this.props.navigation.state.params.vidid; Now we can call { vidid } and use to display videoid which is clicked on VideoList page. So to check it Now in return […]
Read more
Modifying Navigation & Header : Part 15
October 2, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Modifying Navigation & Header – Copy api key and add in ViewVideo youtube parameter which was null. Now your code is ready to play video. But you can see a arrow in header of page. If you would like to remove it you nee to pass a option in navigator. So add this new code […]
Read more
Steps to upgrade Online CRM to Dynamics 365
September 13, 2018 / by stw / Dynamics CRM / 0 comments
Steps to upgrade Online CRM to Dynamics 365 – Microsoft Dynamics 365 CRM out into the market and to use new features like field services etc, you have to upgrade online CRM to 365. Upgrading online CRM is very confusing as users have not full control over instance and have fear to lose data or customizations. […]
Read more
Adding Content Templates to Editor in Kentico 9
September 3, 2018 / by stw / Micrososft, Web development / 0 comments
Adding Content Templates to Editor in Kentico 9 – It’s handy to adding site typography as content templates in Kentico CKeditor. Follow steps given below to add and customize CKeditor toolbar and include new content templates. Important : Must check Kentico CKeditor version to download content templates from given link http://ckeditor.com/addon/templates. Step1: Download sample content template from http://ckeditor.com/addon/templates. Extract downloaded […]
Read more
Connection from PHP to Microsoft Dynamics CRM
August 14, 2018 / by stw / Dynamics CRM, Micrososft, Web development / 0 comments
Connection from PHP to Microsoft Dynamics CRMThis time we will learn how to connect Microsoft dynamics CRM using PHP code. Microsoft dynamics CRM soap service can be a way to make calls from PHP source code. A valid soap header is required to execute soap request. Let’s see how to create a valid header using PHP code: To […]
Read more
Dynamics CRM 2015 setup a demo Virtual Machine.
August 5, 2018 / by stw / Dynamics CRM, Micrososft / 0 comments
Dynamics CRM 2015 setup a demo Virtual Machine. With most MicroSoft products this is pretty easy to setting up, but Dynamics has a more heavier requirements list. The prerequisites include: Windows Server Active Directory (yep you’ll need to setup a domain controller) SQL Server Server 2012/2014 Reporting Services 2012/2014 let’s get started: Step 1: First Install Windows […]
Read more
How to create theme in Magento 2
August 4, 2018 / by stw / CMS, Magento, Web development / 0 comments
How to create theme in Magento 2- 1. Install magento 2.2. Go to admin panel and login.3. Now you may see this window ( links not working ) 4. To solve the issue, open your xampp shell 5. Specify your path 6. Run following command from Magento root:php bin/magento setup:static-content:deploy 7. Go to admin panel […]
Read more
How to install Magento 2 – beginner’s guide (Windows)
July 15, 2018 / by stw / CMS, Magento, Web development / 0 comments
Install Magento 2 – beginner’s guide – Before continuing, make sure you have all the prerequisites, required for running Magento 2, below are system requirements System requirements:1. Apache Version: 2.2 or 2.42. PHP version: 5.5.x, where x is 22 or greater3. MySQL Version : 5.6.x and upper Installation1. First and easiest way is to download […]
Read more
Installation of Magento 2 on Ubuntu 16.04 LTS
July 14, 2018 / by stw / CMS, Magento, Web development / 0 comments
Installation of Magento 2 on Ubuntu 16.04 LTS – I am writing this article for absolute beginner with deeper explanation of all steps which are required to install and configure Magento 2.0 on Ubuntu OS.Let’s start:a) Install Apache2, PHP, MySQL Server, composer and required packages for Magento 2.0. Using command: $ sudo […]
Read more