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.


Messages - Dutch_Mike

Pages: 1 [2] 3
16
PHP / Re: php-fpm83 not installing well / working
« on: January 30, 2024, 10:22:57 PM »
I followed the instructions but its still not working,

lets hope this is working. i cant copy paste the output as a code. the forum doesnt allow. It would come in handy when the forom mods would make a list of what kind of words or codes are not allowed, instead of letting payin customers floating around in the dark when they get a "no permission. not allowed to..... "

i really get the sh i ts of this i can even post a link to a screenshot. im getting frustrated as f*** wit this amateurisic hassle...

after 3 years of hassles and a lot of missery i think its time to move on to another panel thats working better. this is no fun anymore.

17
Other / Re: Cant post a reply on my own started topic
« on: January 30, 2024, 10:18:38 PM »
lets see if this is working.

i just tried to post a a code of the result of the reinstall. nothing fancy.
but it makes no sense.. why can i make a new topic and not reply to the same topic. ?

18
Other / Cant post a reply on my own started topic
« on: January 30, 2024, 01:51:25 PM »
Forbidden
You don't have permission to access this resource.

is what i get after i pushed the post button.
As you see i dont have troubles creating a new post.

HELP

19
PHP / php-fpm83 not installing well / working
« on: January 29, 2024, 09:46:25 PM »
I have tried installing php-fpm83 about 10 times . i did 2 times a new setup of my bare metal server. i downloaded and have used the latest 8 stream version ( Kernel: Linux 4.18.0-535.el8.x86_64) and the version before that. no matt what i do, i can not get 8,3 installed working. during install i get multiple errors. can not find can not make. I installed while firewall was disabled as i found out that a rule in my firewall ( ip that tried to gain access and was automatic banned, but no idea wich) was blocking access to the repositories. so that cant be the issue either.

Im honestly a bit done with CWP. i have so many little issues that not getting solved.... and i after 10 times reinstalling im a bit done honestly.

anyone any clue what i can do ?

i will paste some messages from the cli
this is the last part of the installation with errors.

Code: [Select]
Package libsodium-devel-1.0.18-2.el8.x86_64 is already installed.
Dependencies resolved.
Nothing to do.
Complete!
chdir: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 28505  100 28505    0     0  51360      0 --:--:-- --:--:-- --:--:-- 51360
/usr/local/cwpsrv/htdocs/resources/conf/el8/php-fpm_selector/external_modules/8.3/sodium.sh: line 9: /opt/alt/php-fpm83/usr/bin/phpize: No such file or directory
/usr/local/cwpsrv/htdocs/resources/conf/el8/php-fpm_selector/external_modules/8.3/sodium.sh: line 10: ./configure: No such file or directory
make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target 'install'.  Stop.
/usr/local/cwpsrv/htdocs/resources/conf/el8/php-fpm_selector/external_modules/8.3/sodium.sh: line 14: /opt/alt/php-fpm83/usr/bin/php-config: No such file or directory
ERROR: Missing extension file /sodium.so

Build Completed
###################


Notification added
this is the result when i do a " systemctl status php-fpm83 "
Code: [Select]
]# systemctl status php-fpm83
● php-fpm83.service - The PHP FastCGI Process Manager
   Loaded: loaded (/usr/lib/systemd/system/php-fpm83.service; enabled; vendor preset: disabled)
   Active: failed (Result: exit-code) since Mon 2024-01-29 22:20:55 CET; 7min ago
  Process: 554732 ExecStart=/opt/alt/php-fpm83/usr/sbin/php-fpm --nodaemonize --fpm-config /opt/alt/php-fpm83/usr/etc/php-fpm.conf (code=exited, status=203/EXEC)
 Main PID: 554732 (code=exited, status=203/EXEC)

Jan 29 22:20:55 stdwwwsrv001.standerhosting.nl systemd[1]: Started The PHP FastCGI Process Manager.
Jan 29 22:20:55 stdwwwsrv001.standerhosting.nl systemd[1]: php-fpm83.service: Main process exited, code=exited, status=203/EXEC
Jan 29 22:20:55 stdwwwsrv001.standerhosting.nl systemd[1]: php-fpm83.service: Failed with result 'exit-code'.

when i do a "ls /opt/alt/php-fpm83/usr/lib/php/extensions"
This is the output
Code: [Select]
ls: cannot access '/opt/alt/php-fpm83/usr/lib/php/extensions': No such file or directory
When i do "systemctl | grep php "
This is the output
Code: [Select]
cwp-phpfpm.service                                                                               loaded active running   The PHP FastCGI Process Manager
  cwpsrv-phpfpm.service                                                                            loaded active running   The PHP FastCGI Process Manager
  php-fpm53.service                                                                                loaded active running   The PHP FastCGI Process Manager
  php-fpm72.service                                                                                loaded active running   The PHP FastCGI Process Manager
  php-fpm82.service                                                                                loaded active running   The PHP FastCGI Process Manager
● php-fpm83.service                                                                                loaded failed failed    The PHP FastCGI Process Manager

I have tried to install with the basic settings. turned off ioncube, and still same.
I have zipped and uploaded the complete php-selector-rebuild.log
https://gofile.io/d/5rzfxS
Hope someone can figure out whats wrong,
So im serious in need of help / assistance.

20
I may have a suggestion for those running the CWP on a linux distribution.
To improve the  upload to your webclients you can implement a different way how the TCP stack is handeling the requests.

Quote
Enable TCP BBR and other network stack optimizations
BBR is a new congestion control agorithm which dramatically decreases the time needed for a TCP connection to ramp up to maximum speed. It also contains improvements to counter other problems like router buffer bloat which causes network latency spikes.

To enable BBR you need you have kernel version 4.9 or higher. See your kernel version with uname -a. On Ubuntu you can upgrade to a newer kernel by enabling HWE.

Create a file called /etc/sysctl.d/60-bbr.conf with the following contents:

Code: [Select]
net.core.default_qdisc = fq_codel
net.ipv4.tcp_congestion_control = bbr
net.ipv4.tcp_notsent_lowat = 16384
net.ipv4.tcp_slow_start_after_idle = 0

After doing that you can run sysctl -p or reboot to apply the changes.
Verify that it’s working with this command: sysctl net.ipv4.tcp_congestion_control. It should return bbr.

Here a link to get more information on how to test it before and after implementation. https://www.cyberciti.biz/cloud-computing/increase-your-linux-server-internet-speed-with-tcp-bbr-congestion-control/

21
PHP / Failed to Download PHP version 8.1.2!
« on: January 31, 2022, 01:17:07 PM »
After going to the PHPO switcher and telling i want to upgrad from 8.1.1 to 8.1.2 the tail log gives me this  message after about 3 minutes

/usr/local/src/php-rebuild.sh: line 78: [: -ge: unary operator expected
Failed to Download PHP version 8.1.2!

i tried this on 2 equal same machines and both have same error.

the machine doesnt finish anything and the version stays 8.1.1


22
Hi Sandeep,

Thanks or the reply.

Why is that done this way ? does it mean you cant use or are advised not to use redirection module when you run other then apache ?

Regards,
Mike

23
Hello,

I wanted to redirect a domain name i host on my server to another server that i dont own, so i was looking for the redirect option under domain options in the userpanel. It is not there to be found as you can see.


However, when for example i click one of the modules under the domain option and i click with my mouse on the address bar and change the clicked module name into "redirect" i do get the redirect page / module and i can do the things i wanted... and it is still functioning as you can see


So my request to the makers / programmers, is it possible you just put the redirect link in function back in the domain menu again ? That is more convenient to access and a less hassle

Thanks in advance
regards,
Mike

im running centos 8 stream updated to the last updates

24
CentOS 7 Problems / Re: Daily Spamassassin update reports error
« on: March 14, 2021, 01:54:33 PM »
i have the same issue since 5 days or so

channel: no 'mirrors.sought.rules.yerp.org' record found, channel failed
14-Mar-2021 04:52:56: SpamAssassin: Unknown error code 3 from sa-update

running centos 7 with latests updates.

25
CentOS-WebPanel GUI / Re: Copy files to another folder not working
« on: November 22, 2020, 11:48:48 PM »
I am running it on a sabrent rocket 2tb nvme pci 4.0 disk. so im pretty sure its not my disk is to slow.

its simple. i have a folder i upload all the zipped files in i need to update for example drupal. i use the extract command. works fine and a drupal file is about 30 mb.
then i go inside the drupal folder select all and use the command copy. i select the new folder and click copy. it almost immediatly gives the screen that its done.. but when i go to take a look in the destination folder.. nothing happened. no new files copied.

when i choose move instead.. it moved all the files in the root folder.. but all the sub folders are being left behind.

it all worked fine before, until the update came to the new file explorer. so you must have changed something.
where can i find the logs for the file manager to find out the issues it had during the copy or moving ?

regards
Mike


26
CentOS-WebPanel GUI / Re: Copy files to another folder not working
« on: October 18, 2020, 09:45:36 PM »
I have exactly the same experience....
the graphical starts to spin and u can wait for hours... only 1 folder is being made but empty..

it doesnt work anymore since the update of the file manager.

I just found out... when i choose MOVE instead of COPY... it works half. the source folder is empty and the target folder looks like to be filled up... but isnt. folders are moved but the content inside the folders, half of is missing or miss placed in the wrong folders.

27
CentOS-WebPanel Bugs / cwp8
« on: October 16, 2020, 01:01:31 AM »
Hi,
I installed as a vm a new centos 8 minimal and choose for cwp8 with the installation.
But after i logged in it still shows me cwp7 pro in the upper left corner.
Is that ok ? or did something went wrong ?
Does it has to show somewhere cwp8 pro ?

Regards,
Mike

28
Hi Sandeep and Team.

I wanted to let you know that now both the switcher and the selector did its job and installed php 7.4.7. both running well.

Thanks for solving

Mike

29
Hi Sandeep,

i havbe been trying some more, the installation with the version switcher looks ok at first but it still not installs complete and ends hanging  in the log and my my panel still working in php 7.3.19

the selector issue is still the same. i upload some log files for you in the case you want to see where it goes wrong
hope u able to find it soon

Regards
Mike

https://plik.root.gg/file/YbcFKkIh7fP0zSeJ/r2lo8ITO4d3ljpnv/PHP%20rebuild%20logs.7z

30
Hi,

i tried to install PHP-FPM 7.4 through the selector in the panel, but it doesn do anything.
When i look in the log file and in my console with the command tail -f /var/log/php-selector-rebuild.log i get this as output:

-2020-06-17 03:38:07--  http://dl1.centos-webpanel.com/files/php/selector/el7/php-dependencies.sh
Resolving dl1.centos-webpanel.com (dl1.centos-webpanel.com)... 37.187.72.216
Connecting to dl1.centos-webpanel.com (dl1.centos-webpanel.com)|37.187.72.216|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1011 [application/x-sh]
Saving to: '/usr/local/src/php-dependencies.sh'

     0K                                                       100% 98.1M=0s

2020-06-17 03:38:07 (98.1 MB/s) - '/usr/local/src/php-dependencies.sh' saved [1011/1011]

Redirecting to /bin/systemctl restart httpd.service

Build Completed
###################


Error:Can't add notification!

Help ?

Regards,
Mike

Pages: 1 [2] 3