fuzmic Posted October 14, 2021 Posted October 14, 2021 Hi guys I only know how to use FTP to view the website files. Thus i don't see the mysql\data files. So is there any where to view/edit the tables/records in my mysql when we don't have cpanel's phpadmin.
Flaze Posted October 14, 2021 Posted October 14, 2021 You can download phpMyAdmin and copy the files to your public_html folder and manage your database there.
fuzmic Posted October 14, 2021 Author Posted October 14, 2021 Great 👍 but where can I find database 🥺
wolstech Posted October 14, 2021 Posted October 14, 2021 There is no file you can download via FTP. If you need the database as a file, you can use PhpMyAdmin to export it, which will produce a .sql file that you download in your browser.
fuzmic Posted October 15, 2021 Author Posted October 15, 2021 Wolstech Bro I have a phpmyadmin running in the local host, but i have no clue how to get to Tommy .. i think i am missing a few steps here. Please enlighten.
wolstech Posted October 15, 2021 Posted October 15, 2021 It won't work on your computer. You have to upload it to your account (in a folder that's inside public html), then access it through your domain like any other script.
fuzmic Posted October 15, 2021 Author Posted October 15, 2021 Oh I see .. Thank you bro. One more mental block .. what is phpmyadmin look like to be uploaded or better still take me there to get it .. a lesson for me .. Salutations
fuzmic Posted October 16, 2021 Author Posted October 16, 2021 I am been trying to do this with my limited knowledge. As a start it involve knowledge of Linux plus heaps .. php, apache
wolstech Posted October 16, 2021 Posted October 16, 2021 You literally just download it here, unpack it, and upload the files. https://www.phpmyadmin.net/downloads/ You may need to edit the configuration file (specifically the authentication options and the hostname, which should be localhost) as well.
fuzmic Posted October 16, 2021 Author Posted October 16, 2021 Bro I think you have place a ladder. 🙏📢Thank you
fuzmic Posted October 17, 2021 Author Posted October 17, 2021 (edited) I am ALMOST THERE i think. Thus if the index.php is in the public_html/phpMyAdm/setup, browsing peace2u.heliohost.org/phpMyAdm/setup/index.php will open the phpMyAdmin but still not there yet, still need my patient friends to get me across; the familiar cpanel phpMyAdmin interface is not showing. I set the server to localhost but as the server holds all other database and users, here my question Do i use the username and password in my configuration.php (not root & no password) What else is missing to show up my database and tables. Please help. Edited October 17, 2021 by fuzmic higher in the ladder
wolstech Posted October 19, 2021 Posted October 19, 2021 There's a way to set it so it asks for username and password every time when you log into it. I'll take a look at my install when I'm at a computer for you and figure out the settings.
wolstech Posted October 19, 2021 Posted October 19, 2021 The auth section of the PMA config.inc.php on lily looks like this, and it should work on Tommy too since the server is localhost there as well. There is no username or password line at all. Change the blowfish secret line to 32 random characters. /** * This is needed for cookie based authentication to encrypt password in * cookie. Needs to be 32 chars long. */ $cfg['blowfish_secret'] = '12345678901234567890123456789012'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */ /** * Servers configuration */ $i = 0; /** * First server */ $i++; /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server parameters */ $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['AllowNoPassword'] = false;
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now