Where do I install if I do not have html_public directory?

MrMailWizz

New Member
Sorry this is probably a silly question.... :(

I have Centos7 and I just installed CWP control panel.

I am now installing MailWizz amd the instructions say to put it in a new directory under the html_public directory.

Under Home, I have user "centos" and no html_public directory.

and under /var there is no www directory either.

I am a little confused, should I create the directory,
and if so, where?

Thanks
 
Sorry this is probably a silly question.... :(

I have Centos7 and I just installed CWP control panel.

I am now installing MailWizz amd the instructions say to put it in a new directory under the html_public directory.

Under Home, I have user "centos" and no html_public directory.

and under /var there is no www directory either.

I am a little confused, should I create the directory,
and if so, where?

Thanks
Please follow this video to install mailwizz: https://www.mailwizz.com/kb/install-steps/
If you don't have a public_html folder you can create it manually, but i think is a good idea to ask your hosting provider to assist you to create these folders, because you also need to add some permissions for the user to work within the directory created.

bellow are steps to do if you want to try:

Navigate to the /var/ directory by running the following command:
Code:
cd /var

Create the www directory:
Code:
sudo mkdir www
Create the html directory:
Code:
cd /var/www/
sudo mkdir html

Change the ownership of the html directory to your user (replace <your_username> with your actual username):
Code:
sudo chown -R <your_username>:<your_username> html
This step ensures that you have the necessary permissions to work within the directory.

Now, you should have a directory structure like /var/www/html/.
 
CWP is just the Web Panel. Did you install Apache/Nginx? The fact that the /var/www folder is missing means that may be missing.
 
Back
Top