Blank page when trying to reach phpmyadmin











up vote
3
down vote

favorite
2












I try to setup phpmyadmin to use mysql on my Ubuntu 16.04 machine. But when I go on "localhost/phpmyadmin" I only see a blank page. I've tried some things like to include the conf, but it didnt change anything (How to solve the phpmyadmin not found issue after upgrading php and apache?).



My goal is to use owncloud. So I created a user root and a user owncloud with the passwords. I specified the the user root as the phpmyadmin user with the pasword and



sudo dpkg-reconfigure phpmyadmin


went well. But phpmyadmin doen't load.
What am I doing wrong?



SOLUTION
Some packets were missing for php 7:



sudo apt-get install php-mbstring php7.0-mbstring php-gettext
sudo service apache2 restart









share|improve this question
















bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.



















    up vote
    3
    down vote

    favorite
    2












    I try to setup phpmyadmin to use mysql on my Ubuntu 16.04 machine. But when I go on "localhost/phpmyadmin" I only see a blank page. I've tried some things like to include the conf, but it didnt change anything (How to solve the phpmyadmin not found issue after upgrading php and apache?).



    My goal is to use owncloud. So I created a user root and a user owncloud with the passwords. I specified the the user root as the phpmyadmin user with the pasword and



    sudo dpkg-reconfigure phpmyadmin


    went well. But phpmyadmin doen't load.
    What am I doing wrong?



    SOLUTION
    Some packets were missing for php 7:



    sudo apt-get install php-mbstring php7.0-mbstring php-gettext
    sudo service apache2 restart









    share|improve this question
















    bumped to the homepage by Community 2 days ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.

















      up vote
      3
      down vote

      favorite
      2









      up vote
      3
      down vote

      favorite
      2






      2





      I try to setup phpmyadmin to use mysql on my Ubuntu 16.04 machine. But when I go on "localhost/phpmyadmin" I only see a blank page. I've tried some things like to include the conf, but it didnt change anything (How to solve the phpmyadmin not found issue after upgrading php and apache?).



      My goal is to use owncloud. So I created a user root and a user owncloud with the passwords. I specified the the user root as the phpmyadmin user with the pasword and



      sudo dpkg-reconfigure phpmyadmin


      went well. But phpmyadmin doen't load.
      What am I doing wrong?



      SOLUTION
      Some packets were missing for php 7:



      sudo apt-get install php-mbstring php7.0-mbstring php-gettext
      sudo service apache2 restart









      share|improve this question















      I try to setup phpmyadmin to use mysql on my Ubuntu 16.04 machine. But when I go on "localhost/phpmyadmin" I only see a blank page. I've tried some things like to include the conf, but it didnt change anything (How to solve the phpmyadmin not found issue after upgrading php and apache?).



      My goal is to use owncloud. So I created a user root and a user owncloud with the passwords. I specified the the user root as the phpmyadmin user with the pasword and



      sudo dpkg-reconfigure phpmyadmin


      went well. But phpmyadmin doen't load.
      What am I doing wrong?



      SOLUTION
      Some packets were missing for php 7:



      sudo apt-get install php-mbstring php7.0-mbstring php-gettext
      sudo service apache2 restart






      phpmyadmin






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 13 '17 at 12:23









      Community

      1




      1










      asked Apr 24 '16 at 14:12









      Christoph

      2316




      2316





      bumped to the homepage by Community 2 days ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 2 days ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          I had the same issue with 16.04 ubuntu desktop.
          First configure phpmyadmin with apache2, append the following at the last line of the /etc/apache2/apache.conf file



          #Include phpmyadmin: 
          Include /etc/phpmyadmin/apache.conf


          Also make sure that libapache2-mod-php has been installed
          if not then install the module



          sudo apt-get install libapache2-mod-php


          Then after installing the following package, my issue was solved.



          sudo apt-get install php-gettext





          share|improve this answer





















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f761847%2fblank-page-when-trying-to-reach-phpmyadmin%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            I had the same issue with 16.04 ubuntu desktop.
            First configure phpmyadmin with apache2, append the following at the last line of the /etc/apache2/apache.conf file



            #Include phpmyadmin: 
            Include /etc/phpmyadmin/apache.conf


            Also make sure that libapache2-mod-php has been installed
            if not then install the module



            sudo apt-get install libapache2-mod-php


            Then after installing the following package, my issue was solved.



            sudo apt-get install php-gettext





            share|improve this answer

























              up vote
              0
              down vote













              I had the same issue with 16.04 ubuntu desktop.
              First configure phpmyadmin with apache2, append the following at the last line of the /etc/apache2/apache.conf file



              #Include phpmyadmin: 
              Include /etc/phpmyadmin/apache.conf


              Also make sure that libapache2-mod-php has been installed
              if not then install the module



              sudo apt-get install libapache2-mod-php


              Then after installing the following package, my issue was solved.



              sudo apt-get install php-gettext





              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                I had the same issue with 16.04 ubuntu desktop.
                First configure phpmyadmin with apache2, append the following at the last line of the /etc/apache2/apache.conf file



                #Include phpmyadmin: 
                Include /etc/phpmyadmin/apache.conf


                Also make sure that libapache2-mod-php has been installed
                if not then install the module



                sudo apt-get install libapache2-mod-php


                Then after installing the following package, my issue was solved.



                sudo apt-get install php-gettext





                share|improve this answer












                I had the same issue with 16.04 ubuntu desktop.
                First configure phpmyadmin with apache2, append the following at the last line of the /etc/apache2/apache.conf file



                #Include phpmyadmin: 
                Include /etc/phpmyadmin/apache.conf


                Also make sure that libapache2-mod-php has been installed
                if not then install the module



                sudo apt-get install libapache2-mod-php


                Then after installing the following package, my issue was solved.



                sudo apt-get install php-gettext






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 19 '16 at 7:09









                Yogesh

                1011




                1011






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f761847%2fblank-page-when-trying-to-reach-phpmyadmin%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                    Mangá

                     ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕