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

Pages: 1 ... 5 6 [7] 8
91
SSL / Re: Error Restarting cwpsrv Service for Servername SSL
« on: January 21, 2017, 06:10:30 PM »
I think that CWP itself (or developers) mixed up the conf files a bit. This is not nginx conf, its apaches confg and server is nginx. So nginx cant read conf because it's not for him, its for apache.

Nginx conf file should look like this:
Code: [Select]
server {
        listen   443;
        server_name example.org;

        root /usr/share/nginx/www;
        index index.html index.htm;

        ssl on;
        ssl_certificate /etc/nginx/ssl/example.org/server.crt;
        ssl_certificate_key /etc/nginx/ssl/example.org/server.key;
}

92
SSL / Re: How to remove LetsEncrypt Certificate
« on: January 21, 2017, 05:59:06 PM »
Go to SSL Cert Manager and simply remove domain from te list.

93
CentOS-WebPanel Bugs / Re: 500 Internal Server Error
« on: December 04, 2015, 01:04:18 PM »
I have same error when i use cms/script default .htaccess files.

94
CentOS-WebPanel GUI / Re: Where can I find Webpanel themes?
« on: November 13, 2015, 11:39:44 PM »
You cannot change theme in cwp. Also you cannot edit .css files because those files are locked by default. You can only wait for developers to allow theme editing or creating new one.

95
Updates / Re: 0.9.8.10 Thanks cwp team
« on: November 03, 2015, 03:50:13 PM »
Update? 0.9.8.10? What update? I din't get any update. :D

96
PHP / Re: LibSSH2
« on: November 03, 2015, 11:53:04 AM »
Module is loaded and working, i can use it from terminal, but can't call ssh2 functions from the php. Function ssh2_connect doesn't exist. So thats mean something block ssh2 to be called from the php.

I'll try to recompile module again later.

97
PHP / Re: libsodium
« on: November 03, 2015, 11:48:05 AM »
I fix it, not sure how but it's fixed now, i found a way to install it on one of the stackoverflow posts.

Whatever i try php will return error that there is no sodium functions, and if i try to install libsodium, return is "libsodium is alredy installed".

On the server without cwp i can install libsodium without problems, and works fine.

But anyway, thanks for answer.

98
PHP / Re: LibSSH2
« on: November 01, 2015, 02:20:19 PM »
How to enable ssh2 functions on th cwp ?

Extension is installed and loaded, but i can't call ssh2 functions from web, everything is fine but cwp block ssh2 function to be called from the web.

Why is blocked and how to enable it?

99
PHP / libsodium
« on: October 30, 2015, 06:45:11 PM »
Does anyone knows how to install php libsodium-dev on Centos (CWP) ? I tried a few different ways, but unsuccessfully.

100
Apache / Re: Apache is leaking memory bullten help!
« on: October 30, 2015, 03:59:44 AM »
Apache 2.4 have a known bug with mod_ssl, if you use mod_ssl try to start httpd without it.

101
Apache / Re: Apache is leaking memory bullten help!
« on: October 28, 2015, 10:35:21 PM »
You've got the answer:

Quote
Apache 2.4 isn't default version for centos 6 and in short, that isn't supported until we don't start to supporting it with centos7.

102
MySQL / Re: How to restore database backup in case mysql server break
« on: October 28, 2015, 05:16:13 PM »
Code: [Select]
mysql -u [username] -p [password] < alldatabases.sql.gz

103
FTP / Re: How to change ftp port
« on: October 28, 2015, 11:27:52 AM »
Why would an ISP do that? They do not.

If you are sure that u use correct connection port then you can try to setup your dmz settings in your router.

If you use root login then u must use the ssh port to login via sftp.

104
Suggestions / Simple button design suggestion
« on: October 24, 2015, 01:38:21 PM »
Replace those start, restart and stop spans/buttons with font icons instead of using real images, isn't much, but changes like that can improve page loading speed, and it will look much nicer with 3D button effect.



Replace the existing code with this:
Code: [Select]
<a class="btn btn-success btn-xs" href="#" ><span class="icon8 brocco-icon-play white"></span> Start</a>&nbsp;
<a class="btn btn-danger btn-xs" href="#" ><span class="icon8 brocco-icon-stop white"></span> Stop</a>&nbsp;
<a class="btn btn-warning btn-xs" href="#" ><span class="icon8 brocco-icon-refresh white"></span> Restart</a>

If you prefer black colored icons, then just replace span white to black, it will change icon color to black.

105
FTP / Re: FTP Login
« on: March 06, 2015, 11:45:17 PM »
Same error:  421 Unable to read the indexed puredb file (or old format detected) - Try pure-pw mkdb

On all created user accounts.

EDIT:  I restarted the FTP server and is now working properly. For every new account i'm restart ftp server and its work.  o.O

Pages: 1 ... 5 6 [7] 8