ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Setup a new website

    IT Discussion
    website dashrender
    10
    28
    2.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ObsolesceO
      Obsolesce
      last edited by

      Install a CentOS 7 VM, then install this and you are good to go:

      https://bitnami.com/stack/wordpress/installer

      My blog uses Wordpress and I chose a pretty simple and readable layout. But the possibilities are pretty much endless (and simple).

      1 Reply Last reply Reply Quote 0
      • ObsolesceO
        Obsolesce @scottalanmiller
        last edited by

        @scottalanmiller said in Setup a new website:

        @RojoLoco said in Setup a new website:

        I'm watching this thread closely as well... An intranet site would be a good training exercise is both installing Centos and creating a simple web page.

        For a lot of intranets, I recommend DokuWiki. Much easier install than LAMP, it's only LAP as there is no database, and it is very portable. WordPress is easily to make pretty, but DokuWiki is easier for a lot of documentation. Different times each would be ideal, but well work checking out.

        Yes, once you have Wordpress going, go to add a new template and search for "wiki". The few that show up are pretty decent.

        I'm using this one on my blog: https://wordpress.org/themes/nirvana/

        It doesn't look nice like that, but I have a lot disabled because I don't have all of my content created, and pages set up yet. I'm just too busy to get it done in good time.

        1 Reply Last reply Reply Quote 1
        • NerdyDadN
          NerdyDad
          last edited by

          I was actually considering something like this for external as well for a project portfolio. Something similar to SW, but wouldn't be worried about it disappearing sometime soon.

          1 Reply Last reply Reply Quote 0
          • JaredBuschJ
            JaredBusch @scottalanmiller
            last edited by

            @scottalanmiller said in Setup a new website:

            @RojoLoco said in Setup a new website:

            I'm watching this thread closely as well... An intranet site would be a good training exercise is both installing Centos and creating a simple web page.

            For a lot of intranets, I recommend DokuWiki. Much easier install than LAMP, it's only LAP as there is no database, and it is very portable. WordPress is easily to make pretty, but DokuWiki is easier for a lot of documentation. Different times each would be ideal, but well work checking out.

            I disagree that there is anything 'hard' about a LAMP stack install on CentOS.

            DashrenderD 1 Reply Last reply Reply Quote 0
            • DashrenderD
              Dashrender @JaredBusch
              last edited by

              @JaredBusch said in Setup a new website:

              @scottalanmiller said in Setup a new website:

              @RojoLoco said in Setup a new website:

              I'm watching this thread closely as well... An intranet site would be a good training exercise is both installing Centos and creating a simple web page.

              For a lot of intranets, I recommend DokuWiki. Much easier install than LAMP, it's only LAP as there is no database, and it is very portable. WordPress is easily to make pretty, but DokuWiki is easier for a lot of documentation. Different times each would be ideal, but well work checking out.

              I disagree that there is anything 'hard' about a LAMP stack install on CentOS.

              I guess I'll be the judge of that 😉

              RojoLocoR JaredBuschJ 2 Replies Last reply Reply Quote 0
              • RojoLocoR
                RojoLoco @Dashrender
                last edited by

                @Dashrender said in Setup a new website:

                @JaredBusch said in Setup a new website:

                @scottalanmiller said in Setup a new website:

                @RojoLoco said in Setup a new website:

                I'm watching this thread closely as well... An intranet site would be a good training exercise is both installing Centos and creating a simple web page.

                For a lot of intranets, I recommend DokuWiki. Much easier install than LAMP, it's only LAP as there is no database, and it is very portable. WordPress is easily to make pretty, but DokuWiki is easier for a lot of documentation. Different times each would be ideal, but well work checking out.

                I disagree that there is anything 'hard' about a LAMP stack install on CentOS.

                I guess I'll be the judge of that 😉

                Me too! Rabble rabble rabble!!!!

                1 Reply Last reply Reply Quote 0
                • DashrenderD
                  Dashrender
                  last edited by

                  UG! XenServer 7 has 27 updates.. my new lab server... have to finish updating it first.

                  1 Reply Last reply Reply Quote 0
                  • JaredBuschJ
                    JaredBusch @Dashrender
                    last edited by

                    @Dashrender said in Setup a new website:

                    @JaredBusch said in Setup a new website:

                    @scottalanmiller said in Setup a new website:

                    @RojoLoco said in Setup a new website:

                    I'm watching this thread closely as well... An intranet site would be a good training exercise is both installing Centos and creating a simple web page.

                    For a lot of intranets, I recommend DokuWiki. Much easier install than LAMP, it's only LAP as there is no database, and it is very portable. WordPress is easily to make pretty, but DokuWiki is easier for a lot of documentation. Different times each would be ideal, but well work checking out.

                    I disagree that there is anything 'hard' about a LAMP stack install on CentOS.

                    I guess I'll be the judge of that 😉

                    Moved my guide over to ML (you are welcome @Minion-Queen).

                    https://mangolassi.it/topic/12501/installing-wordpress-on-centos-7-minimal

                    1 Reply Last reply Reply Quote 2
                    • JaredBuschJ
                      JaredBusch
                      last edited by

                      @Dashrender @RojoLoco

                      LAMP Stack.

                      yum -y install httpd;
                      yum -y install mariadb mariadb-server;
                      yum -y install php php-mysql php-xml php-gd wget nano;
                      systemctl enable httpd.service;
                      systemctl enable mariadb.service;
                      systemctl start mariadb;
                      firewall-cmd --zone=public --add-port=http/tcp;
                      firewall-cmd --zone=public --add-port=http/tcp --permanent;
                      systemctl reload firewalld;
                      systemctl start httpd;
                      
                      travisdh1T 1 Reply Last reply Reply Quote 2
                      • travisdh1T
                        travisdh1 @JaredBusch
                        last edited by

                        @JaredBusch No https port? I'm guessing that's what the first firewall-cmd is supposed to be? IE

                        firewall-cmd --zone=public --add-port=https/tcp --permanent;
                        
                        JaredBuschJ 1 Reply Last reply Reply Quote 0
                        • JaredBuschJ
                          JaredBusch @travisdh1
                          last edited by

                          @travisdh1 said in Setup a new website:

                          @JaredBusch No https port? I'm guessing that's what the first firewall-cmd is supposed to be? IE

                          firewall-cmd --zone=public --add-port=https/tcp --permanent;
                          

                          Actually no that should not even be there. Setting up HTTP S is a separate process

                          1 Reply Last reply Reply Quote 1
                          • stacksofplatesS
                            stacksofplates
                            last edited by stacksofplates

                            I would recommend using Drupal for an intranet. It's really powerful. I grabbed the one I made for a company and removed the company specific info. You can run through it and create items to test it out. That's a half custom theme I made. I took another theme and made a sub-theme from it. The theme could be changed at any time.

                            The user login is mangolassi and the password is mangolassi.it

                            http://dev-mangolassi-it.pantheonsite.io/

                            1 Reply Last reply Reply Quote 0
                            • stacksofplatesS
                              stacksofplates
                              last edited by

                              I also recommend developing the site on pantheon and then moving it to your server. It's much easier to develop there.

                              1 Reply Last reply Reply Quote 0
                              • 1
                              • 2
                              • 2 / 2
                              • First post
                                Last post