ErrorException (E_WARNING)
Header may not contain more than a single header, new line detected ErrorException thrown with message "Header may not contain more than a single header, new line detected" Stacktrace: #3 ErrorException in /home/biryerde/SubTek.LaravelDirectory/vendor/symfony/http-foundation/Response.php:341 #2 header in /home/biryerde/SubTek.LaravelDirectory/vendor/symfony/http-foundation/Response.php:341 #1 Symfony\Component\HttpFoundation\Response:sendHeaders in /home/biryerde/SubTek.LaravelDirectory/vendor/symfony/http-foundation/Response.php:375 #0 Symfony\Component\HttpFoundation\Response:send in /home/biryerde/SubTek.1yerde.com/index.php:58
3
ErrorException
/
vendor
/
symfony
/
http-foundation
/
Response.php
341
2
header
/
vendor
/
symfony
/
http-foundation
/
Response.php
341
1
Symfony
\
Component
\
HttpFoundation
\
Response
sendHeaders
/
vendor
/
symfony
/
http-foundation
/
Response.php
375
0
Symfony
\
Component
\
HttpFoundation
\
Response
send
/
home
/
biryerde
/
SubTek.1yerde.com
/
index.php
58
/
home
/
biryerde
/
SubTek.LaravelDirectory
/
vendor
/
symfony
/
http-foundation
/
Response.php
        return $this;
    }
 
    /**
     * Sends HTTP headers.
     *
     * @return $this
     */
    public function sendHeaders()
    {
        // headers have already been sent by the developer
        if (headers_sent()) {
            return $this;
        }
 
        // headers
        foreach ($this->headers->allPreserveCaseWithoutCookies() as $name => $values) {
            $replace = 0 === strcasecmp($name, 'Content-Type');
            foreach ($values as $value) {
                header($name.': '.$value, $replace, $this->statusCode);
            }
        }
 
        // cookies
        foreach ($this->headers->getCookies() as $cookie) {
            header('Set-Cookie: '.$cookie->getName().strstr($cookie, '='), false, $this->statusCode);
        }
 
        // status
        header(sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText), true, $this->statusCode);
 
        return $this;
    }
 
    /**
     * Sends content for the current web response.
     *
     * @return $this
     */
    public function sendContent()
Arguments
  1. "Header may not contain more than a single header, new line detected"
    
/
home
/
biryerde
/
SubTek.LaravelDirectory
/
vendor
/
symfony
/
http-foundation
/
Response.php
        return $this;
    }
 
    /**
     * Sends HTTP headers.
     *
     * @return $this
     */
    public function sendHeaders()
    {
        // headers have already been sent by the developer
        if (headers_sent()) {
            return $this;
        }
 
        // headers
        foreach ($this->headers->allPreserveCaseWithoutCookies() as $name => $values) {
            $replace = 0 === strcasecmp($name, 'Content-Type');
            foreach ($values as $value) {
                header($name.': '.$value, $replace, $this->statusCode);
            }
        }
 
        // cookies
        foreach ($this->headers->getCookies() as $cookie) {
            header('Set-Cookie: '.$cookie->getName().strstr($cookie, '='), false, $this->statusCode);
        }
 
        // status
        header(sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText), true, $this->statusCode);
 
        return $this;
    }
 
    /**
     * Sends content for the current web response.
     *
     * @return $this
     */
    public function sendContent()
Arguments
  1. """
    Location: https://tek.1yerde.com/HTTP/1.0 302 Found\r\n
    Cache-Control: no-cache, private\r\n
    Date:          Fri, 19 Aug 2022 12:23:21 GMT\r\n
    Location:      https://tek.1yerde.com/login\r\n
    \r\n
    <!DOCTYPE html>\n
    <html>\n
        <head>\n
            <meta charset="UTF-8" />\n
            <meta http-equiv="refresh" content="0;url=https://tek.1yerde.com/login" />\n
    \n
            <title>Redirecting to https://tek.1yerde.com/login</title>\n
        </head>\n
        <body>\n
            Redirecting to <a href="https://tek.1yerde.com/login">https://tek.1yerde.com/login</a>.\n
        </body>\n
    </html>
    """
    
  2. false
    
  3. 302
    
/
home
/
biryerde
/
SubTek.LaravelDirectory
/
vendor
/
symfony
/
http-foundation
/
Response.php
    /**
     * Sends content for the current web response.
     *
     * @return $this
     */
    public function sendContent()
    {
        echo $this->content;
 
        return $this;
    }
 
    /**
     * Sends HTTP headers and content.
     *
     * @return $this
     */
    public function send()
    {
        $this->sendHeaders();
        $this->sendContent();
 
        if (\function_exists('fastcgi_finish_request')) {
            fastcgi_finish_request();
        } elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
            static::closeOutputBuffers(0, true);
        }
 
        return $this;
    }
 
    /**
     * Sets the response content.
     *
     * Valid types are strings, numbers, null, and objects that implement a __toString() method.
     *
     * @param mixed $content Content that can be cast to string
     *
     * @return $this
     *
/
home
/
biryerde
/
SubTek.1yerde.com
/
index.php
 
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
TZ
"Europe/Istanbul"
REDIRECT_REDIRECT_UNIQUE_ID
"Yv-AueAk3KeW6ixOYjlHOwAAAAY"
REDIRECT_REDIRECT_HTTP_AUTHORIZATION
"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImI1Y2RlOTczYjg4ZTdkZTlkZGZiNjEwYzMwNWExOGVhOWUwNDlhYjM0MzQ4NTZjOTY1YThkMWQ3NDM3NTBlY2NlZGEzNzk2Y2UwNTZlZTQyIn0.eyJhdWQiOiIyIiwianRpIjoiYjVjZGU5NzNiODhlN2RlOWRkZmI2MTBjMzA1YTE4ZWE5ZTA0OWFiMzQzNDg1NmM5NjVhOGQxZDc0Mzc1MGVjY2VkYTM3OTZjZTA1NmVlNDIiLCJpYXQiOjE2MTUyODI2NjYsIm5iZiI6MTYxNTI4MjY2NiwiZXhwIjoxNjQ2ODE4NjY2LCJzdWIiOiIyMCIsInNjb3BlcyI6W119.AW6E_HcVZlX-l6wq9LQH--KTks4zrXSZJHb_eWTkmm8_1b0rGLutqb3PmDTTJfZ_z1yZnEevb9CKr6HcbuCQWX7hgnbxpHXNuxhstQHKTfYM3nxVvs-LHGkNsb-VEZw2iMGh3jyEQutYtFz83h7WnD7F_vKB0bEFeRqB4i6zNobKnAh-rVPbNQd0XwTvUrCCCn_A1AB9lVuo1U3cy602raTjD0gs9_2fnrdgU3P334t1MZlBIspkEaMhudFBRnLuJ5OuX8O7GFjj1P4myFOcm8__sQdD5Xcdnl_k44DtLchEFKZUQ3qFigpdnuCdg2IG7y8N-7wKND9DWg2I-jIWMgm_HIs8ThLZ-RDwiQ9MD3GO867hSGlcp4V4-EvOpaVQun4IB_-TklXHHm7NM89uoyxQJHhlnUpbwZ72PVLKLRtYp42LzFfmYqqN4U-j9Ukdho8s_3xOWUoOXDEul8nM77B9pkNpKJPD9ZH8rnV7qJMJe11NB-zy8dPnqB2BZjOgvp_A403stzfr8lSTI7TJnzZ1I5gDsGMhGZAQMyP3xCIbjViIgYNG5ZNk-vEMn_5O8o48Uq8WXrh6IEklGryT7qa-GBQJVrjItOylX5f_fn8lVUj5E-KrUv_v5BvsdhtLwfKSNYMzTSV02cXedQVhbh0BeAz5lkXvOqwPnBGApuw"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_SSL_TLS_SNI
"tek.1yerde.com"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"Yv-AueAk3KeW6ixOYjlHOwAAAAY"
REDIRECT_HTTP_AUTHORIZATION
"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImI1Y2RlOTczYjg4ZTdkZTlkZGZiNjEwYzMwNWExOGVhOWUwNDlhYjM0MzQ4NTZjOTY1YThkMWQ3NDM3NTBlY2NlZGEzNzk2Y2UwNTZlZTQyIn0.eyJhdWQiOiIyIiwianRpIjoiYjVjZGU5NzNiODhlN2RlOWRkZmI2MTBjMzA1YTE4ZWE5ZTA0OWFiMzQzNDg1NmM5NjVhOGQxZDc0Mzc1MGVjY2VkYTM3OTZjZTA1NmVlNDIiLCJpYXQiOjE2MTUyODI2NjYsIm5iZiI6MTYxNTI4MjY2NiwiZXhwIjoxNjQ2ODE4NjY2LCJzdWIiOiIyMCIsInNjb3BlcyI6W119.AW6E_HcVZlX-l6wq9LQH--KTks4zrXSZJHb_eWTkmm8_1b0rGLutqb3PmDTTJfZ_z1yZnEevb9CKr6HcbuCQWX7hgnbxpHXNuxhstQHKTfYM3nxVvs-LHGkNsb-VEZw2iMGh3jyEQutYtFz83h7WnD7F_vKB0bEFeRqB4i6zNobKnAh-rVPbNQd0XwTvUrCCCn_A1AB9lVuo1U3cy602raTjD0gs9_2fnrdgU3P334t1MZlBIspkEaMhudFBRnLuJ5OuX8O7GFjj1P4myFOcm8__sQdD5Xcdnl_k44DtLchEFKZUQ3qFigpdnuCdg2IG7y8N-7wKND9DWg2I-jIWMgm_HIs8ThLZ-RDwiQ9MD3GO867hSGlcp4V4-EvOpaVQun4IB_-TklXHHm7NM89uoyxQJHhlnUpbwZ72PVLKLRtYp42LzFfmYqqN4U-j9Ukdho8s_3xOWUoOXDEul8nM77B9pkNpKJPD9ZH8rnV7qJMJe11NB-zy8dPnqB2BZjOgvp_A403stzfr8lSTI7TJnzZ1I5gDsGMhGZAQMyP3xCIbjViIgYNG5ZNk-vEMn_5O8o48Uq8WXrh6IEklGryT7qa-GBQJVrjItOylX5f_fn8lVUj5E-KrUv_v5BvsdhtLwfKSNYMzTSV02cXedQVhbh0BeAz5lkXvOqwPnBGApuw"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"tek.1yerde.com"
REDIRECT_HANDLER
"application/x-httpd-ea-php71"
REDIRECT_STATUS
"200"
UNIQUE_ID
"Yv-AueAk3KeW6ixOYjlHOwAAAAY"
HTTPS
"on"
SSL_TLS_SNI
"tek.1yerde.com"
HTTP_HOST
"tek.1yerde.com"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"deflate, gzip, br"
CONTENT_TYPE
"application/json"
CONTENT_LENGTH
"32"
PATH
"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"tek.1yerde.com"
SERVER_ADDR
"94.102.3.140"
SERVER_PORT
"443"
REMOTE_ADDR
"94.102.3.140"
DOCUMENT_ROOT
"/home/biryerde/SubTek.1yerde.com"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
"/cgi-sys"
CONTEXT_DOCUMENT_ROOT
"/usr/local/cpanel/cgi-sys/"
SERVER_ADMIN
"webmaster@tek.1yerde.com"
SCRIPT_FILENAME
"/home/biryerde/SubTek.1yerde.com/index.php"
REMOTE_PORT
"55256"
REDIRECT_URL
"/index.php"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/api/urun/listele"
SCRIPT_NAME
"/index.php"
ORIG_SCRIPT_FILENAME
"/usr/local/cpanel/cgi-sys/ea-php71"
ORIG_PATH_INFO
"/index.php"
ORIG_PATH_TRANSLATED
"/home/biryerde/SubTek.1yerde.com/index.php"
ORIG_SCRIPT_NAME
"/cgi-sys/ea-php71"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1660911801.3223
REQUEST_TIME
1660911801
argv
[]
argc
0
empty
0. Whoops\Handler\PrettyPageHandler