在尝试运行Solr提供的示例时,遇到以下问题: 错误:错误创建SolrCore' techproducts':无法创建核心[techproducts]引起:此虚拟机持有的锁:/usr/local/lib/solr-6.5.0/example/techproducts/solr/高科枝产品/数据/索引/ write.lock
答案 0 :(得分:1)
问题已得到解决,因为核心已存在但在管理员界面上无法显示。要解决只是删除核心,然后再试一次。以下是命令:
<?php
$PID = (int)$_GET['PID'];
$con = new mysqli("localhost","my_user","my_password",'events');
$result = $con->query("SELECT * FROM eventlist WHERE Eid=$PID");
global $output;
$row = $result->fetch_assoc();
echo '<h1>'.$row["Ename"].'</h1>';
if($row["P1"]==NULL)
?>