Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Dumgard

Pages: [1]
1
Installation / Reinstall Centos 7 Server / CWPpro not activating
« on: April 01, 2019, 08:30:42 PM »
Same static IP address.  Tried running the update script as well.  100% Fresh install.

Code: [Select]
[root@excalibur centos]# sh /scripts/update_cwp


====================================================
============= CentOS Web Panel Cron ================
====================================================


###########################
Firewall Flush Daily Blocks
###########################


######################
Update Server Packages
######################
sed: can't read /opt/alt/php-fpm*/usr/php/php.ini: No such file or directory

2
Information / Multiple Volumes
« on: November 01, 2018, 05:29:10 PM »
Hello,

I tried looking and searching but I did not yet find this topic discussed, nor am I quite sure where this falls under --- an information/feature question, a feature request, a centos question, etc.

I am looking to add multiple volumes to my server and CWP installation.  Currently, the server is running on an 80GB disk.  I would like the ability if possible to mount and add additional volumes to CWP users for their folder paths.

How can this be done?  I attempted to create and attach an additional 100GB volume, I partitioned and formatted it, and then I was able to mount it to the home folder path at /home/USER/public_html/

It appeared to mount properly, and a new directory lost+found appeared, as well as index.html disappearing.  I attempted to make a new index.html, but when I would browse to the domain, it just showed a 100% blank directory.

After unmounting the volume, Apache appeared to go back to the default apache page as normal.

Not sure if it's just me not quite understanding how to mount and integrate it, or if CWP does not support this ability.

Thank you very much in advance.

3
Apache / Domain in Browser doesn't display from user directory
« on: October 29, 2018, 02:43:59 PM »
I installed CWP, went pro, added mod security.  Went to add a directory and populate it, so I did so and verified that the files were changed to be owned and grouped to the proper user account, and had permissions set correctly.  I even did the User Accounts -> Fix Permissions.

No matter what I do, the actual in browser domain.com shows the default apache page.  It also does not detect file changes, renames, addition of directories or anything else.  This is after using winscp, and the built in cwp file manager.  Even tried to add on extplorer, and it won't recognize the new directory that addon created.  It's as if the domain is somehow locked into the apache directory instead of the user's home/public_html directory where it should be.

Here is the Apache vhosts.conf
Code: [Select]
# vhost_start example.com
<VirtualHost myip:80>
ServerName example.com
ServerAlias www.example.com
ServerAdmin webmaster@example.com
DocumentRoot /home/example/public_html
UseCanonicalName Off
ScriptAlias /cgi-bin/ /home/example/public_html/cgi-bin/

# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/example/example.com/*.conf"

<IfModule mod_userdir.c>
UserDir disabled
UserDir enabled example
</IfModule>

<IfModule mod_suexec.c>
SuexecUserGroup example example
</IfModule>

<IfModule mod_suphp.c>
suPHP_UserGroup example example
suPHP_ConfigPath /home/example
</IfModule>

<Directory "/home/example/public_html">
AllowOverride All
</Directory>

</VirtualHost>
# vhost_end example.com

It appears to be pointing properly to /home/xotikz/public_html but nothing on the browser has it appearing that way.  I edited the base index.html file in the public_html folder, then I even changed it's name to add a _ so that it would go away and instead display a 404 or something.  No change.  I'm obviously missing something, but not sure where else I'd go look at settings other than the vhosts.

I also tried rebuilding vhosts multiple times, as well as played around with the SSL.

Added:  Not sure if this is an associated issue, but having an issue trying to generate an AutoSSL:

'DNS of your domain doesn't point to this server or you have htaccess restrictions',

Can not make a certificate for main domain or subdomain.  I stopped and disabled named locally since I use a third party DNS service.

Pages: [1]