Incam_Intranet/src/borrar_todos_cv.php

17 lines
303 B
PHP

<?php
include_once("seguridad.php");
include_once("functions_solr.php");
echo "Borrar todos los CV de Apache Solr...".PHP_EOL;
try {
solr_eliminar_todo();
}
catch(Exception $e) {
dbug('Message: ' .$e->getMessage());
echo dbug('print');
}
echo "Terminado.".PHP_EOL;
?>