This commit is contained in:
Brian Huisman 2023-04-21 16:25:28 -04:00
parent 8d99e4fd41
commit 57ef2a6599
2 changed files with 3 additions and 2 deletions

View file

@ -13,8 +13,8 @@ The **Orcinus Site Search** PHP script is an all-in-one website crawler and sear
Optionally, **Orcinus** can generate a [sitemap .xml or .xml.gz](https://www.sitemaps.org) file of your pages after every crawl, suitable for uploading to the [Google Search Console](https://search.google.com/search-console/sitemaps). It can also export a JavaScript version of the entire search engine that works with offline mirrors, such as those generated by [HTTrack](https://www.httrack.com). Optionally, **Orcinus** can generate a [sitemap .xml or .xml.gz](https://www.sitemaps.org) file of your pages after every crawl, suitable for uploading to the [Google Search Console](https://search.google.com/search-console/sitemaps). It can also export a JavaScript version of the entire search engine that works with offline mirrors, such as those generated by [HTTrack](https://www.httrack.com).
### Requirements: ### Requirements:
- PHP >= 7.2.x - PHP >= 8.0.x
- MySQL / MariaDB >= 10.0.5 - MySQL >= 8.0.17 / MariaDB >= 10.0.5
### 3rd Party Libraries: ### 3rd Party Libraries:
Included: Included:

View file

@ -252,6 +252,7 @@ if (!$_SESSION['admin_username']) {
fputcsv($output, $line); fputcsv($output, $line);
} }
fclose($output);
die(); die();
} else { } else {