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.
1246
CentOS 6 Problems / Re: CentOS6 Upgrade
« on: August 28, 2017, 10:01:43 PM »
shashank
- you should disable webtatic repo in your yum configuration probably in the folder /etc/yum.repos.d/ and then check your yum again
kajlaajay
- that is an very old version of cwp, latest for centos 6 is 0.9.8.267 (currently by checking latest installer) so you should proceed with an update
- you should disable webtatic repo in your yum configuration probably in the folder /etc/yum.repos.d/ and then check your yum again
kajlaajay
- that is an very old version of cwp, latest for centos 6 is 0.9.8.267 (currently by checking latest installer) so you should proceed with an update

1247
How to / Re: Change domain to existing user
« on: August 28, 2017, 09:57:32 PM »
you can simply add new domain as an addon domain as the easiest option.
1248
SSL / Re: SSL with subdomains, wildcard problem
« on: August 28, 2017, 09:56:21 PM »
you can report any issue by using website contact form
http://centos-webpanel.com/contact
http://centos-webpanel.com/contact
1249
Information / Re: PHP or Apache disabled functions
« on: August 28, 2017, 09:54:47 PM »
to get apache modules use this command
/usr/local/apache/bin/httpd -M
to get php modules use this command
php -m
by default there are disabled functions.
what exactly you have missing ?
/usr/local/apache/bin/httpd -M
to get php modules use this command
php -m
by default there are disabled functions.
what exactly you have missing ?
1250
CentOS-WebPanel Bugs / Re: CGI not working out-of-the-box - mod_cgid.so not loaded
« on: August 26, 2017, 09:28:49 AM »
You can find instructions for running cgi scripts securely here
http://wiki.centos-webpanel.com/how-to-run-cgi-scripts-with-apache
http://wiki.centos-webpanel.com/how-to-run-cgi-scripts-with-apache
1251
Installation / Re: Executing Perl/Python
« on: August 26, 2017, 09:25:05 AM »
to me this sounds like you have not loaded required apache modules to run that scripts
I would recommend following this instructions as they also include security info for running cgi scripts
http://wiki.centos-webpanel.com/how-to-run-cgi-scripts-with-apache
I would recommend following this instructions as they also include security info for running cgi scripts
http://wiki.centos-webpanel.com/how-to-run-cgi-scripts-with-apache
1252
SSL / Re: Getting error when requesting SSL cert
« on: August 26, 2017, 08:45:16 AM »
try checking domain redirection (probably .htaccess file) as it redirects to invalid location
http://scriptophobia.com redirects to https://%25domain_name/
http://scriptophobia.com redirects to https://%25domain_name/
1253
Updates / Re: When new version CWP ?
« on: August 26, 2017, 08:35:48 AM »
all cwp servers have automatic updates, by checking the latest installer and the version in it, you are running the latest version.
http://dl1.centos-webpanel.com/files/cwp-el7-latest
there is a big version updated expected soon but the real release date is still not familiar, only know is that is coming very soon.
http://dl1.centos-webpanel.com/files/cwp-el7-latest
there is a big version updated expected soon but the real release date is still not familiar, only know is that is coming very soon.
1255
Apache / Re: creating new files causes 500 error
« on: August 25, 2017, 11:00:10 PM »
have you added only " -u 022" at the end of the line ?
1256
Apache / Re: creating new files causes 500 error
« on: August 25, 2017, 10:50:23 PM »
this is an umask issue causing the files to have group writeable permissions, edit file "/etc/ssh/sshd_config"
find this line:
now restart ssh and try to login and upload files again
to fix permissions for already uploaded files use this command
find this line:
Code: [Select]
Subsystem sftp /usr/libexec/openssh/sftp-server
Changed it toCode: [Select]
Subsystem sftp /usr/libexec/openssh/sftp-server -u 022
now restart ssh and try to login and upload files again
Code: [Select]
service sshd restart
to fix permissions for already uploaded files use this command
Code: [Select]
chmod g-w FILENAME
1258
E-Mail / Re: Is it possible for webmail/roundcube to send outbound via external SMTP account?
« on: August 25, 2017, 09:31:00 PM »
that is simple with roundcube, edit file /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php
and set ip or hostname of the smtp server
and set ip or hostname of the smtp server
Code: [Select]
$config['smtp_server'] = 'localhost';
1259
Information / Re: quota in CWP
« on: August 25, 2017, 09:22:04 PM »
building complete new system isn't an easy task so you would probably need to wait like we also

1260
CentOS 7 Problems / Re: Magento 1.9 & Varnish:
« on: August 25, 2017, 09:19:37 PM »
by reading this
I would say that your backend port is 8181 and not 8080.
Also you would need to make your configuration files in varnish and make sure its correct, try googling your error, example:
https://github.com/nexcess/magento-turpentine/issues/278
Code: [Select]
tcp6 0 0 :::8181 :::* LISTEN 1909/httpd
I would say that your backend port is 8181 and not 8080.
Also you would need to make your configuration files in varnish and make sure its correct, try googling your error, example:
https://github.com/nexcess/magento-turpentine/issues/278