3 01, 2020

Mobile App Development at Salesforce

2020-01-03T05:21:16+00:00January 3, 2020|Salesforce|0 Comments

|
| ByWebner

The Internet is considered to be one of the most effective channels of business communication in the field of Marketing, Supply Chain Management, Sales or Web Technologies. Due to this, web technology is involved in almost every small, medium or [...]

31 12, 2019

Laravel Events Introduction With Example

2019-12-31T05:14:20+00:00December 31, 2019|PHP Frameworks|0 Comments

|
| ByWebner

Laravel Events Events are one of the many powerful features of the Laravel. The event basically means the thing that happens or takes place, especially the one that is important. So, in Laravel’s case, events are triggered when some condition [...]

27 12, 2019

Reactive Form In Angular

2019-12-27T05:15:58+00:00December 27, 2019|Web Development|0 Comments

|
| ByWebner

In Angular there are two ways to work with forms: Template-driven forms: Template-driven forms are the default way to work with forms in Angular which is used as an internal representation of the form. Reactive forms: Reactive forms allow us [...]

24 12, 2019

The Importance Of Software Development Services

2019-12-24T06:19:52+00:00December 24, 2019|Others (General)|0 Comments

|
| ByWebner

Introduction to Software Development Services In the era of technology, the business world has revolutionized almost beyond recognition. With the use of updated technology, it becomes easier for a company to be successful. Software Development Services are the kind of [...]

20 12, 2019

MySQL: only_full_group_by issue on joins

2019-12-20T06:01:27+00:00December 20, 2019|Database|0 Comments

|
| ByWebner

Issue #1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column xxxx which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by After upgrading ubuntu 14.04 to [...]

18 12, 2019

Creating API’s with Node.js GraphQL

2019-12-18T05:35:52+00:00December 18, 2019|Web Development|0 Comments

|
| ByWebner

Introduction In this article, my aim is to present a quick guide on how to create Node.js GraphQL API. With a well-structured API, it is possible to have a solid, maintainable, and scalable API that can serve multiple kinds of [...]

16 12, 2019

Installation and configuration of gitlab (Ubuntu)

2019-12-16T08:56:26+00:00December 16, 2019|Linux|0 Comments

|
| ByWebner

Installation & configuration of gitlab with Let’s Encrypt on Ubuntu 18.04 Step.1 Update to latest repos :~$ sudo apt-get update Step.2 Now, Install the prerequisites required for gitlab :~$ sudo apt-get install -y curl openssh-server ca-certificates Step.3 Download the latest [...]

12 12, 2019

How To Make Provisioning Profile For iOS?

2019-12-12T08:50:06+00:00December 12, 2019|Mobile|0 Comments

|
| ByWebner

Provisioning Profile for iOS A provisioning profile binds developers and devices to an authorized iPhone Development Team and enables a device to be used for testing. Just Like android, you can’t install your application directly on the iOS device. Provisioning [...]

10 12, 2019

Video Compression Using Laravel

2019-12-10T09:11:57+00:00December 10, 2019|Web Development|0 Comments

|
| ByWebner

Introduction to Video Compression Video Compression is a term used to define a method to reduce the data used to encode digital video content. This reduction in data further translates to various benefits such as smaller storage requirements and lower [...]

6 12, 2019

XPath for Selenium Webdriver

2019-12-06T06:51:42+00:00December 6, 2019|Web Development|0 Comments

|
| ByWebner

XPath XPath in simple terms is a way of finding an element(s) in an HTML DOM by giving its path. It is useful when name or id etc is not available to be directly used to find the element. The [...]

2 12, 2019

TF30063 Issue – Authorization

2019-12-02T05:33:30+00:00December 2, 2019|Web Development|0 Comments

|
| ByWebner

TF30063 Issue: You are not authorized to access (Tfs Server link) I suddenly started getting the error while committing the code to TFS in Visual studio, after the password of the Microsoft account was changed. As per the scheduled password [...]

22 11, 2019

Partial View in ASP.NET MVC

2019-11-22T06:56:28+00:00November 22, 2019|Web Development|0 Comments

|
| ByWebner

The partial view is a special view used to render a portion of view content. It is a reusable view. It reduces code duplication. We can say that a partial view enables us to render a view within the parent [...]

18 11, 2019

Validation vs. Application Rules In CakePHP

2019-11-18T12:44:46+00:00November 18, 2019|PHP Frameworks|0 Comments

|
| ByWebner

CakePHP uses a two-layered approach to validation: 1. Validation It determines basic validity. It ensures that the data types, size, and format of data are correct. When we call newEntity() or patchEntity() methods, validations are triggered. For example, checking if [...]

12 11, 2019

Laravel 5.4 Logs And Errors

2019-11-12T07:26:50+00:00November 12, 2019|Web Development|0 Comments

|
| ByWebner

Introduction to Laravel 5.4 Logfiles: A log file is a file that keeps a registry or records of events, processes, messages that occur in the operating system or any software runs. -Laravel provides the robust logging services that allow the [...]

8 11, 2019

MongoDB Driver Not Found

2019-11-08T12:50:12+00:00November 8, 2019|Database|0 Comments

|
| ByWebner

Problem - Getting "Class 'MongoDB\Driver\Manager' not found" error while inserting some data in the collection (Laravel) Check the following three points in order to resolve the MongoDB driver issue in Laravel: 1. PHP Module 2. MongoDB Extension 3. MongoDB Library [...]

Go to Top