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

Pages: [1]
1
CentOS-WebPanel Bugs / Re: BUG on PHP Builder
« on: September 27, 2017, 05:53:53 PM »
Running the following commands thru SSH fixed this issue for me.

Code: [Select]
yum clean all
yum update

2
Installation / Re: CWP Version
« on: March 21, 2017, 05:18:25 PM »
You can view the version by checking the file /usr/local/cwpsrv/htdocs/resources/admin/include/version.php
Code: [Select]
[root@server]# cat /usr/local/cwpsrv/htdocs/resources/admin/include/version.php
<?php
$webpanel_version 
"0.9.8.153";
?>

If you just want version number
Code: [Select]
grep version /usr/local/cwpsrv/htdocs/resources/admin/include/version.php| awk '{print $NF}'| tr -d '"|;'
Example Output:
Code: [Select]
[root@server]# grep version /usr/local/cwpsrv/htdocs/resources/admin/include/version.php| awk '{print $NF}'| tr -d '"|;'
0.9.8.153


This may or may not work in future releases.

Pages: [1]