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

[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"

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

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

2015-06-09 Thread Motty Cruz
/09/2015 02:18 PM, Richard wrote: Date: Tuesday, June 09, 2015 02:11:55 PM -0700 From: Motty Cruz motty.c...@gmail.com Hello, I am trying to restrict access to joomla Administrator directory by IP: # defese agains brute force attacks Directory /administrator order deny,allow

[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 Directory /administrator order deny,allow Deny from all Require ip 192.168.1.65 /Directory this code on httpd.conf is not stopping me from logging onto

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

2015-06-09 Thread Motty Cruz
, 2015 09:18:02 PM + From: Richard lists-apa...@listmail.innovate.net Date: Tuesday, June 09, 2015 02:11:55 PM -0700 From: Motty Cruz motty.c...@gmail.com Hello, I am trying to restrict access to joomla Administrator directory by IP: # defese agains brute force attacks Directory

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

2015-06-08 Thread Motty Cruz
-vary /IfModule /IfModule does not seem to make a difference! On 06/08/2015 02:38 PM, Emir Ibrahimbegovic wrote: What have you tried? On Mon, Jun 8, 2015 at 5:35 PM, Motty Cruz motty.c...@gmail.com mailto:motty.c...@gmail.com wrote: Hello, I am getting the following suggestions from

[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

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 xfs...@hotmail.com wrote: On 06/08/2014 21:38, motty cruz wrote: Thanks, I created index.php

[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
: On Wed, Aug 6, 2014 at 10:57 AM, motty cruz motty.c...@gmail.com wrote: 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 error messages? I probably read too much

[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

Re: [users@httpd] PHP Warning

2013-06-21 Thread motty cruz
matter unless you get a ton of these. On Fri, Jun 21, 2013 at 10:19 AM, motty cruz motty.c...@gmail.com 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 change max_input_vars

[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 Directory /usr/local/www/apache22/data Options Indexes FollowSymLinks Options ALL -Indexes IndexIgnore * AllowOverride

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
but no success! On Wed, Jun 12, 2013 at 8:43 AM, David Guerra imdavidgue...@gmail.comwrote: 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 motty.c...@gmail.com wrote: Hello, I am trying to block a directory from

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
, David Guerra imdavidgue...@gmail.comwrote: Try this format: Files wp-login.php order deny,allow Deny from all allow from xx.xxx.xx.xx allow from xx.xxx.xx.xx /Files On Wed, Jun 12, 2013 at 11:52 AM, motty cruz motty.c...@gmail.com wrote: Hello David, this is the content on .htaccess

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 motty.c...@gmail.com 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 than

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
, it should work just fine. Are you putting this in the virtual host? On Wed, Jun 12, 2013 at 12:08 PM, motty cruz motty.c...@gmail.com wrote: Thanks for your help David, can this be accomplish in httpd.conf? Thanks, On Wed, Jun 12, 2013 at 9:07 AM, motty cruz motty.c...@gmail.com wrote

Re: [users@httpd] block directories using Apache22

2013-06-12 Thread motty cruz
htaccess override set to allow. :) Kick those bots! On Wed, Jun 12, 2013 at 12:16 PM, motty cruz motty.c...@gmail.com 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.conf file it worked perfectly fine. Thank you

Re: [users@httpd] maximize Apache services

2013-06-10 Thread motty cruz
is a link for Apache HTTP Server performance tuning in general: - http://httpd.apache.org/docs/**2.2/misc/perf-tuning.htmlhttp://httpd.apache.org/docs/2.2/misc/perf-tuning.html What operating system and what MPM are you running? Thanks, Mike On 6/7/2013 12:39 PM, motty cruz wrote: Hello

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 tevans...@googlemail.com wrote: On Mon, Jun 10, 2013 at 5:49 PM, Tom

[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

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

2013-03-06 Thread motty cruz
process 28050 still did not exit, sending a SIGKILL please help! Thanks, On Tue, Mar 5, 2013 at 4:37 PM, Igor Cicimov icici...@gmail.com wrote: On 06/03/2013 7:38 AM, motty cruz motty.c...@gmail.com wrote: Hello, I'm have one instance of Wordpress running on a FreeBSD machine with php 5.2

[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]