Category

PHP

22 articles in this category

Laravel 5.* Form and HTML environment setup

August 1, 2016 1 min read

Illuminate/HTML package has been deprecated Do this: In cmd run command: composer require laravelcollective/html In your composer.json file in “require” group should be added this line: "laravelcollective/html": "5.2.*"…

cURL error 60: SSL certificate: unable to get local issuer certificate

July 29, 2016 1 min read

working solution: Assuming On windows XAMPP server similar for other environment – download and extract for cacert.pem here (a clean file format/data) https://gist.github.com/VersatilityWerks/5719158/download put it here C:\xampp\php\extras\ssl\cacert.pem in…

Laravel Framework terminal Commands

July 21, 2016 1 min read

Maintenance Modes To enable maintenance mode, simply execute the down Artisan command: php artisan down To disable maintenance mode, use the up command: php artisan up Create New…

Composer Windows Installer

July 18, 2016 1 min read

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php…

PHP code to access php webservice

June 17, 2016 1 min read

<?php function post_to_url($url, $data) { $fields = ”; foreach ($data as $key => $value) { $fields .= $key . ‘=’ . $value . ‘&’; } rtrim($fields, ‘&’); $post…

Introduction to CodeIgniter Basic With CRUD

May 10, 2016 15 min read

Introduction to CodeIgniter Basic With CRUD CodeIgniter (CI) is one of popular php framework. If you are already building PHP Application, CodeIgniter will help you to do it…

SOAP IN SUGARCRM GOOD NOTES

May 9, 2016 14 min read

SOAP SOAP is probably the most used Web Services protocol. It provides a way of exchanging structured information of application functionality. A SOAP interface can be defined by…