MAMP: "Bad handshake" error

tomcam

Registered
MAMP is returning strange "Bad handshake errors" on a MacBook Air, while it works perfectly on an identical computer on the same home network.

Details:
MAMP 1.7.2 is working oddly. I just installed it and the homepage works fine at the default address:

http://localhost:8888/MAMP/?language=English

However when I create foo.php in the test directory and load it with this URL:

http://localhost:8889/MAMP/test/foo.php

I get weird behavior. Here is the output:

4
5.0.4[random stuff that changes with each reload]Bad handshake

Here is the source code:

<html>
<head>
</head>
<body>
<h1>hello, world.</h1>
<?php echo 'yo'; ?>
<p>hi!</p>
</body>
</html>

Again, PHP works fine on my other MacBook with the same system. The same file w/out PHP as test.html yields the same error.

Any ideas why I'm getting this random output?
 
Back
Top