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

Pages: [1]
1
PHP / Re: suPHP & APCu
« on: May 02, 2015, 02:02:42 PM »
Well not to mention, but right now there is a bug in bullten, If anyone buy a domain name or hosting the tutorial will be accessible to user. The bug was noted and sent to developer to fix. Till then you can enjoy it :)

But do remember using a dedi or VPS provides you free managed support for CWP. So it can be really handy.

Ok, thanks. I'll buy VPS.

2
PHP / Re: suPHP & APCu
« on: May 02, 2015, 01:55:54 PM »
All the CWP tutorials created by bullten web hosting solutions is only for bullten clients. So you need to be so :)

Ok, now I need .com domain, if I buy domain here https://panel.bullten.net/domainchecker.php it's ok? I'll get tutorial?
Or I have to buy VPS or Dedic?

3
PHP / Re: suPHP & APCu
« on: May 02, 2015, 01:48:18 PM »
Recently we did test and perfectly configured fastcgi on cwp. We have tutorial for it but those are private ones. I think you can just search on google for it. I wont suggest you to use fascgi directly. You should use mod_fcgid which is provided by apache. Between DSO is still the fastest php handler :)

Thanks, how could I get this private tutorial? It's possible? Because i'm tired of the CWP reinstalling.

4
PHP / Re: suPHP & APCu
« on: May 02, 2015, 01:14:09 PM »
You can build any config you would like. These configurations are not CWP dependent. You need to understand how the build works and you could install things as you like.

Thanks, but if I try to install fastcgi, in the same time install new httpd and CWP crash.
Is here some tutorial for this problem?

5
PHP / suPHP & APCu
« on: May 02, 2015, 12:00:11 PM »
Hello,

I using Symfony2 and I need for speedup APCu. But APCu not compatible with suPHP.

It's possible to rebuild apache without suPHP?
Or how to fix that stuff?

Thanks

6
E-Mail / turn off email after ssh connection & CSF
« on: April 29, 2015, 11:58:04 AM »
How can I disable sending emails after ssh connecton & CSF?
Email sending from root to root.

Thanks

7
How to / Re: How to enable sudo command
« on: April 27, 2015, 05:42:27 PM »
so? it's possible?

8
Installation / Re: How to install mod_geoip ?
« on: April 26, 2015, 01:41:51 PM »
try:

Code: [Select]
sudo pecl install geoip
and add the following to your php.ini file:

Code: [Select]
extension=geoip.so

9
How to / How to enable sudo command
« on: April 26, 2015, 09:47:01 AM »
Hello,

How to enable sudo command for users or user?
Because if I try to use sudo, I see
Code: [Select]
sudo: PERM_ROOT: setresuid(0, -1, -1): too many processes

Thanks

10
Varnish / Re: Varnish return 127.0.0.1 or server IP
« on: April 18, 2015, 10:56:54 PM »
I fixed this..

Code: [Select]
sub vcl_recv {
  remove req.http.X-Forwarded-For;
  set    req.http.X-Forwarded-For = client.ip;
}

11
Varnish / Varnish return 127.0.0.1 or server IP
« on: April 18, 2015, 02:20:39 PM »
Hello,

I have problem, PHP $_SERVER['REMOTE ADDR'] always return 127.0.0.1 or server IP.
How can I fix that? I need client IP address...

Thank

12
Apache / Remove Default Page
« on: April 15, 2015, 08:30:28 PM »
Hello,

How can I disable default page? This page displays if index file not exist.

In google I found this:

Code: [Select]
/etc/httpd/conf.d/welcome.conf
Code: [Select]
# This configuration file enables the default "Welcome"
# page if there is no default index page present for
# the root URL.  To disable the Welcome page, comment
# out all the lines below.
#
<LocationMatch "^/+$">
   Options -Indexes
   ErrorDocument 403 /error/noindex.html
</LocationMatch>

but this path not exist.

Thanks

13
Apache / Re: APC
« on: April 11, 2015, 12:18:26 PM »
Fixed
I move apc.ini to /usr/local/php/php.d

14
Apache / Re: APC
« on: April 11, 2015, 11:54:56 AM »
I did everything what's in "tutorial" but APC don't work.

check it:
phpinfo: http://itarena.cz/
apc.php: http://itarena.cz/apc.php

/etc/php.d/apc.ini:
Code: [Select]
extension=apc.so
apc.enabled = 1
apc.shm_segments = 1
apc.shm_size = 64M
apc.max_file_size = 10M
apc.stat=1

15
Apache / APC
« on: April 10, 2015, 06:59:34 PM »
Hello,

How I can install APC to CWP?
And how I can to install php mods.

I need enable APC and intl for symfony2 project...

Thanks

Pages: [1]