[users@httpd] Apache 2.4 PHP 5.5

2014-08-06 Thread motty cruz
Hello, I just finished installing Apache 2.4 and PHP 5.5 on FreeBSD 10, but Apache 2.4 is not loading PHP. can someone help me with this issue? Thanks in advance

Re: [users@httpd] Apache 2.4 PHP 5.5

2014-08-06 Thread motty cruz
Thanks, I created index.php with the following: when I go to localhost, it download file. I don't get an error, Thanks again, On Wed, Aug 6, 2014 at 12:04 PM, Jeff Trawick wrote: > On Wed, Aug 6, 2014 at 1:07 PM, Jeff Trawick wrote: > > > > On Wed, Aug 6, 2014 at

Re: [users@httpd] Re: Apache 2.4 PHP 5.5

2014-08-07 Thread motty cruz
Thanks Good Guy, I am not getting anything similar to the example you have, I get a blank page, (using chrome) then I get "file download" Thanks, On Wed, Aug 6, 2014 at 5:38 PM, Good Guy wrote: > On 06/08/2014 21:38, motty cruz wrote: > > Thanks, I created index.php

[users@httpd] Apache24 - how to optimize httpd.conf

2015-06-08 Thread Motty Cruz
Hello, I am getting the following suggestions from: https://developers.google.com/speed/pagespeed/insights/ Should Fix: Optimize images Leverage browser caching Consider Fixing: Eliminate render-blocking JavaScript and CSS in above-the-fold content Minify CSS Minify HTML What is the best practi

Re: [users@httpd] Apache24 - how to optimize httpd.conf

2015-06-08 Thread Motty Cruz
have you tried? On Mon, Jun 8, 2015 at 5:35 PM, Motty Cruz <mailto:motty.c...@gmail.com>> wrote: Hello, I am getting the following suggestions from: https://developers.google.com/speed/pagespeed/insights/ Should Fix: Optimize images Leverage browser caching

Re: [users@httpd] Apache24 - how to optimize httpd.conf

2015-06-09 Thread Motty Cruz
Thanks for your suggestions! Thanks, Motty On 06/09/2015 06:59 AM, James Smith wrote: In many cases it will only be a few packets anyway so won't actually make that much difference! The point is that it is better to stop the request in the first place by setting the appropriate expires/cache

[users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Motty Cruz
Hello, I am trying to restrict access to joomla Administrator directory by IP: # defese agains brute force attacks order deny,allow Deny from all Require ip 192.168.1.65 this code on httpd.conf is not stopping me from logging onto www.site.com/administrator any ideas?

Re: [users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Motty Cruz
: Date: Tuesday, June 09, 2015 02:11:55 PM -0700 From: Motty Cruz Hello, I am trying to restrict access to joomla Administrator directory by IP: # defese agains brute force attacks order deny,allow Deny from all Require ip 192.168.1.65 this code on httpd.conf is not

Re: [users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Motty Cruz
: Richard Date: Tuesday, June 09, 2015 02:11:55 PM -0700 From: Motty Cruz Hello, I am trying to restrict access to joomla Administrator directory by IP: # defese agains brute force attacks order deny,allow Deny from all Require ip 192.168.1.65 this code on httpd.conf

[users@httpd] Apache 2.2 + php 5.2 wordpress

2013-03-05 Thread motty cruz
Hello, I'm have one instance of Wordpress running on a FreeBSD machine with php 5.2 install using Apache Web Server 2.2. Every time the webmaster edit pages I get the following error: 12:15:36 2013] [error] child process 27973 still did not exit, sending a SIGKILL [Tue Mar 05 12:15:54 2013] [error

Re: [users@httpd] Apache 2.2 + php 5.2 wordpress

2013-03-06 Thread motty cruz
[Tue Mar 05 12:15:54 2013] [error] child process 28050 still did not exit, sending a SIGKILL please help! Thanks, On Tue, Mar 5, 2013 at 4:37 PM, Igor Cicimov wrote: > > On 06/03/2013 7:38 AM, "motty cruz" wrote: > > > > Hello, I'm have one instance of Wordp

[users@httpd] maximize Apache services

2013-06-07 Thread motty cruz
Hello All, it seems that every time some one like 80legs or any other crawler craws my website my server goes down. do you k now hot to maximize the number of child server on Apache to avoid turning off my machine? my Apache server is running latest Mysql, PHP and Apache22 virtual machine 2028MB

Re: [users@httpd] maximize Apache services

2013-06-10 Thread motty cruz
t; > > And here is a link for Apache HTTP Server performance tuning in general: > - > http://httpd.apache.org/docs/**2.2/misc/perf-tuning.html<http://httpd.apache.org/docs/2.2/misc/perf-tuning.html> > > What operating system and what MPM are you running? > > Than

Re: [users@httpd] maximize Apache services

2013-06-10 Thread motty cruz
Thank you very Much Tom, I was able to re-install Apache22 with MPM option, at this point I am monitoring the server but thus far is working fine. Thanks for all your help! -motty On Mon, Jun 10, 2013 at 9:52 AM, Tom Evans wrote: > On Mon, Jun 10, 2013 at 5:49 PM, Tom Evans > wrote: > > 1) r

[users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
Hello, I am trying to block a directory from being access except my IP but I had being unsuccessful in doing so, please help: First I place this in httpd.conf Options Indexes FollowSymLinks Options ALL -Indexes IndexIgnore * AllowOverride None Order allow,deny Allow from a

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
wrote: > Flop Allow and Deny so that your IP is whitelisted after the Deny from all. > > > > On Wed, Jun 12, 2013 at 11:20 AM, motty cruz wrote: > >> Hello, >> I am trying to block a directory from being access except my IP but I had >> being unsuccessful in

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
erra wrote: > Try this format: > > > order deny,allow > Deny from all > allow from xx.xxx.xx.xx > allow from xx.xxx.xx.xx > > > > > On Wed, Jun 12, 2013 at 11:52 AM, motty cruz wrote: > >> Hello David, >> >> this is the content on .h

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
Thanks for your help David, can this be accomplish in httpd.conf? Thanks, On Wed, Jun 12, 2013 at 9:07 AM, motty cruz wrote: > 192.168.9.43 - - [12/Jun/2013:09:05:23 -0700] "GET /wp-login.php HTTP/1.1" > 200 1085 > > I am still able to get access from a different IP

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
ust fine. Are you putting this in the virtual host? > > > On Wed, Jun 12, 2013 at 12:08 PM, motty cruz wrote: > >> Thanks for your help David, >> >> can this be accomplish in httpd.conf? >> >> Thanks, >> >> >> On Wed, Jun 12, 2013 at 9:07

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
ess override set to allow. > :) > > Kick those bots! > > > On Wed, Jun 12, 2013 at 12:16 PM, motty cruz wrote: > >> I am not using virtual host, I'm adding to .htaccess in the root >> directory of web site. >> >> but after adding this to my httpd.co

[users@httpd] PHP Warning

2013-06-21 Thread motty cruz
Hello, I noticed the following error in my error logs: [error] [client 50.17.211.201] PHP Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0 it seems to me that person tried to inject my website how do i know if it was suc

Re: [users@httpd] PHP Warning

2013-06-21 Thread motty cruz
unless you get a ton of these. > > > On Fri, Jun 21, 2013 at 10:19 AM, motty cruz wrote: > >> Hello, I noticed the following error in my error logs: >> [error] [client 50.17.211.201] PHP Warning: Unknown: Input variables >> exceeded 1000. To increase the limit chan

[users@httpd] redirects on Apache 2.4.

2016-05-16 Thread Motty Cruz
Hello, I often sent users links to manual or howtos behind a portal that requires username and password. However, users get redirected to homepage after they successfully logged in. I suspect this htaccess file is the cause. My objective is to allow users to view any page only "if web_route" co

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-27 Thread Motty Cruz
have you install mod_php72? pkg info | grep "mod_php" mod_php72-7.2.6 if not you need to install it pkg install mod_php72 in httpd.conf LoadModule php7_module    libexec/apache24/libphp7.so I hope this help! Thanks, Mot On 06/27/2018 03:09 AM, Hemant Chaudhary wrote: > Hi, > > I was using