Where's an epic primer on Bootstrap sites with authentication?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bladewire
    StraightBro
    • Aug 2003
    • 56220

    #1

    Tech Where's an epic primer on Bootstrap sites with authentication?

    GFY bros unite!

    Please point me in the right direction 👍


    Skype: CallTomNow

  • shake
    frc
    • Jul 2003
    • 4663

    #2
    What do you mean by authentication - the ability for Web users to create usernames/passwords etc? Bootstrap is a front-end frame work ( in browser Gui) you'll need a back end such as wordpress, etc
    Crazy fast VPS for $10 a month. Try with $20 free credit

    Comment

    • AdultKing
      Raise Your Weapon
      • Jun 2003
      • 15601

      #3
      Originally posted by Bladewire
      GFY bros unite!

      Please point me in the right direction 👍
      Bootstrap is a CSS framework and has nothing to do with authentication.

      Comment

      • Bladewire
        StraightBro
        • Aug 2003
        • 56220

        #4
        I appreciate your help guys thank you

        Anyone with links to an epic primer?


        Skype: CallTomNow

        Comment

        • AdultKing
          Raise Your Weapon
          • Jun 2003
          • 15601

          #5
          Originally posted by Bladewire
          I appreciate your help guys thank you
          Bootstrap is the presentation portion of a website, a CSS framework that works with JQuery to make HTML look pretty on a page.

          For authentication you need logic written in code using a language like PHP and some way of storing your users information such as MySQL.

          Therefore you need to learn how to program and how to style with Bootstrap to create an application that presents Bootstrap pages and does things like authentication.

          Comment

          • AdultKing
            Raise Your Weapon
            • Jun 2003
            • 15601

            #6
            Bootstrap Getting Started

            Getting started · Bootstrap

            PHP Getting Started

            PHP: Getting Started - Manual

            MySQL Getting Started (you want to move to MariaDB but the principles are the same)

            https://dev.mysql.com/usingmysql/get_started.html

            It's best to use a PHP Framework once you learn these things. I suggest Laravel - but before learning Laravel you must understand Object Oriented Programming principles.

            Laravel

            https://laravel.com

            These are behind a paywall - but Laracasts is worth every cent.

            Object Oriented Bootcamp

            https://laracasts.com/series/object-...ootcamp-in-php

            PHP 7 Intro and Primer

            https://laracasts.com/series/php7-up-and-running

            Laravel 5 from Scratch

            https://laracasts.com/series/laravel-5-from-scratch


            Once you know Laravel then creating a Bootstrap site with authentication can be done in a few commands.

            Code:
            #laravel new project
            
            #cd project
            
            #php artisan make:auth
            
            #php artisan migrate
            fast, easy, done.

            Comment

            • Serge Litehead
              Confirmed User
              • Dec 2002
              • 5190

              #7
              you could probably bootstrap something like that with Ruby on Rails

              Comment

              • freecartoonporn
                Confirmed User
                • Jan 2012
                • 7683

                #8
                Originally posted by AdultKing
                Bootstrap Getting Started

                Code:
                #laravel new project
                
                #cd project
                
                #php artisan make:auth
                
                #php artisan migrate
                fast, easy, done.
                wtf is that sorcery ?

                i gotta look in the laraval.
                SSD Cloud Server, VPS Server, Simple Cloud Hosting | DigitalOcean

                Comment

                • johnnyloadproductions
                  Account Shutdown
                  • Oct 2008
                  • 3611

                  #9
                  Originally posted by freecartoonporn
                  wtf is that sorcery ?

                  i gotta look in the laraval.
                  laravel is nice but it's a fucking pain to set up before you get a feel for it. Lots of dependencies and using composer/homestead isn't always so easy.

                  The hardest part is setting up the environment. I spent the better part of a day getting it to load correctly the first time.
                  I don't care what anyone says, it's finicky and I'm not a moron.
                  Once you get it down it's really nice, you just need to stick it out.

                  If you are making run of the mill sites stick with a common CMS, i.e. Wordpress.

                  If you need to go completely custom and build something unique I would use laravel.

                  Comment

                  • bns666
                    Confirmed Fetishist
                    • Mar 2005
                    • 11549

                    #10
                    wow this laravel looks interesting
                    CAM SODASTRIPCHAT
                    CHATURBATEX LOVE CAM

                    Comment

                    • AdultKing
                      Raise Your Weapon
                      • Jun 2003
                      • 15601

                      #11
                      Originally posted by johnnyloadproductions
                      laravel is nice but it's a fucking pain to set up before you get a feel for it. Lots of dependencies and using composer/homestead isn't always so easy.

                      The hardest part is setting up the environment. I spent the better part of a day getting it to load correctly the first time.

                      I don't care what anyone says, it's finicky and I'm not a moron.

                      Once you get it down it's really nice, you just need to stick it out.
                      As with anything, there is a learning curve.

                      Laravel is no more difficult than any other Framework. Frameworks use lots of dependencies.

                      The thing that sets Laravel apart from many other frameworks is it's extensive scaffolding capabilities, like in my example above to scaffold basic auth into an application.

                      However you do need a fair amount of knowledge to develop your app. I guess as a minimum you would need to know.

                      PHP
                      MySQL
                      Laravel
                      Git

                      Then for deployment you'd need to understand how to set up a web server and possibly a mail server. While it's possible to deploy a Laravel App to shared hosting I wouldn't recommend it. You need a custom Document Root for starters and then you really want to be able to lock down the server for the best security.

                      Comment

                      • freecartoonporn
                        Confirmed User
                        • Jan 2012
                        • 7683

                        #12
                        Originally posted by johnnyloadproductions
                        laravel is nice but it's a fucking pain to set up before you get a feel for it. Lots of dependencies and using composer/homestead isn't always so easy.

                        The hardest part is setting up the environment. I spent the better part of a day getting it to load correctly the first time.
                        I don't care what anyone says, it's finicky and I'm not a moron.
                        Once you get it down it's really nice, you just need to stick it out.

                        If you are making run of the mill sites stick with a common CMS, i.e. Wordpress.

                        If you need to go completely custom and build something unique I would use laravel.
                        thanks.
                        i custom code everything from scratch., very rarely i use wp.
                        but if it needs to put some time in it., then i am good with old fashioned php coding.
                        SSD Cloud Server, VPS Server, Simple Cloud Hosting | DigitalOcean

                        Comment

                        • AdultKing
                          Raise Your Weapon
                          • Jun 2003
                          • 15601

                          #13
                          Originally posted by freecartoonporn
                          thanks.
                          i custom code everything from scratch., very rarely i use wp.
                          but if it needs to put some time in it., then i am good with old fashioned php coding.
                          Don't take 'old fashioned PHP' to Laravel - you need to use modern coding standards and OOP to get the most from it.

                          Laravel is great but you'll find there's a fair bit of new stuff to learn, like Blade (templating language) and Eloquent ORM (a simplified ActiveRecord implementation).

                          Once you learn Laravel you'll be able to do more things in less time than you have ever done with PHP.

                          Comment

                          • PornWorx
                            Confirmed User
                            • Apr 2015
                            • 235

                            #14
                            Originally posted by freecartoonporn
                            thanks.
                            i custom code everything from scratch., very rarely i use wp.
                            but if it needs to put some time in it., then i am good with old fashioned php coding.
                            Over the last 10 years I went from procedural to OOP to CodeIgniter to Laravel and now I am back to building my own custom OOP apps. As nice as Laravel sounds it is much quicker and easier to just pull in a few packages from packagist using composer and go from there rather than fuck with Laravel. This hipster movement bullshit towards that framework confuses me, they all love making more work for themselves. Stick to what you are doing.

                            Comment

                            • freecartoonporn
                              Confirmed User
                              • Jan 2012
                              • 7683

                              #15
                              Originally posted by PornWorx
                              Over the last 10 years I went from procedural to OOP to CodeIgniter to Laravel and now I am back to building my own custom OOP apps. As nice as Laravel sounds it is much quicker and easier to just pull in a few packages from packagist using composer and go from there rather than fuck with Laravel. This hipster movement bullshit towards that framework confuses me, they all love making more work for themselves. Stick to what you are doing.
                              i tried codeigniter once and it was Pain in the Ass, last time i checked codeigniter stopped updating.

                              i still do procedural., and its fun.
                              SSD Cloud Server, VPS Server, Simple Cloud Hosting | DigitalOcean

                              Comment

                              • Bladewire
                                StraightBro
                                • Aug 2003
                                • 56220

                                #16
                                Thanks for your input everyone! Looks like this will be a bumpy endeavor.


                                Skype: CallTomNow

                                Comment

                                • PornWorx
                                  Confirmed User
                                  • Apr 2015
                                  • 235

                                  #17
                                  Originally posted by freecartoonporn
                                  i tried codeigniter once and it was Pain in the Ass, last time i checked codeigniter stopped updating.

                                  i still do procedural., and its fun.
                                  It was purchased by a university in British Columbia I believe who update it all the time. The next version is being completely redone to use more modern techniques.

                                  I liked CodeIgniter because I could upload it and you're done with the setup. Extremely easy to use and when quick to get the job done. It may not be the "proper" way to do things in this skewed 2016 programmer mindset but when time is money in business then your boss or client loves seeing quick progress.

                                  Comment

                                  • AdultKing
                                    Raise Your Weapon
                                    • Jun 2003
                                    • 15601

                                    #18
                                    Originally posted by PornWorx
                                    This hipster movement bullshit towards that framework confuses me, they all love making more work for themselves.


                                    Originally posted by freecartoonporn
                                    i tried codeigniter once and it was Pain in the Ass, last time i checked codeigniter stopped updating.

                                    i still do procedural., and its fun.
                                    CI is being updated, last update 3.0.6. However it's lost a lot of ground and I don't consider it to be a modern framework.

                                    Originally posted by Bladewire
                                    Thanks for your input everyone! Looks like this will be a bumpy endeavor.
                                    Good luck.

                                    Comment

                                    Working...