Permission denied with 777 httpd service fedora - php

I have a computer with Fedora and when I start an httpd service and I try to open a page where I use a simple file_put_contents it says that I haven't enough permissions to do that. So I change the permission of the folder to 777 but it continues to not work.
Same thing happens whit a project made with laravel. When I open index.php in public folder it says that can't do file_put_content in services.json
Does anyone knows why?
Last 10 rows of error log:
[pid 12387] [client 127.0.0.1:50884] PHP Warning: file_put_contents(/var/www/html/file.txt): failed to open stream: Permission denied in /var/www/html/info.php on line 2
[Fri Jun 05 12:01:48.351406 2015] [mpm_prefork:notice] [pid 12385] AH00170: caught SIGWINCH, shutting down gracefully
[Fri Jun 05 12:01:49.438875 2015] [core:notice] [pid 13460] SELinux policy enabled; httpd running as context system_u:system_r:httpd_t:s0
[Fri Jun 05 12:01:49.439637 2015] [suexec:notice] [pid 13460] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Fri Jun 05 12:01:49.463336 2015] [auth_digest:notice] [pid 13460] AH01757: generating secret for digest authentication ...
[Fri Jun 05 12:01:49.464443 2015] [lbmethod_heartbeat:notice] [pid 13460] AH02282: No slotmem from mod_heartmonitor
[Fri Jun 05 12:01:49.482226 2015] [mpm_prefork:notice] [pid 13460] AH00163: Apache/2.4.12 (Fedora) PHP/5.6.9 configured -- resuming normal operations
[Fri Jun 05 12:01:49.482278 2015] [core:notice] [pid 13460] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Fri Jun 05 12:02:00.599063 2015] [:error] [pid 13462] [client 127.0.0.1:50902] PHP Warning: file_put_contents(/var/www/html/file.txt): failed to open stream: Permission denied in /var/www/html/info.php on line 2
[Fri Jun 05 12:02:01.589609 2015] [:error] [pid 13462] [client 127.0.0.1:50902] PHP Warning: file_put_contents(/var/www/html/file.txt): failed to open stream: Permission denied in /var/www/html/info.php on line 2

Related

PHP stops serving requests after awhile and returns errors 502 - 504

I currently have a Amazon EC2 instance (t3.small) running Apache and PHP 7.2 which serves a Laravel application.
After running for awhile, php will stop responding to requests (apache still receives them and forwards them to php, verified this using apachetop to see incoming requests). In Apache, there will errors such as follows and returns errors 502-504 and takes very long to recover until restarted. Here are some logs which might help find the issue.
[Wed Jan 20 05:25:57.287493 2021] [proxy_fcgi:error] [pid 2517:tid 140104425260800] (104)Connection reset by peer: [client 172.31.40.9:6946] AH01075: Error dispatching request to : , referer: https://mysite
[Wed Jan 20 05:25:59.608161 2021] [suexec:notice] [pid 3853:tid 139828464464448] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Wed Jan 20 05:25:59.627458 2021] [so:warn] [pid 3853:tid 139828464464448] AH01574: module headers_module is already loaded, skipping
[Wed Jan 20 05:25:59.627877 2021] [so:warn] [pid 3853:tid 139828464464448] AH01574: module cgid_module is already loaded, skipping
[Wed Jan 20 05:25:59.633440 2021] [mpm_event:warn] [pid 3853:tid 139828464464448] AH00514: MaxRequestWorkers of 404 is not an integer multiple of ThreadsPerChild of 25, decreasing to nearest multiple 400
[Wed Jan 20 05:25:59.636514 2021] [lbmethod_heartbeat:notice] [pid 3853:tid 139828464464448] AH02282: No slotmem from mod_heartmonitor
[Wed Jan 20 05:25:59.648040 2021] [mpm_event:notice] [pid 3853:tid 139828464464448] AH00489: Apache/2.4.46 () OpenSSL/1.0.2k-fips configured -- resuming normal operations
[Wed Jan 20 05:25:59.648081 2021] [core:notice] [pid 3853:tid 139828464464448] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 20 05:28:48.232549 2021] [proxy:error] [pid 3897:tid 139827752199936] (111)Connection refused: AH02454: FCGI: attempt to connect to Unix domain socket /run/php-fpm/www.sock (*) failed
[Wed Jan 20 05:28:48.232596 2021] [proxy_fcgi:error] [pid 3897:tid 139827752199936] [client 172.31.40.9:8904] AH01079: failed to make connection to backend: httpd-UDS, referer: https://mysite
[Wed Jan 20 05:28:48.243356 2021] [proxy:error] [pid 4144:tid 139827743807232] (2)No such file or directory: AH02454: FCGI: attempt to connect to Unix domain socket /run/php-fpm/www.sock (*) failed
[Wed Jan 20 05:28:48.243356 2021] [proxy:error] [pid 4144:tid 139826972038912] (2)No such file or directory: AH02454: FCGI: attempt to connect to Unix domain socket /run/php-fpm/www.sock (*) failed
[Wed Jan 20 06:46:28.744679 2021] [proxy_fcgi:error] [pid 6584:tid 139720269829888] [client 172.31.40.9:14942] AH01067: Failed to read FastCGI header, referer: https://mysite
[Wed Jan 20 06:46:28.744687 2021] [proxy_fcgi:error] [pid 6584:tid 139720269829888] (104)Connection reset by peer: [client 172.31.40.9:14942] AH01075: Error dispatching request to : , referer: https://mysite
[Wed Jan 20 06:46:31.657254 2021] [mpm_event:notice] [pid 6559:tid 139720919990848] AH00492: caught SIGWINCH, shutting down gracefully
[Wed Jan 20 06:46:32.729979 2021] [suexec:notice] [pid 6937:tid 140554580320832] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
But, by having a cron job that runs php artisan schedule:run every minute, this behavior of not 'serving any request' will not occur.
So, I'm wondering if it is a configuration issue or is it something else?

AWS - Elastic BeanTalk: [error] 'php' not found or unable to stat

I have a simple website deployed on Elastic BeanTalk ( platform: PHP 5.6 ).
public
|about.html
|index.html
|style.css
|+ include
|subscribe-email.php
|+ phpmailer
When I checked the log, I received many errors related to '.php' not found or unable to stat. I don't know from where these php files were generated.
[Thu Jun 21 06:18:52.967190 2018] [:error] [pid 12523] [client xxx] script '/var/www/html/xxxx/public/wp-login.php' not found or unable to stat
[Thu Jun 21 06:25:46.354172 2018] [:error] [pid 12742] [client xxx] script '/var/www/html/xxxx/public/wp-login.php' not found or unable to stat
[Thu Jun 21 06:44:44.392342 2018] [:error] [pid 12963] [client xxx] script '/var/www/html/xxxx/public/wp-login.php' not found or unable to stat
[Thu Jun 21 07:18:12.899793 2018] [:error] [pid 13726] [client xxx] script '/var/www/html/xxxx/public/index.php' not found or unable to stat
[Thu Jun 21 07:18:24.145541 2018] [:error] [pid 13531] [client xxx] script '/var/www/html/xxxx/public/wuwu11.php' not found or unable to stat
[Thu Jun 21 07:18:24.925862 2018] [:error] [pid 13418] [client xxx] script '/var/www/html/xxxx/public/xw.php' not found or unable to stat
[Thu Jun 21 07:18:25.689064 2018] [:error] [pid 13418] [client xxx] script '/var/www/html/xxxx/public/xx.php' not found or unable to stat
[Thu Jun 21 07:18:26.489205 2018] [:error] [pid 13418] [client xxx] script '/var/www/html/xxxx/public/s.php' not found or unable to stat
[Thu Jun 21 07:18:27.282847 2018] [:error] [pid 13418] [client xxx] script '/var/www/html/xxxx/public/w.php' not found or unable to stat
[Thu Jun 21 07:18:28.081399 2018] [:error] [pid 13418] [client xxx] script '/var/www/html/xxxx/public/sheep.php' not found or unable
Any suggestion is appreciated.
It is not a solution but I had the same issue.
I'm posting it as an answer to be able to upload an image.
I found something very similar. Also PHP 5.6.
It was new droplet, recently updated. Ubuntu 16, I added a repo to be able to install PHP 5.6 instead of PHP 7 which is the default.
sudo add-apt-repository ppa:ondrej/php
Where does it comes from?

page isn't working after installing ioncube

I've downloaded a wordpress template and it needs to have Ioncube installed, I did as what digital ocean said on my vps and the right version for my php7.0 is installed (as I can see the result in phpinfo(); )but now when I go to my wordpress template page and it gives me the error
This page isn’t working
yourhost.com is currently unable to handle this request.
HTTP ERROR 500
this is my log
[Thu Nov 09 06:25:02.686651 2017] [mpm_prefork:notice] [pid 9032] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 06:25:02.686691 2017] [core:notice] [pid 9032] AH00094: Command line: '/usr/sbin/apache2'
Failed loading /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: cannot open shared object file: No such file or directory
Failed loading /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: cannot open shared object file: No such file or directory
Failed loading /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: cannot open shared object file: No such file or directory
Failed loading /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: cannot open shared object file: No such file or directory
Failed loading /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: cannot open shared object file: No such file or directory
[Thu Nov 09 06:25:50.830177 2017] [mpm_prefork:notice] [pid 9032] AH00169: caught SIGTERM, shutting down
Failed loading /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: /usr/lib/php/20151012/ioncube_loader_lin_7.0.so: cannot open shared object file: No such file or directory
[Thu Nov 09 06:25:51.971658 2017] [mpm_prefork:notice] [pid 11316] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 06:25:51.971857 2017] [core:notice] [pid 11316] AH00094: Command line: '/usr/sbin/apache2'
[Thu Nov 09 06:29:29.356068 2017] [mpm_prefork:notice] [pid 11316] AH00169: caught SIGTERM, shutting down
[Thu Nov 09 06:29:30.508534 2017] [mpm_prefork:notice] [pid 31764] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 06:29:30.508625 2017] [core:notice] [pid 31764] AH00094: Command line: '/usr/sbin/apache2'
[Thu Nov 09 06:53:32.691037 2017] [mpm_prefork:notice] [pid 31764] AH00169: caught SIGTERM, shutting down
[Thu Nov 09 06:53:33.737673 2017] [mpm_prefork:notice] [pid 3759] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 06:53:33.737757 2017] [core:notice] [pid 3759] AH00094: Command line: '/usr/sbin/apache2'
[Thu Nov 09 06:56:32.551814 2017] [mpm_prefork:notice] [pid 3759] AH00169: caught SIGTERM, shutting down
[Thu Nov 09 06:56:32.752382 2017] [mpm_prefork:notice] [pid 14853] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 06:56:32.752490 2017] [core:notice] [pid 14853] AH00094: Command line: '/usr/sbin/apache2'
[Thu Nov 09 07:01:24.790695 2017] [mpm_prefork:notice] [pid 14853] AH00169: caught SIGTERM, shutting down
[Thu Nov 09 07:01:25.989824 2017] [mpm_prefork:notice] [pid 18452] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 07:01:25.989955 2017] [core:notice] [pid 18452] AH00094: Command line: '/usr/sbin/apache2'
[Thu Nov 09 07:01:31.080510 2017] [:error] [pid 18456] [client 5.232.32.241:24228] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:01:33.950712 2017] [:error] [pid 18455] [client 5.232.32.241:45501] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:01:36.156017 2017] [:error] [pid 18457] [client 5.232.32.241:35511] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:02:49.758464 2017] [:error] [pid 18479] [client 5.232.32.241:19653] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:09:30.678341 2017] [:error] [pid 18457] [client 5.232.32.241:46475] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:09:36.741121 2017] [:error] [pid 18459] [client 5.232.32.241:13475] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:09:59.726341 2017] [:error] [pid 18456] [client 5.232.32.241:18124] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:10:01.693749 2017] [:error] [pid 18480] [client 5.232.32.241:14882] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:10:09.060585 2017] [:error] [pid 18455] [client 5.232.32.241:16883] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:10:09.893809 2017] [:error] [pid 18458] [client 5.232.32.241:57989] PHP Fatal error: The file /var/www/html/wordpress/30693_Avada-7/avada522/wp-content/themes/$
[Thu Nov 09 07:14:15.677688 2017] [mpm_prefork:notice] [pid 18452] AH00169: caught SIGTERM, shutting down
[Thu Nov 09 07:14:16.566425 2017] [mpm_prefork:notice] [pid 18910] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 07:14:16.566549 2017] [core:notice] [pid 18910] AH00094: Command line: '/usr/sbin/apache2'
[Thu Nov 09 10:24:33.989899 2017] [mpm_prefork:notice] [pid 18910] AH00169: caught SIGTERM, shutting down
[Thu Nov 09 10:24:34.142330 2017] [mpm_prefork:notice] [pid 317] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Nov 09 10:24:34.142433 2017] [core:notice] [pid 317] AH00094: Command line: '/usr/sbin/apache2'
please help me solve it
I figured it out, although it says you need an ioncube_7, but I should install go with php5.6

Why is my Apache2 .htaccess file CORS header causing a 500 internal server error?

I am attempting to enable CORS access to a directory on my Apache2 web server. I enabled .htaccess file and added a line which is meant to enable CORS access to the directory.
Header set Access-Control-Allow-Origin: "*"
After saving the .htaccess file with that line, I get a 500 internal server error when attempting to access the directory (http://williamgreen.hopto.org/audio/).
Any ideas? Is my header incorrect?
Thank you.
Apache2 error.log:
[Thu Mar 09 15:02:15.118686 2017] [mpm_event:notice] [pid 2668:tid 547718139904] AH00489: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Mar 09 15:02:15.119080 2017] [core:notice] [pid 2668:tid 547718139904] AH00094: Command line: '/usr/sbin/apache2'
[Thu Mar 09 19:27:09.148771 2017] [mpm_event:notice] [pid 2668:tid 547718139904] AH00491: caught SIGTERM, shutting down
[Thu Mar 09 19:27:10.339942 2017] [mpm_event:notice] [pid 14385:tid 548172222464] AH00489: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Mar 09 19:27:10.340300 2017] [core:notice] [pid 14385:tid 548172222464] AH00094: Command line: '/usr/sbin/apache2'
[Thu Mar 09 19:39:47.583449 2017] [mpm_event:notice] [pid 14385:tid 548172222464] AH00491: caught SIGTERM, shutting down
[Thu Mar 09 19:39:47.776394 2017] [mpm_event:notice] [pid 14915:tid 548543827968] AH00489: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Thu Mar 09 19:39:47.776776 2017] [core:notice] [pid 14915:tid 548543827968] AH00094: Command line: '/usr/sbin/apache2'
[Thu Mar 09 19:39:51.201462 2017] [core:alert] [pid 14919:tid 548512096688] [client 73.15.129.28:57278] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration, referer: http://williamgreen.hopto.org/audio/Music/
[Thu Mar 09 19:39:51.204818 2017] [core:alert] [pid 14918:tid 548528873904] [client 73.15.129.28:57280] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration, referer: http://williamgreen.hopto.org/audio/Music/
[Thu Mar 09 19:39:55.389791 2017] [core:alert] [pid 14918:tid 548520485296] [client 73.15.129.28:57279] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
[Thu Mar 09 19:40:02.264113 2017] [core:alert] [pid 14918:tid 548512096688] [client 73.15.129.28:57283] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
[Thu Mar 09 19:40:03.735693 2017] [core:alert] [pid 14919:tid 548503708080] [client 73.15.129.28:57284] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
[Thu Mar 09 19:40:04.183378 2017] [core:alert] [pid 14918:tid 548503708080] [client 73.15.129.28:57285] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
[Thu Mar 09 19:40:04.527274 2017] [core:alert] [pid 14919:tid 548520485296] [client 73.15.129.28:57286] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
[Thu Mar 09 19:40:04.846900 2017] [core:alert] [pid 14919:tid 548495319472] [client 73.15.129.28:57287] /var/www/html/audio/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
You dont have the headers module installed.
With apache2, just run a2enmod headers and then sudo service apache2 restart and it will install the headers module automatically.

WAMPSERVER virtual host not working and black hat error log messages

For some reason my virtual host has stopped working after installing the windows 8.1 preview which hasn't changed any files, I have check all of the settings/host file and they are still the same.
Additionally I just checked my error log and I have some strange messages with the w00tw00t black hat and I am not sure how serious it is and what is needed to prevent it as I only use the wampserver for creating and testing so I haven't really considered security that much on it. See the messages below:
[Fri Jul 05 10:46:50.530891 2013] [core:error] [pid 2276:tid 1644] [client 112.216.56.58:41021] AH00126: Invalid URI in request GET <title>phpMyAdmin HTTP/1.1
[Fri Jul 05 10:47:35.955591 2013] [core:error] [pid 2276:tid 1636] [client 112.216.56.58:37237] AH00126: Invalid URI in request GET <title>phpMyAdmin HTTP/1.1
[Fri Jul 05 10:48:40.849824 2013] [core:error] [pid 2276:tid 1636] [client 112.216.56.58:35299] AH00126: Invalid URI in request GET <title>phpMyAdmin HTTP/1.1
[Fri Jul 05 19:19:20.762245 2013] [:error] [pid 2276:tid 1644] [client 58.218.199.250:2678] script 'C:/wamp/www/domain/ip.php' not found or unable to stat
[Sat Jul 06 01:01:31.057542 2013] [:error] [pid 2276:tid 1644] [client 58.218.199.250:3488] script 'C:/wamp/www/domain/judge.php' not found or unable to stat
[Sat Jul 06 18:31:27.013514 2013] [:error] [pid 2276:tid 1636] [client 58.218.199.250:1072] script 'C:/wamp/www/domain/ip.php' not found or unable to stat
[Sun Jul 07 00:18:23.526305 2013] [:error] [pid 2276:tid 1636] [client 58.218.199.250:3124] script 'C:/wamp/www/domain/judge.php' not found or unable to stat
[Sun Jul 07 06:06:29.065962 2013] [:error] [pid 2276:tid 1636] [client 58.218.199.250:1055] script 'C:/wamp/www/domain/judge.php' not found or unable to stat
[Sun Jul 07 14:56:16.247827 2013] [:error] [pid 2276:tid 1608] [client 58.218.199.250:2531] script 'C:/wamp/www/domain/ip.php' not found or unable to stat
[Sun Jul 07 17:51:47.664564 2013] [:error] [pid 2276:tid 1608] [client 58.218.199.250:1083] script 'C:/wamp/www/domain/judge.php' not found or unable to stat
[Mon Jul 08 05:29:18.812115 2013] [:error] [pid 2276:tid 1632] [client 58.218.199.250:2121] script 'C:/wamp/www/domain/proxyheader.php' not found or unable to stat
[Mon Jul 08 08:24:24.184430 2013] [:error] [pid 2276:tid 1632] [client 58.218.199.250:2312] script 'C:/wamp/www/domain/proxyheader.php' not found or unable to stat
[Mon Jul 08 10:22:43.460832 2013] [core:error] [pid 2276:tid 1632] (20024)The given path is misformatted or contained invalid characters: [client 219.142.74.32:36211] AH00127: Cannot map GET /w00tw00t.at.blackhats.romanian.anti-sec:) HTTP/1.1 to file
[Mon Jul 08 17:13:02.492876 2013] [:error] [pid 2276:tid 1608] [client 58.218.199.250:4642] script 'C:/wamp/www/domain/aop0igj.php' not found or unable to stat
[Tue Jul 09 19:40:41.125664 2013] [:error] [pid 2276:tid 1636] [client 58.218.199.250:1686] script 'C:/wamp/www/domain/proxyheader.php' not found or unable to stat
[Wed Jul 10 01:29:54.474140 2013] [:error] [pid 2276:tid 1636] [client 58.218.199.250:3712] script 'C:/wamp/www/domain/judge.php' not found or unable to stat
[Thu Jul 11 12:48:56.141853 2013] [:error] [pid 4272:tid 1628] [client 58.218.199.250:1354] script 'C:/wamp/www/domain/proxyheader.php' not found or unable to stat
[Thu Jul 11 15:49:21.114210 2013] [:error] [pid 4272:tid 1628] [client 58.218.199.250:3950] script 'C:/wamp/www/domain/aop0igj.php' not found or unable to stat
[Thu Jul 11 19:52:48.727956 2013] [core:error] [pid 4272:tid 1600] [client 199.19.107.6:52897] AH00126: Invalid URI in request GET <title>phpMyAdmin HTTP/1.1
[Thu Jul 11 19:52:50.415469 2013] [core:error] [pid 4272:tid 1636] [client 199.19.107.6:54153] AH00126: Invalid URI in request GET HTTP/1.1
[Fri Jul 12 21:26:57.610483 2013] [core:error] [pid 4272:tid 1600] (20024)The given path is misformatted or contained invalid characters: [client 202.104.192.164:33167] AH00127: Cannot map GET /w00tw00t.at.blackhats.romanian.anti-sec:) HTTP/1.1 to file
[Sat Jul 13 05:37:22.188676 2013] [core:error] [pid 4272:tid 1636] (20024)The given path is misformatted or contained invalid characters: [client 85.249.4.47:56578] AH00127: Cannot map GET /w00tw00t.at.blackhats.romanian.anti-sec:) HTTP/1.1 to file
[Sat Jul 13 20:24:14.463941 2013] [:error] [pid 4272:tid 1600] [client 58.218.199.250:2994] script 'C:/wamp/www/domain/proxyheader.php' not found or unable to stat
[Sat Jul 13 23:26:20.631467 2013] [:error] [pid 4272:tid 1600] [client 58.218.199.250:2639] script 'C:/wamp/www/domain/proxyheader.php' not found or unable to stat
I had the same problem and solved it like this
1. click on the red icon in the system tray
Select the menu apache/srvice/install service
then select MySql/service/install service
(Now it works)
My friend.
I got a lot of problems with WampServer and i have solved all my problems when i have found a program called UwAmp.
Its not too much known, but when i got this... i do never get more problems with local servers.
Its fantastic.
Take a look, i believe that you will like it too much.
http://www.uwamp.com/en/
That have a virtual hosts editor, cpu monitor, and a lot more tools. Very easy to use, dont need to install, you can put in any location and its works without need any work of config.
Can I assume that you have port forwarded your router to allow access from the big bad internet, because it looks like you are being probed by some hackers.
They are just trying to find if you have any known compromised code on your site. There is not much you can do to stop it. This is why live servers are better off on proper hosted environments professionally maintained and managed.

Categories