#Phpmyadmin

37 messages · Page 1 of 1 (latest)

sacred sparrow
#

does anyone know when i do sudo apt install phpmyadmin it installed but does not work and when i do sudo sytemctl status phpmyadmin it gives me a error

white reefBOT
#

Hi there 👋
Thank you for creating a post on our Community Forum. Please keep in mind that we don't provide official support on Discord. This is a forum for the community, by the community. Meaning that help is not guaranteed. If at any point you believe your post is resolved, feel free to use the button below to close this automatically.
Now let's wait and see if someone of our lovely community can help you out!

discordtip TIP:

Need actual official support? Reach out to our customer care. zaplivechat

white reefBOT
#

💤 It's been a while and it looks like nobody is around or able to help you with this...
If you require actual official support please reach out to our support team. zaplivechat

tall cipher
#

What is the error?

sacred sparrow
tall cipher
#

That is normal, if you have already set up a web server, do you see it running?

sacred sparrow
#

when i go to my web page it should be on it give me this error

tall cipher
#

That's because your web page does not have an SSL Certificate. You can go on it anyway by clicking "Advanced" and continue to the website

sacred sparrow
#

it said this

tall cipher
#

Ah that's not the page you want to visit. You need your server ip and the port for the website.

#

The port should be 80, since it is not https

sacred sparrow
tall cipher
#

lol discord hides the port

sacred sparrow
#

xd

#

when i went to it this poped up

#

sorry i put my ip in for vps for a second on discord so the pic was not there for a sec

tall cipher
#

You see this because you haven't setup a page.

sacred sparrow
#

got ya just a quick question where would i set the page up again because i did have it set to php.webforms.live

tall cipher
#

You create the page in /var/www/html

sacred sparrow
#

ok thanks for all you help

#

ill sort that out soon as i am just having dinner

tall cipher
#

Alright, have a nice dinner.

sacred sparrow
#

thanks

#

i looked through the doc and i has confused me

tall cipher
#

It might be confusing for the first time, but it gets easier when you understand it.

sacred sparrow
#

got ya and when i looked in the /var/www/html what file would i need to be editing

tall cipher
#

You will be creating your website there.

  1. Create a folder in /var/www and put your website files.

  2. Create a server block in /etc/nginx/sites-available/

Example:

server {
    listen 80;
    root /var/www/example.com/html;
    index index.html;
    server_name example.com www.example.com;
}
  1. Link the website to enable it with the following command:
    sudo ln -s /etc/nginx/sites-available/example.com /etc/nginx/sites-enabled/

Finally restart nginx
sudo systemctl restart nginx

sacred sparrow
#

thanks ill try that later

tall cipher
#

Hey, did it work?

sacred sparrow
#

sorry i was busy i will try now

sacred sparrow
#

when i ran the test before i restarted nginx it showed this

sacred sparrow
tall cipher
#

You may want to check for typos in the conf files

tall cipher
#

Hey, any updates?