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.
121
Backup / Re: No way a user can restore backup in User Panel
« on: March 25, 2021, 08:19:43 AM »
A Restore Button in the User Panel would be great to restore Databases, FULL Account and/or particular Account files.
Actually there is really no way for the user to do a one click restore.
Actually there is really no way for the user to do a one click restore.
122
CentOS Configuration / Re: How to limit Visits per month
« on: March 23, 2021, 09:38:27 PM »
Push..
Any way to realize this?
Thanks
Any way to realize this?
Thanks
123
Backup / No way a user can restore backup in User Panel
« on: March 22, 2021, 04:39:12 PM »
It would be nice to have an option for Users to Restore their Backups.
There is no elegant way to do this, except of unzipping and overwriting the files and folders manually.
But there is no real restore option.
Could we have this in future versions?
There is no elegant way to do this, except of unzipping and overwriting the files and folders manually.
But there is no real restore option.
Could we have this in future versions?
124
Updates / Re: I want to check the update history.
« on: March 20, 2021, 09:32:41 PM »Yeah, the changelog is top secret information yet.
I know the developers work everyday with no weekends and trying to fix everything they see.
Yes but providing a changelog is something every good software should have.
Is it really that hard to let the users know whats new? Sometime there are new features and we can search for them.
If you are part of their team please, make an up to date changelog
125
CentOS 7 Problems / Re: Domain Redirect
« on: March 20, 2021, 07:47:50 AM »@josemnunez would you have a workaround for this kind of situationsPlease check if you have a redirect already captured in .htaccess
I have a similar problem, but I have CWP7.pro license and JUST Apache server (no Apache-Ngnix and Vanish) and when trying to redirect a subdomain to a specific page, it's not working.
The .htaccess file looks like:QuoteRewriteEngine on
RewriteOptions inherit
RewriteCond %{HTTP_HOST} ^www\.subdomain\.domain\.tld$
RewriteRule ^$ "https\:\/\/domain\.tld\/specific-page" [R=301,L]
Your solution would be just this:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^sub\.domain\.com$ [NC]
RewriteRule ^(.*)$ https://www.newdomain.com/$1 [L,R]
126
CentOS 7 Problems / Re: Domain Redirect
« on: March 20, 2021, 07:44:38 AM »
If running Apache and NGINX, nginx is your main Webserver and you need to use the nginx syntax for a redirect, don't try to use htaccess apache syntax.
Nginx Redirects are way simpler, you can open an empty .htaccess and just inserst something like that:
Redirect 301 / https://yournewdomain
thats all you need for an nginx redirect.
This will redirect your whole old domain to a new one.
Nginx Redirects are way simpler, you can open an empty .htaccess and just inserst something like that:
Redirect 301 / https://yournewdomain
thats all you need for an nginx redirect.
This will redirect your whole old domain to a new one.
127
Installation / Re: HTTP to HTTPS Redirection using NGINX + VARNISH + APACHE
« on: March 20, 2021, 07:32:09 AM »
This output is ok as you are using all 3 Webservers so NGINX is showing up as main Webserver.
Your caching headers seems not to use Varnish right now. you need to configure this for your desired domain on "Webservers --> Domain Config" and create a Config for your domain, just make sure you select the profile "nginx->varnish->apache->(php-fpm)" php-fpm only if you activated it.
and in the optional settings check to recreate the vhosts for this domain.
After that varnish should work for your domain, you can check it here: https://isvarnishworking.uk/
Your caching headers seems not to use Varnish right now. you need to configure this for your desired domain on "Webservers --> Domain Config" and create a Config for your domain, just make sure you select the profile "nginx->varnish->apache->(php-fpm)" php-fpm only if you activated it.
and in the optional settings check to recreate the vhosts for this domain.
After that varnish should work for your domain, you can check it here: https://isvarnishworking.uk/
128
Installation / Re: Subdomain is not working Only show .html page but not running php files
« on: March 20, 2021, 07:27:05 AM »
try to rebuild your php installation and make sure you are running at least php 7.x or higher.
129
Installation / Re: default website not reachable
« on: March 20, 2021, 07:17:48 AM »
Make sure you don't have varnish or your browser cached the old files.
You will always see the default page but after creating a website in the public_html folder you really should see your page.
Delete cached items in your browser and also restart varnish if used and CWP Cache on dashboard so you really get the actual site.
On Chrome you can open the dev console and right click on the refresh symbol beside the address bar and select hard refresh.
Also keep in mind pointing a new domain to your IP could take up to 48 hours depending on the hoster and how fast the DNS publication is working on your Hoster/Registrar
You will always see the default page but after creating a website in the public_html folder you really should see your page.
Delete cached items in your browser and also restart varnish if used and CWP Cache on dashboard so you really get the actual site.
On Chrome you can open the dev console and right click on the refresh symbol beside the address bar and select hard refresh.
Also keep in mind pointing a new domain to your IP could take up to 48 hours depending on the hoster and how fast the DNS publication is working on your Hoster/Registrar
130
Installation / Re: How can I completely turn off the DNS part of CWP
« on: March 20, 2021, 07:14:24 AM »
Most hosters do not allow you to open port 53 (DNS) in any way if you are a private customer and not a company.
So even with running DNS in CWP the CWP Zones aren't taken.
To make the DNS Zones working you really need to have port 53 open, and thats what most ISP deny for security reasons, and you need to set your CWP Nameservers on your Hoster/Registrar to work properly.
So also on mine, CWP DNS Zones are just here for info and i need to add SPF, DomainKey etc to my real hoster to work, as i don't have 53 open to the world.
Just don't care about the CWP local DNS zones or deactivate it like igor told you.
So even with running DNS in CWP the CWP Zones aren't taken.
To make the DNS Zones working you really need to have port 53 open, and thats what most ISP deny for security reasons, and you need to set your CWP Nameservers on your Hoster/Registrar to work properly.
So also on mine, CWP DNS Zones are just here for info and i need to add SPF, DomainKey etc to my real hoster to work, as i don't have 53 open to the world.
Just don't care about the CWP local DNS zones or deactivate it like igor told you.
131
Installation / Re: new account domains will only show CWP Test page
« on: March 20, 2021, 07:09:10 AM »
Make sure you don't have varnish or your browser cached the old files.
You will always see the default page but after creating a website in the public_html folder you really should see your page.
Delete cached items in your browser and also restart varnish if used and CWP Cache on dashboard so you really get the actual site.
On Chrome you can open the dev console and right click on the refresh symbol beside the address bar and select hard refresh.
You will always see the default page but after creating a website in the public_html folder you really should see your page.
Delete cached items in your browser and also restart varnish if used and CWP Cache on dashboard so you really get the actual site.
On Chrome you can open the dev console and right click on the refresh symbol beside the address bar and select hard refresh.
132
Installation / Re: CWP Installation argument not working
« on: March 20, 2021, 06:56:20 AM »
If you report it to the devs, it is not just Centos 8 same for CWP on Centos 7, i also tried to give php 7.4 as an argument but it doesn't work.
thanks
thanks
133
CentOS Configuration / Change Users Ressource Period
« on: March 17, 2021, 10:25:44 PM »
Hi,
How can i change the period of a users ressources?
EG: I created a User in the middle of the month, now his period also goes till 15th.
He would like to have his month from 1st to last day. Any way i can change the date of the ressource reset?
Thanks.
How can i change the period of a users ressources?
EG: I created a User in the middle of the month, now his period also goes till 15th.
He would like to have his month from 1st to last day. Any way i can change the date of the ressource reset?
Thanks.
134
CentOS 7 Problems / Re: PHP Defender/snuffleupagus fecks up PHP
« on: March 17, 2021, 08:24:29 PM »
Still the same Problem.
Activated PHP Defender today because there was another update to the .51 version.
So PHP-Defender on Basic, and now 2 hours later all sites with errors.
Uninstalled PHP-Defender, restarted PHP-FPM and all fine
Activated PHP Defender today because there was another update to the .51 version.
So PHP-Defender on Basic, and now 2 hours later all sites with errors.
Uninstalled PHP-Defender, restarted PHP-FPM and all fine
135
Information / Re: Looks like the ad spamming robots found the CWP forums
« on: March 16, 2021, 09:50:19 PM »
@Igor S.
This post last 2 Comments for example: https://forum.centos-webpanel.com/index.php?topic=10292.0
This post last 2 Comments for example: https://forum.centos-webpanel.com/index.php?topic=10292.0