Coding Skills
Coding Skills
  • 8
  • 274 199
How to upgrade php version in Wampserver | Best and easy way
Best and easy way to upgrade PHP in the Wamp server step by step.
In this video, we are upgrading PHP 7.3 to PHP 7.4
Download PHP addon from the website
wampserver.aviatechno.net/
1) Check current Wamp server is compatible with our PHP version
2) Check PHP version in the command line and localhost home page
3) Download PHP addon
4) Install PHP addon
5) Restart Wampserver
6) Change PHP version in Wamp server
7) Update Path Environment Variable
มุมมอง: 33 192

วีดีโอ

Laravel 8 Authentication : Using Laravel Fortify (Without Jetstream)
มุมมอง 2.5K3 ปีที่แล้ว
Auth in Laravel 8 using laravel fortify package Step by Step github.com/laravel/fortify 1) Install a new Laravel 8 application using the laravel command: laravel new project-name 2)install Fortify using Composer: composer require laravel/fortify 3)Publish Fortify's resources: php artisan vendor:publish provider="Laravel\Fortify\FortifyServiceProvider" 4)Register fortify service provider in prov...
Laravel 8 Authentication : Using Laravel UI (Without Jetstream)
มุมมอง 13K3 ปีที่แล้ว
How to use old laravel new project-name auth in Laravel 8 Step by Step If you want to upgrade your application to Laravel 8 from the previous version, then you don't need to replace the code of your authentication instead you just update the package to " laravel/ui to ^3.0 " and follow the upgrade instructions given in the below link laravel.com/docs/8.x/upgrade#high-impact-changes github.com/l...
Node.js Installation On Windows 10 | How To Install Node.js | Coders Tips
มุมมอง 4.1K3 ปีที่แล้ว
How to Install Node.js in Windows 10 Hi Friends, In this Video I'm going to teach you How to Install Node JS in Windows 10. You can download Node.js from the official website nodejs.org/en/ You can download different options based on the Operating System. Download the LTS version. Once the download is done go ahead and install the nodejs installer. It's a simple installation process. Accept the...
How to Download and Install Composer on Windows 10
มุมมอง 97K4 ปีที่แล้ว
What is Composer? Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Composer Documentation getcomposer.org/doc/ Download Composer getcomposer.org/download/
How To Create A Virtual Host in Windows 10 with WampServer
มุมมอง 15K4 ปีที่แล้ว
The term Virtual Host refers to the practice of running more than one web site (such as company1.example.com and company2.example.com) on a single machine. Virtual hosts can be "IP-based", meaning that you have a different IP address for every web site, or "name-based", meaning that you have multiple names running on each IP address. The fact that they are running on the same physical server is...
How to Download and Install Wamp Server on Windows 10
มุมมอง 104K4 ปีที่แล้ว
Wamp Server Download and Install (Wamp Server 3.2) Step by Step. 1)Wampserver Download 2) VC Packages Download 3) VC Package Installation 4) WampServer Installation 5) WampServer Default Browser 6) WampServer Default DBMS 7) Switching MariaDB and Mysql vise-versa 8) Changing the PHP version. 9) WampServer PhpInfo. 10) WampServer PhpMyAdmin 11) WampServer Testing Database Connection. WampServer ...
Laravel 6.0 | Installation | Authentication (artisan make:auth in laravel 6.0)
มุมมอง 6K5 ปีที่แล้ว
Laravel 6 : Installation and Authentication php artisan make:auth in Laravel 6.0 Hope that you have installed wamp/xamp and Composer Laravel installation via 1)Laravel Installer composer global requirere laravel/installer laravel new blog 2)Composer Create-project command composer create-project prefer-dist laravel/laravel blog lets check current installation using "php artisan serve" for check...