Menu
  • HOME
  • TAGS

AH00526:Wamp server starting error

apache,wamp,wampserver,apache2.4

Have you somehow managed to turn off the autoindex_module in httpd.conf Check using the wampmanager menus like so: start WAMPServer left click wampmanager -> Apache -> Apache modules There should be a line in the menu that shows called autoindex_module and it should have a tick beside it. If the...

How do I know if I'm running python as a shared libary?

python-2.7,mod-wsgi,apache2.4,ubuntu-14.04

The documentation explains it at: http://code.google.com/p/modwsgi/wiki/CheckingYourInstallation#Python_Shared_Library ...

Custon headers not working on php 5.6 - apache 2.4, debian 8 jessie

php,apache,debian,apache2.4,php-5.6

what are these headers ? if it's header with underscore, this difference comme from Apache 2.4 : Header names with underscores ignored in php 5.5.1 / apache 2.4.6...

Varnish (4.0.1) fail to access website often request timeout

apache,varnish,varnish-vcl,apache2.4,centos7

You need to allow traffic from the Internet to port 80. Edit the iptables config as follows: # sample configuration for iptables service # you can edit this manually or use system-config-firewall # please do not ask us to add additional ports/services to this default configuration *filter :INPUT ACCEPT [0:0]...

how to fix stream_socket_enable_crypto(): SSL operation failed with code 1

laravel-4,amazon-ec2,ssl-certificate,apache2.4,php-5.6

Try changing the app/config/email.php smtp to mail...

Enabling Indexes (folder views) using htaccess with Apache 2.4 mod_authz_host based on IP

apache,.htaccess,apache2.4,mod-authz-host

This works, it displays a "Forbidden, You don't have permission to access /folder/ on this server." instead of "Directory listings denied." I am able to access files within that folder still. <If "%{REMOTE_ADDR} == '192.169.0.95'"> Options +Indexes +FollowSymLinks +MultiViews Require all granted </If> <Else> Options -Indexes +FollowSymLinks +MultiViews Require all...

Apache 2.4- Don't have access to server

apache,vhosts,hosts,apache2.4,hosts-file

Even if the solution is probably not that, you should check first that apache can access to you directory. This mean that your folder should have the read right to "others" or learn how to configure acls on linux. $ ls -la /home/nek # ... drwxrwxr-x 6 nek nek 4096...

php,apache,php-5.5,apache2.4

Simillar question: PHP 5.5 short_open_tag=on Security Hole? You should change short open tag in your php ini to: short_open_tag=on...

.htaccess ignored on Windows 7 with Apache 2.4.10

apache,.htaccess,mod-rewrite,vhosts,apache2.4

Inside of C:/xampp/apache/conf/extra/ some alias was conflicting with my application route. I have removed these unecessary alias and all works fine! <IfModule alias_module> Alias /account "C:/xampp/account-system/htdocs" [...] </IfModule> Thanks!...

Apache 2.4.9 Pseudo Streaming

apache,apache2.4,pseudo-streaming

For whatever reason I couldn't get the module to work my initial go around (I tried more than once). However, I got it to work today. Not sure what I did different but I just followed the instructions below (again). http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Apache-Version2...

Wildcard SSL on several servers - seems OK when tested but red in Chrome

ssl,apache2.4

There are several tools available to test your website having SHA1 or SHA2 certificate. https://www.sha2sslchecker.com/ https://shaaaaaaaaaaaaa.com/ You can also check it manually. Browse site in chrome. Click on the green padlock. Click on "certificate information" under the "connection" tab. Click on "Details" tab where you can find secure hash algorithm:...

PHP server define

php,apache2.4

You should use environment variables for this. In Apache, for instance, you can use mod_env to set an environment variable in your VirtualHost directive for your test server:   SetEnv APPLICATION_ENV testing And for your live server: SetEnv APPLICATION_ENV production You would then use it in PHP: $environment = getenv('APPLICATION_ENV');...

Enabling virtual hosts in Apache makes every host forbidden (403)

virtualhost,wampserver,apache2.4

There are a few things that you have not taken into account. When you create Virtual Hosts Apache ignores the host defined in httpd.conf so you also need to create a Virtual Host for localhost. This explains why you cannot get to localhost when you have activated Virtual Hosts. Apache...

Requiring httpauth username and password for Wordpress blog except RSS feed

wordpress,apache,.htaccess,http-authentication,apache2.4

I found the answer, finally, in this Stack Exchange question When using url rewriting, environment variables are saved as REDIRECT_variable_name. So adding the line Require env REDIRECT_allow_access inside the <RequireAny> block solved the problem for me....

How to change Apache 2.4 configuration from SSL support to TLS

apache,ssl,apache2.4

You can change SSLProtocol directive in your httpd-ssl.conf file as below SSLProtocol all -SSLv3 More details can be found here UPDATE SSLEngine on SSLProtocol all -SSLv3 ...

How to create Apache service with custom httpd.conf file

apache,httpd.conf,apache2.4

I suggest you to list down your customization in one of the file say my.conf. And as described on the Apache Site If you need to have specifically named configuration files for different services, you must use this: httpd.exe -k install -n "MyServiceName" -f "c:\files\my.conf" Good Luck!...

How to access to symfony Dev environnement behind varnish?

symfony2,varnish,apache2.4

The line would return a 403 if either: HTTP_CLIENT_IP header is present HTTP_X_FORWARDED_FOR header is present $_SERVER['REMOTE_ADDR'] is not one of '127.0.0.1', 'fe80::1', '::1' Probably you are setting the HTTP_X_FORWARDED_FOR header in varnish, or varnish is setting it for you, depending on the varnish version. Unset it or rewrite the...

Attempting to use folder other than /var/www/html

lamp,ubuntu-14.04,apache2.4

I found the answer to my own question after looking at apache logs and help from others First thing I changed my website's apache conf file to <VirtualHost *:80> ServerAdmin [email protected] ServerName mytestsite.com ServerName <ServerIpAddress> DocumentRoot /var/www <Directory /var/www/mytestsite.com/public_html**/> Options -Indexes +FollowSymLinks +MultiViews AllowOverride All Order allow,deny allow from all...