- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
<分区>
我有一个本地开发的 PHP 页面,运行良好。将其上传到服务器后,我现在只得到一个空白的白屏?它是完全相同的代码,在本地工作正常但在远程不工作。我已经尝试设置错误报告,但仍然没有给我任何错误,只是一个空白的白屏。
代码:
$firstname = $phone = $email = $picture = $sqlcon = "";
$firstnameErr = $phoneErr = $emailErr = $pictureErr = $sqlErr = $filterErr = "";
$statusmsg = "";
$newpicture = $registered = "false";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// If the user has not entered a firstname and has not entered details previously
if ((empty($_POST["firstname"])) && empty($_POST["hfirst"])) {
$firstnameErr = "Firstname is required for submission";
}
else {
if (!empty($_POST["firstname"])) {
$firstname = $_POST["firstname"];
}
else {
$firstname = $_POST["hfirst"];
}
if (!preg_match("/^[a-zA-Z ]*$/", $firstname)) {
$firstnameErr="Please ensure you have entered only characters for your first name";
}
}
// If the user has not entered a phone number and has not entered details previously
if ((empty($_POST["phone"])) && (empty($_POST["hphone"]))) {
$phoneErr = "Please ensure you have entered a phone number";
}
else {
if (!empty($_POST["phone"])) {
$phone = $_POST["phone"];
}
else {
$phone = $_POST["hphone"];
}
if (!is_numeric($phone)) {
$phoneErr = "Please ensure you have entered a valid phone number";
}
}
if ((empty($_POST["email"])) && (empty($_POST["hemail"]))) {
$emailErr = "Please ensure you have entered your email address";
}
else {
if (!empty($_POST["email"])) {
$email = $_POST["email"];
}
else {
$email = $_POST["hemail"];
}
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email)) {
$emailErr = "Please ensure you have entered a valid email address";
}
}
if ((empty($_FILES["file"]["name"])) && (empty($_POST["hfile"]))) {
$pictureErr = "Please ensure you have selected a picture to upload";
}
else {
if (!empty($_FILES["file"]["name"])) {
if ($_FILES["file"]["size"] > 1048576) {
$pictureErr = "The maximum size for a picture is 1mb";
}
else {
// Ensure the user has selected a file of accepted type
$temp = explode(".", $_FILES["file"]["name"]);
$ext = end($temp);
$allowedExt = array ("gif", "JPEG", "jpg", "png", "JPG");
if (!in_array($ext, $allowedExt)) {
$pictureErr = "Please ensure you have uploaded an image file";
}
}
$newpicture = "true";
$picture = $_FILES["file"]["name"];
}
else {
$picture = $_POST["hpicture"];
}
}
$sqlcon = mysqli_connect("localhost", "USER", "PASS", "personneldb");
if (mysqli_connect_errno()) {
$sqlErr = "Could not connect to database";
mysqli_close($sqlcon);
}
if ($newpicture == "true") {
if (!move_uploaded_file($_FILES["file"]["tmp_name"], "./upload/".$_FILES["file"]["name"])) {
$pictureErr = "File could not be uploaded";
}
}
if ((empty($firstnameErr)) && (empty($emailErr)) && (empty($phoneErr)) && (empty($pictureErr == "")) && (empty($sqlErr == ""))) {
mysqli_query($sqlcon, "INSERT INTO test2Details(Firstname, Phone, Email, ImageName)
VALUES ('$firstname', '$phone', '$email', '$picture')");
// Display status message
$statusmsg = "Success! Your details and picture have been uploaded and stored";
}
if ((!empty($firstname)) && (!empty($phone)) && (!empty($email)) && (!empty($picture))) {
$registered = "true";
}
else {
$registered = "false";
}
}
My phpMyAdmin page更改 MySQL root 密码后返回空白/白页 using this suggestion .我还使用 service apache2 restart 和 ser
尝试提交包含以下条目的联系表单时出现白屏:- 姓名- 电子邮件- 主题- 消息 我正在尝试通过我的网站接收电子邮件。我检查了所有变量名称等,似乎一切都是正确的。我是 PHP 的新手,所以我对接下来要尝
我想从 here 获取 html 。该链接在我的浏览器中工作正常。但如果我在设置中禁用 cookie,此页面将无休止地重新加载。 我的基本代码返回空白页 options = Options() opt
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
在https://indianvisaonline.gov.in/visa/index.html上填写一些表格并上传照片后,我得到了一个白页。 。我使用 JavaFX 的 WebView 来加载网站。
通过 composer 安装新版本的 symfony 之后 php composer create-project symfony/framework-standard-edition myProje
我正在尝试将 WordPress 网站从我的本地服务器移动到在线服务器。 问题是,在迁移之后,如果我尝试打开管理页面 (wp-admin),我只会获得一个白页,如您在此处所见:http://score
我想加载一个远程 url 页面,但它总是在大约 10 秒后开始加载代码如下 - (UIWebView *)webView { if(!_webView) { _webView
使用 google docs 在 webview 中打开 pdf 一次又一次地打开相同的 pdf 或不同的 pdf。 有时它会在 android 中显示空白/白色页面,直到我们再次刷新网页 1 或 2
首先抱歉我的英语不好。 当我尝试查看 HomeController 的 url / 和 Index 操作时,我得到的只是一个白页。 我从空的 ASP.NET 5 Web 应用程序模板开始,然后添加 C
简单的 android 应用程序,带有 WebView,当我打开 PayPal 网站的任何 url 时,即: mWebView.loadUrl("https://www.paypal.com/ua/c
各位程序员大家好, 所以我目前被分配使用 homestead 和 Vagrant 安装和配置 Laravel 5,目前我遇到了各种问题.. 现在我在 gitbash 中遇到了以下错误。在出现此错误之前
我是一名优秀的程序员,十分优秀!