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 - cpanel_leaver

Pages: [1]
1
I have clamd service running.
But tried all config files to change option:

Code: [Select]
# Perform a database check.
# Default: 600 (10 min)
# SelfCheck 600
SelfCheck 3600

Config files I tried:
Code: [Select]
/etc/clamd.d/clamd.conf
/etc/clamd.d/amavisd.conf
/etc/clamd.d/scan.conf
/etc/clamd.conf

Then restarted clamd.service. But always stays on 10 minute check.

What config file is used?
Thanks








2
FTP / FTP starting again by itself (Pure-FTPd)
« on: March 19, 2022, 07:01:05 AM »
Now one year later still cannot find the solution:

I disable the ftp service in CWP pro dashboard:
Pure-FTPd  service is disabled.
after cron.daily the ftp server is running again.
No other services are starting Pure-FTPd. All Services monitor are disabled(from dashboard), Monit also not installed
No cronjobs or other services with Pure-FTPd are enabled or starting.

The only cronjob I suspect is coming from here from:
Code: [Select]
/etc/cron.daily/cpwBut I cannot check because of Ioncube encode.

content of /etc/cron.daily/cpw
Code: [Select]
/usr/local/cwp/php71/bin/php -d max_execution_time=1000000 -q /usr/local/cwpsrv/htdocs/resources/admin/include/cron.php
/usr/local/cwp/php71/bin/php -d max_execution_time=1000000 -q /usr/local/cwpsrv/htdocs/resources/admin/include/cron_backup.php


Maybe CWP admins can help clear this? Thanks

3
Apache / Example vhost conf template file for Codeigniter 4
« on: January 08, 2022, 08:42:58 AM »

Me too was surprised by the recent change where vhost config files in Apache are overwritten by the cronjob.
This is how I added my own templates, described also by the docs here:

http://wiki.centos-webpanel.com/webservers-vhost-templates

The vhost config are automatically rebuild with a cron job. (/etc/cron.daily/cwp)
If you need some custom entries in your vhost configs, they now will be deleted/overwritten.
This was a recent change in CWP Pro.

So you need to make custom template configs for your domains:

1. First check what your Webserver configuration is

mine is:

Webserver config:[/size] nginx ->apache ->php-fpm

2. Create templates files

The easiest way for me was with terminal/root:

in this directory: (or copy the existing default files)

Code: [Select]
cd /usr/local/cwpsrv/htdocs/resources/conf/web_servers/vhosts/httpd/php-fpm
Code: [Select]
cp default.stpl default_ci4_public.stpl
Code: [Select]
cp default.tpl default_ci4_public.stpl
NOTE: the template name for https and http MUST be the same, use only .tpl and .stpl as extension

3. Codeigniter edit config template to serve "/public" folder.

edit default_ci4_public.stpl and default_ci4_public.tpl and add "/public" to the following:

    DocumentRoot %docroot%/public
and
    <Directory "%docroot%/public">

4. Then create a custom config for your Domain

add the just created template files to the specific user and domain,
select the just created templates as defaull

From CWP Pro GUI:

   WebServers Domain Conf > select username > Custom config

Here you should see and choose your custom config templates:

The Apache Configuration

  Apache default vhost template type: php-fpm
  Apache default vhost template: default_ci4_public

5. rebuild the Webservers conf

Now your site should stay online, also after the cron job with CWP pro






In the first image you see the webserver config with the apache default vhost template: default_ci4_public,
which we just made





In this image you see the list with all the templates and also our custom template for codeigniter 4


4
FTP / Disabling Pure-FTPd in dashboard ignored and re-enabled after time
« on: November 21, 2021, 05:17:22 AM »
The pure-ftp server is not used so I want to disable the service. When clicking disable from the dashboard the pure-ftp server stops.
after a random time I see the cwpsrv service(and other services) restarted and also Pure-FTPd server is restarted.

I was looking through all the cronjobs, and cannot find anything that is restarting Pure-FTPd.

Only the
Code: [Select]
/usr/local/cwpsrv/htdocs/resources/admin/include/cron.php
I could not check because of ioncube.

Does anybody know where the service is restarted?
I saw another topic:
automatic restart is done by service monitor or monit in cwp, you should check that in cwp.admin

Monit is not enabled on the server and what or where is the service monitor?
thanks it would save a lot of time!
CWPpro version: 0.9.8.1101

5
Updates / Clamav and freshclam database update error
« on: August 01, 2021, 11:53:34 AM »
After updating to centos-release-7-9.2009.1.el7.centos.x86_64 and CWPpro version: 0.9.8.1078
I received mails with erros from this script: Cron <root@server> /usr/share/clamav/freshclam-sleep > /dev/null

Code: [Select]
ERROR: cdiff_apply: lseek(desc, -350, SEEK_END) failed
ERROR: downloadPatch: Can't apply patch
ERROR: cdiff_apply: lseek(desc, -350, SEEK_END) failed
ERROR: downloadPatch: Can't apply patch

It seems related to this issue from Clamav: https://blog.clamav.net/2021/07/psa-freshclam-database-download-issue.html

They suggest this solution:
If you are experiencing this same issue, the simplest solution is to delete your signature databases from /var/lib/clamav. Then, make sure your FreshClam configuration in /etc/clamav/freshclam.conf either has the ReceiveTimeout option set sufficiently high (E.g. 300 seconds). Alternatively, users can remove the ReceiveTimeout option entirely to disable the timeout.

After making these changes, you may re-enable your FreshClam service or run freshclam manually and you should find that it is working correctly again.

Just sharing this info

6
Hi,
As this problem was posted earlier here: http://forum.centos-webpanel.com/migration-from-other-control-panels/restore-from-cpanel-to-cwp/msg14694/#msg14694

After successfully exporting from Cpanel into CWP, also can see in phpmyadmin the database and user is created in mysql.
The Mysqlmanager is not showing the database and user.
The database can be accessed with the account name and password from the Cpanel export. So it is there and working but just not showing.

CWP version: 0.9.8.858 free

Pages: [1]