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

Pages: 1 [2]
16
MySQL / phpMyadmin Error Any user ?
« on: February 21, 2016, 09:27:18 PM »
Hi;

phpMyAdmin it gives each user the same error ?
Why is he doing this ?
What is the solution ?

Thx...


Code: [Select]
The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. Find out why.
      Or alternately go to 'Operations' tab of any database to set it up there.

17
CentOS-WebPanel GUI / Re: IP addresses of all visitors ???
« on: February 06, 2016, 06:45:40 PM »
I use:

Code: [Select]
sub vcl_recv { include "/etc/varnish/sites.vcl";
remove req.http.X-Forwarded-For;
set req.http.X-Forwarded-For = client.ip;
[insert the rest of your vcl_recv]
}

This alone won't work because all you're doing is passing the info to apache, you also have to tell apache to log it:
In /usr/local/conf/httpd.conf
change your logging format to:
LogFormat "%{X-Forwarded-For}i %l %u %t %v \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
and make sure it says "combined" after your logging path:
CustomLog "/usr/local/apache/logs/access_log" combined
restart apache (service httpd restart)

I made the corrections as you said.

however, the situation looks the same server as the IP address of the user. :( :( :( :(

18
CentOS-WebPanel GUI / Re: IP addresses of all visitors ???
« on: January 25, 2016, 10:32:41 AM »
Thanks for the reply.
However, some modes can handle it. I think.


This code does not solve the problem


Code: [Select]
if (req.restarts == 0) {
  if (req.http.X-Forwarded-For) {
    set req.http.X-Forwarded-For = req.http.X-Forwarded-For + ", " + client.ip;
  } else {
    set req.http.X-Forwarded-For = client.ip;
  }
}


However, I think I need php module?


This does not solve the problem? How did you solve first?

regards

19
CentOS-WebPanel GUI / Re: IP addresses of all visitors ???
« on: January 24, 2016, 08:47:31 PM »
Yes running varnish ?

20
CentOS-WebPanel GUI / IP addresses of all visitors ???
« on: January 24, 2016, 07:26:12 PM »
ex. Server ip adress : 123.123.123.123

Any visitors IP address: 123.123.123.123

the same IP address of all visitors why?

please help :( :(

21
Information / Processes List ?
« on: November 29, 2015, 01:29:26 PM »
Hi All...

Is it normal to be so big list of processors?

I wonder is there any unnecessary processes running?


Number of processes: 130

22
CentOS-WebPanel GUI / Re: File not found? - Premature end of script headers
« on: November 23, 2015, 09:11:43 PM »
 :( :( :( :( :( :( :( :( :( :( :(

23
CentOS-WebPanel GUI / File not found? - Premature end of script headers
« on: November 23, 2015, 01:37:23 PM »
Hello friends

This gives reason for failure? "Premature end of script headers : js.php "

Log error :  Premature end of script headers : js.php


When I try to access the file on the domain : Internal Server Error


The file exists.
But the record says no?

24
E-Mail / Re: RoundCube not update ?
« on: November 17, 2015, 09:32:28 PM »
Thx Glenn ;)

update successful;)

25
E-Mail / RoundCube not update ?
« on: November 14, 2015, 12:40:08 AM »
Hello friends

I would like to update the roundcube.

But it does not continue after the following places remain so?

and does not update.

Why is that?


26
CentOS-WebPanel GUI / Re: server IP address of the user index page
« on: October 30, 2015, 12:09:31 PM »
???????????????????????????*

27
CentOS-WebPanel GUI / server IP address of the user index page
« on: October 29, 2015, 10:53:00 PM »
Hello there

panel set up is working. but there is a problem?
add from user site running.
However, I think the same site opens, type the IP address of the server.
Page does not open in Centoswebpanel not. server ip address

Pages: 1 [2]