Authornilesh.borse

Docusign Salesforce Field Mapping

D

In this tutorial i am going to explain how we can map docusign fields with salesforce object fields. Most of the time we need the user data to be writtneback to the salesforce. Once user finish it’s docusign document. At that time we need to create the custom fields on docusign. I hope you already have installed and setup docusign manage package in salesforce . Login to the docusign and...

Make future payment using Braintree payment gateway

M

This tutorial is for those who are developing a mobile application and they want to charge a customer(one or more time) in future. In this tutorial I am going to explain backend functionality in details. Most of the time we need charge to  customer  in future. Some developers may store details in the database but this is not the best way when it comes to security. Fortunately this feature is...

Laravel introduction

L

What is Laravel ? Laravel is a free, open source PHP web application framework, designed for the development of model–view–controller (MVC) web applications. Laravel is released under the MIT license, with its source code hosted on GitHub. Tutorial Details Name : Laravel – PHP Framework Type : PHP Framewrok Language : PHP Level : Beginner Estimated Time : 40 Minuets Comments : Next generation PHP...

How to create form in Laravel

H

Form is a most expected elements in website as well as web based application. Each and every interactive web apps must have a form option to communicate between users and administrator. Whatever you want to write in website, there is not alternative about form. It could be in chat, message, as well as comments. In laravel 4, you have huge flexibility to create HTML form easily. Today I will gonna...

Remove index.php from codeigniter framework

R

Hi all, Today I am going to show you, how to remove the index.php part from your codeigniter URL. There are many ways to do it, but based on my previous experience, I got it is the best way to do so. To do so, create a .htaccess file in your directory and copy the following code in your created file.   RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d...

How to install laravel on windows wamp server

H

Following are the steps to install laravel on windows local wampserver Steps Before installing laravel please check following services are on or not ? a.Enable openssl b.Click on wamp icon->Apache->Apache Modules and enable ssl_module c.check php_sockets is enable wamp icon->PHP->Extension->php_socket Restart all services. 1.For installing laravel on windows PHP >= 5.4  required...

Roles and permissions of user in wordpress

R

WordPress is a free and open source blogging tool and a content management system (CMS) based on PHP and MySQL, which runs on a web hosting service. WordPress is the most popular blogging system in use on the Web, at more than 60 million websites. WordPress having a set of User groups roles and permission. They are Super Admin – somebody with access to the site network administration features and...

MySQL Database Backup Using PHP

M

If your site is live and using Database then it is very important to take backup of you Database in regular time interval. But it is not possible to take the backup manually every time. So lets create a simple PHP function to do this job for us and we can call that function using Cron Job in regular time interval. Here is the sample of php code <?php include("config.php"); function...

PHP Security: HTTP Authentication

P

You possible have found a web page that you want to open, sudden peep out a dialog window asking for username and password. common example is early page at cpanel (control panel to manage the web server use web based). It use HTTP Authentication. In protecting web page with HTTP authentication, you have to deliver two header. header WWW-AUTHENTICATE tell to browser that an username and password...

Category