Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bkup_from_live #1

Merged
merged 1 commit into from
Oct 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions _config/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php
$server = 'http://23.97.216.44/solr/';
//$server = 'http://zimbor.go.ro/solr/';
?>
7 changes: 7 additions & 0 deletions api.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
require($_SERVER['DOCUMENT_ROOT'].'/vendor/autoload.php');
$openapi = \OpenApi\scan($_SERVER['DOCUMENT_ROOT'].'/v1/');
header('Content-Type: application/json');
echo $openapi->toJSON();

?>
61 changes: 60 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
@@ -1 +1,60 @@
home of web API
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="./swagger/swagger-ui.css" />
<link rel="icon" type="image/png" href="./swagger/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./swagger/favicon-16x16.png" sizes="16x16" />
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}

*,
*:before,
*:after
{
box-sizing: inherit;
}

body
{
margin:0;
background: #fafafa;
}
</style>
</head>

<body>
<div id="swagger-ui"></div>

<script src="./swagger/swagger-ui-bundle.js" charset="UTF-8"> </script>
<script src="./swagger/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "https://api.peviitor.ro/api.php",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
// End Swagger UI call region

window.ui = ui;
};
</script>
</body>
</html>
Binary file added swagger/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added swagger/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions swagger/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" />
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}

*,
*:before,
*:after
{
box-sizing: inherit;
}

body
{
margin:0;
background: #fafafa;
}
</style>
</head>

<body>
<div id="swagger-ui"></div>

<script src="./swagger-ui-bundle.js" charset="UTF-8"> </script>
<script src="./swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "https://petstore.swagger.io/v2/swagger.json",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
// End Swagger UI call region

window.ui = ui;
};
</script>
</body>
</html>
75 changes: 75 additions & 0 deletions swagger/oauth2-redirect.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!doctype html>
<html lang="en-US">
<head>
<title>Swagger UI: OAuth2 Redirect</title>
</head>
<body>
<script>
'use strict';
function run () {
var oauth2 = window.opener.swaggerUIRedirectOauth2;
var sentState = oauth2.state;
var redirectUrl = oauth2.redirectUrl;
var isValid, qp, arr;

if (/code|token|error/.test(window.location.hash)) {
qp = window.location.hash.substring(1);
} else {
qp = location.search.substring(1);
}

arr = qp.split("&");
arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=', '":"') + '"';});
qp = qp ? JSON.parse('{' + arr.join() + '}',
function (key, value) {
return key === "" ? value : decodeURIComponent(value);
}
) : {};

isValid = qp.state === sentState;

if ((
oauth2.auth.schema.get("flow") === "accessCode" ||
oauth2.auth.schema.get("flow") === "authorizationCode" ||
oauth2.auth.schema.get("flow") === "authorization_code"
) && !oauth2.auth.code) {
if (!isValid) {
oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "warning",
message: "Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server"
});
}

if (qp.code) {
delete oauth2.state;
oauth2.auth.code = qp.code;
oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
} else {
let oauthErrorMsg;
if (qp.error) {
oauthErrorMsg = "["+qp.error+"]: " +
(qp.error_description ? qp.error_description+ ". " : "no accessCode received from the server. ") +
(qp.error_uri ? "More info: "+qp.error_uri : "");
}

oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "error",
message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server"
});
}
} else {
oauth2.callback({auth: oauth2.auth, token: qp, isValid: isValid, redirectUrl: redirectUrl});
}
window.close();
}

window.addEventListener('DOMContentLoaded', function () {
run();
});
</script>
</body>
</html>
3 changes: 3 additions & 0 deletions swagger/swagger-ui-bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions swagger/swagger-ui-bundle.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions swagger/swagger-ui-es-bundle-core.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions swagger/swagger-ui-es-bundle-core.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions swagger/swagger-ui-es-bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions swagger/swagger-ui-es-bundle.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions swagger/swagger-ui-standalone-preset.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions swagger/swagger-ui-standalone-preset.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions swagger/swagger-ui.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions swagger/swagger-ui.css.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions swagger/swagger-ui.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions swagger/swagger-ui.js.map

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions v0/search/error_log
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[14-Oct-2021 08:24:44 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=country&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 10:16:43 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=country&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 11:24:46 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=country&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 11:25:48 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=city&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 11:26:48 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=company&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 15:52:38 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=country&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 15:53:38 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=city&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
[14-Oct-2021 15:54:38 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/shaqodoon/select?facet.field=company&amp;facet=on&amp;q=*%3A*&amp;rows=0): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v0/search/index.php on line 15
29 changes: 29 additions & 0 deletions v0/search/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

header("Access-Control-Allow-Origin: *");

$qs = $_SERVER['QUERY_STRING'];

// $url = 'http://solr.peviitor.ro/solr/shaqodoon/select?'.$qs;

$url = 'http://23.97.216.44/solr/shaqodoon/select?'.$qs;





$json = file_get_contents($url);





echo $json;







?>
75 changes: 75 additions & 0 deletions v1/background/error_log
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
[26-Sep-2021 10:14:57 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 10:15:05 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 10:16:14 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 10:29:59 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 21:25:59 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:10:06 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:10:08 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:10:21 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:10:23 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:10:59 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:18:33 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:18:40 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:19:16 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:19:21 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:19:23 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:20:29 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:49:02 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[26-Sep-2021 22:49:07 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[03-Oct-2021 16:59:38 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[03-Oct-2021 17:03:58 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[10-Oct-2021 09:46:36 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[10-Oct-2021 17:08:45 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[14-Oct-2021 08:26:40 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:3&amp;rows=100): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[14-Oct-2021 10:16:43 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:3&amp;rows=100): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[14-Oct-2021 11:24:38 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:3&amp;rows=100): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[14-Oct-2021 15:52:37 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:3&amp;rows=100): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[14-Oct-2021 15:53:06 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:3&amp;rows=100): failed to open stream: Connection timed out in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[17-Oct-2021 13:19:58 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[17-Oct-2021 16:00:29 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[17-Oct-2021 16:00:50 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[17-Oct-2021 19:34:56 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[17-Oct-2021 21:49:13 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[17-Oct-2021 23:22:15 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 03:28:10 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 16:15:51 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 18:44:02 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 20:55:23 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 21:59:19 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 21:59:26 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
[24-Oct-2021 23:57:18 Europe/Bucharest] PHP Warning: file_get_contents(http://23.97.216.44/solr/tech/select?q.op=OR&amp;q=cat:-1&amp;rows=100): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/peviitor/api.peviitor.ro/v1/background/index.php on line 21
Expand Down
Loading