Programming

How To Java Programming Uncategorized
How to Code Signing to Your Java Project
January 9, 2018
0
Recently I was developing an App using Java that will be launched from Website Directly using JNI Technique. I have created a Jar file. But problem is your Jar File will be not leaded or run if the Jar File is not signed with any Code Signing Certificate.   You must generate the CSR from […]
Laravel 5
Laravel Error Fix: Laravel 5 InvalidArgumentException in FileViewFinder.php line 137: View [.admin] not found
December 6, 2017
0
If you recently deployed you project to your production server or moved the project to another server, do not forget to clear the app cache by running these commands. php artisan cache:clear php artisan view:clear php artisan config:cache it should fix it. Also consider updating your .env file to match new environment variables.  
HostWay Linux CentOS Programming Server
Common Ports to Set for Linux New Server in Firewall
September 3, 2017
0
Common Ports to Set for Linux New Server in Firewall
Sometimes I have found after hosting new web project to new Linux Server, so many services stop working like webmail, ssl, WHM, cpanel. Later, I figure it out that, most of it because Firewall blocks them as there are no authorized port described / configured in the firewall. It always so tough to remember all […]
Laravel 5 Programming
Laravel Error Fix: Please provide a valid cache path
November 18, 2016
0
, ,
create these folders under storage/framework: sessions views cache
Laravel 5
Custom HTTP Error Pages in Laravel
November 17, 2016
0
Laravel makes it easy to return custom error pages for various HTTP status codes. For example, if you wish to customize the error page for 404 HTTP status codes, create a resources/views/errors/404.blade.php. This file will be served on all 404 errors generated by your application. Extend Laravel’s Exception Handler, Illuminate\Foundation\Exceptions\Handler, and override renderHttpException(Symfony\Component\HttpKernel\Exception\HttpException $e) method […]
Laravel 5 Programming
Simple Steps to Remove Public in URL (Laravel 5)
November 17, 2016
0
, ,
1. Rename the server.php in the your Laravel root folder to index.php and 2. Copy the .htaccess file from /public directory to your Laravel root folder. — Thats it !! 🙂
Algorithm Fundamental php Programming
LUHN Algorithm to Validate Credit Card & Example & Implementation with Programming Example
January 21, 2016
0
The LUHN Algorithm is used to distinguish valid Credit Card numbers that is random selection of digits. Credit Card numbers that can be validated by the LUHN Algorithm have numbers that pass the following test: 1. Reverse the order of the digits in the number. 2. Take the first, third, … and every other odd […]