Re: [users@httpd] httpd processes are too many created from Apache 2.2.31 on Linux Server.

2018-01-13 Thread Daniel
You cant switch from prefork to something else until you get rid of mod_php, which is not thread-safe, so if you switch to worker chances are you might have other issues. Worth checking "ulimit -u" but it seems your problem is hitting memory limit like the kernel messages say. I would think it is

Re: [users@httpd] .htaccess mobil client

2018-01-13 Thread Richard
> Date: Sunday, January 14, 2018 00:03:27 +0300 > From: Gokan Atmaca > > On Sat, Jan 13, 2018 at 10:52 PM, Richard wrote: >> >>> Date: Saturday, January 13, 2018 22:43:38 +0300 >>> From: Gokan Atmaca >>> >>> The structure of our site is as follows. Connections default to >>> "desk.site" folder

Re: [users@httpd] .htaccess mobil client

2018-01-13 Thread Gokan Atmaca
> What do your access and error logs show? There is no error. The access logs are as follows. x.x.x.x.x- [13/Jan/2018:15:52:04 +0300] "GET /e/home-ajax-get-prepared-orders HTTP/1.1" 200 1062 "http://a.desk.com/e"; "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.27

Re: [users@httpd] .htaccess mobil client

2018-01-13 Thread Richard
> Date: Saturday, January 13, 2018 22:43:38 +0300 > From: Gokan Atmaca > > The structure of our site is as follows. Connections default to > "desk.site" folder. If the incoming connection requests come from > mobile phones, "msite" goes to the folder. But CSS, JS files > are not coming. I made

Re: [users@httpd] .htaccess mobil client

2018-01-13 Thread Gokan Atmaca
> this should be something like > > RewriteRule ^(.*)$ /msite$1 [L,R=301] Hello The structure of our site is as follows. Connections default to "desk.site" folder. If the incoming connection requests come from mobile phones, "msite" goes to the folder. But CSS, JS files are not coming. I made a s

Re: [users@httpd] .htaccess mobil client

2018-01-13 Thread Walter H.
On 12.01.2018 22:23, Gokan Atmaca wrote: Hello I am redirecting Apache mobile clients to the mobile site. But the files like cs,js,font,img are not working. Can you help with this ? config: RewriteCond %{HTTP_USER_AGENT} ^.*(android|iPhone).*$ [NC] RewriteRule ^ /msite/$1 [R=301,L] what is