(please share the FULL error message you see, if applicable)
Other Information
Dear InfinityFree Staff,
I am writing to request urgent assistance regarding a persistent 500 HTTP error that my website is currently experiencing. This issue has been ongoing for quite some time now, and despite my efforts, I have been unable to resolve it.
My website URL is: [Your Website URL Here]
My username is: [Your InfinityFree Username Here]
I have already attempted several troubleshooting steps to rectify the problem, including:
Using different devices: I have tested accessing my website from various devices (e.g., laptop, different phone models) to ensure it’s not a client-side problem.
Switching networks: I have tried accessing the site using different internet networks (e.g., mobile data, a friend’s Wi-Fi) to confirm it’s not an ISP-related blockage.
Despite these efforts, the 500 HTTP error continues to appear, preventing access to my website. I am at a loss as to what else to try and urgently require your expertise to diagnose and resolve this issue.
Could you please investigate this matter thoroughly and provide guidance or direct intervention to fix this problem? Any assistance you can offer would be greatly appreciated.
Please don’t use AI to post on the forum. It makes your message unnecessarily long, and often hides your actual question.
And if you do decide to use it, at least fill out the template that it provides you, because your entire post can literally be reduced to a singe sentence and still convey the exact same information.
Ahora me está dando este error: Parse error : syntax error, unexpected variable “$encodedText” in /home/vol9_6/infinityfree.com/if0_39492244/base64encode.rf.gd/htdocs/indax.php on line 5
<?php
$encodedText = ''; $inputText = '';
if (isset($_POST['convert'])) {
$inputText = $_POST['inputText']
$encodedText = base64_encode($inputText);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Convertidor de texto a Base64</title>
</head>
<body>
<h2>Convertidor de texto a Base64</h2>
<form method="post" action="">
<label for="inputText">Introducir texto:</label><br>
<textarea id="inputText" name="inputText" rows="5" cols="50"><?php
echo htmlspecialchars($inputText);
?></textarea><br><br>
<button type="submit" name="convert">Convertidor de texto a Base64</button>
</form>
<?php
if ($encodedText !== '') {
echo '<h3>Codificado en Base64:</h3>';
echo '<p>';
echo htmlspecialchars($encodedText);
echo '</p>';
}
?>
</body>
</html>