Skip to content
Advertisement

Tag: apache

php not working on ubuntu desktop 16.04.02

I need php < then 5.3 becouse software I inherited use mssql library. SO I have set up linux, and apache (working fine via localhost or ip) then: I get libxml in version below 2.9 (otherwise make php will not work – compiler will lack some older libraries I belive) So I have libxml instaled and go with php same

Unable to access apache page on Linux Azure VM

I’ve setup a linux VM in Azure. I’ve added incoming port access to the current listening port on Apache. I’ve also done a curl localhost on the VM and see the apache html text. I hit the public IP of the VM and get nothing. Any ideas? Answer According to your description, please check those settings: 1. Please check Azure

Apache not seeing website – CentOS 7

I have setup a lot of Virtual Hosts in Ubuntu but today I needed to do this on a CentOS 7 server. I installed Apache and setup the VHost config but nothing appears when I view the site. I know that Apache is reading my Config files because if I add a fault in it and restart Apache, it complains

Apache redirect any 503 error to a maintenance page

I have two vhosts in one server thats using apache – my main page is www.alleOne.com and the other is www.sch2.com. I have a custom page that if www.sch2.com or any other uri page in www.sch2.com/madeup is down a 503 error code, it should redirect to my custom page http://www.alleOne.com/corp/en/service-unavailable.html. This page has a timer and will redirect in 5

I can’t access remote mysql server via local phpmyadmin

I’m trying to access my remote mysql server via my local phpmyadmin setup(from xampp installation). Here is my config.inc.php file for phpmyadmin: I get this error: Answer the remote mysql server that you want to connect has to be configured to allow or take request other than localhost. Check firewall is allowing port 3306 (both incoming and outgoing). Now we

Why does python xmlrpc call get PermissionError when run through apache?

Here’s /home/blakeh/test.py, which doesn’t really do anything but illustrate the problem with minimal code: If I run this directly as the apache user, there’s no permission problem with making the RPC “foo” call. It only occurs if I run it through apache. I’m using python 3.5.2. In an apache .conf file I have this: If I run this curl command:

Apache 2.4.23 undefined reference to CRYPTO_malloc_init?

Hi I am trying to install Apache 2.4.23 with openssl version of 1.1.0c , while execute make command I am getting following error, I have searched many website but I couldn’t see any relevant answer. I have attached error also .Could you please solve my problem? Thanks in Advance Answer Apache 2.4.23 undefined reference to CRYPTO_malloc_init? OpenSSL 1.0.2 and earlier

How to restrict PHP file access to execution directory?

I have a bunch of PHP scripts inside of, say, /public_html/mydir/, and these scripts may possibly try to delete files / do other stuff to the filesystem. I want to allow all filesystem modifications within the /public_html/mydir/ directory, but any access (or deletion) outside of the mydir directory shouild not be allowed. How can I do this? Answer You either

How to map buttons in html to running an executable file

This is my html code. I’d link to map those buttons to 2 executable files to switch on and off led in wandboard. How will i do it? Answer According to your comment the LED is connected to the Server while you try toggle it from a client. Since the HTML Page you send to the client is then rendered

Advertisement