Skip to main content

Posts

CodeIgniter Overview Application Flow Chart

Application Flow Chart The index.php serves as the front controller, initializing the base resources needed to run CodeIgniter. The Router examines the HTTP request to determine what should be done with it. If a cache file exists, it is sent directly to the browser, bypassing the normal system execution. Security. Before the application controller is loaded, the HTTP request and any user submitted data is filtered for security. The Controller loads the model, core libraries, helpers, and any other resources needed to process the specific request. The finalized View is rendered then sent to the web browser to be seen. If caching is enabled, the view is cached first so that on subsequent requests it can be served. https://codeigniter.com/userguide3/overview/appflow.html

Download CodeIgniter 3.1.13

GitHub Git  is a distributed version control system. Public Git access is available at  GitHub . Please note that while every effort is made to keep this code base functional, we cannot guarantee the functionality of code taken from the develop branch. Beginning with version 2.0.3, stable versions are also available via  GitHub Releases . Click here to Download  or  https://codeload.github.com/bcit-ci/CodeIgniter/zip/3.1.13

CodeIgniter Installation Instructions

  Installation Instructions CodeIgniter is installed in four steps: Unzip the package. Upload the CodeIgniter folders and files to your server. Normally the  index.php  file will be at your root. Open the  application/config/config.php  file with a text editor and set your base URL. If you intend to use encryption or sessions, set your encryption key. If you intend to use a database, open the  application/config/database.php  file with a text editor and set your database settings. If you wish to increase security by hiding the location of your CodeIgniter files you can rename the system and application folders to something more private. If you do rename them, you must open your main  index.php  file and set the  $system_path  and  $application_folder  variables at the top of the file with the new name you’ve chosen. For the best security, both the system and any application folders should be placed above web root so that they are not directly accessible via a browser. By default,  .hta

codeigniter Controller and How to open in browser

codeigniter Controller and How to open in browser  <? php class Blog extends CI_Controller { public function index () { echo 'Hello World!' ; } public function comments () { echo 'Look at this!' ; } } Load in browser example . com / index . php / blog / example . com / index . php / blog /comments https://codeigniter.com/userguide3/general/controllers.html

How to change or Re forceRerender Page After Login in VueJS

Main.js import   Vue   from   'vue'   Vue . config . productionTip  =  false export   const   bus  =  new   Vue (); login.vue function login() {      bus . $emit ( "changeIt" ,  response . data ); } Navbar.vue export   default  {   forceRerender () {      bus . $on ( "changeIt" ,  data   =>  {        this . user  =  true ;        this . uname  =  data ;     });   }, async   created () {      bus . $on ( "changeIt" ,  data   =>  {        this . uname  =  data . email ;       }     } }

Mail With Laravel

Step-1    php artisan make:mail TestMail Step-2 change In .env File MAIL_MAILER =smtp MAIL_HOST =smtp.gmail.com MAIL_PORT = 587 MAIL_USERNAME =yourmail@gmail.com MAIL_PASSWORD =hearyourpassword MAIL_ENCRYPTION =tls MAIL_FROM_ADDRESS =yourmail@gmail.com MAIL_FROM_NAME = " ${ APP_NAME } " Step-3   php artisan serve   Step-4 In Controller ->Function $details =[              'title' => "Mail from Laravel" ,              'body' => "This mail laravel test mail i'll try" ,         ];          Mail :: to ( "sendermail@gmai.com" )-> send ( new   TestMail ( $details ));          return   "Mail Send" ; Step-5   Change in TestMailFile public   $details ;        /**      * Create a new message instance.      *      *  @return   void      */      public   function   __construct ( $details )     {          $this -> details = $details ;     }        /**      * Build the message.      *      *  @return  $this      */