×


PHP header not redirecting error

Are you trying to resolve PHP header not redirecting issue?

This guide is for you


PHP header not redirecting error occurs due to some incorrect output buffering settings and wrong header formats.

The header() function is an predefined PHP native function. With header() HTTP functions we can control data sent to the client or browser by the Web server before some other output has been sent.

Here at Ibmi Media, as part of our Server Management Services, we regularly help our Customers to fix redirection errors in PHP.

In this context, we shall look into how to fix Website redirection issues.


Methods to fix PHP header not redirecting ?

Before going into the steps for fixing this issue let’s see some uses of PHP header?

The header() function in PHP sends a raw HTTP header. This raw data contains the request made by the server as information.

And, we call header() before any actual output is sent. It gives a clear idea about the object sent in the message body.

Also, the Location: parameter of the header returns a redirect status code to the browser.

Usually, we can redirect it either to a URL or some file.


In PHP, redirection to a URL will be of the following format:

< ?php header("Location: http://www.redirect.to.url.com/"); ?>

Similarly, to redirect to a file, we use the following command:

<?php header("Location: anotherDirectory/anotherFile.php"); ?>

Often this redirection results in some tricky errors, we will see how to resolve them.


How to fix PHP header not redirecting ?

PHP redirections are usually set when we get failed sessions. 

We can check this with the code given below:

if(
!isset($_SESSION['SESS_MEMBER_ID'])
|| (trim($_SESSION['SESS_MEMBER_ID']) == '')
AND !isset($fb_login)
) {
header("location:login.php?msg=Please+Login+Again.");
}

For failed session logins, we will try redirection to another page and this is when we notice that redirection has failed and a black page showed up.

This generally happens due to an error with output buffering.

If we use header("Location: ");, then it is necessary to use ob_start(); earlier in the script.

ob_start() function will turn the output buffering ON. While output buffering is active no output is sent from the script other than headers until we call ob_end();

Calling header("Location: "); after content has already been output to the browser can cause problems.

So, we ensure that no output is sent before calling the header.

Setting ob_start() at the beginning of the PHP file helps to resolve the error.

Similarly, errors in the header format can also cause redirection failures.

It is important to make the "Location" start with uppercase. Also, the header contents must be inside double-quotes.


[Still facing PHP redirection errors?- We'll help you. ]


Conclusion

This article will guide you on ways to fix #PHP #header not #redirecting error which generally occurs mainly due to the absence of ob_start() function, incorrect header formats, and so on. Your target destination server does not allow iframe redirects. Fix: Servers can solely determine if websites hosted on them can be reached via an #iframe redirect. The easiest way to resolve this is to simply change your selection from "Redirect using iframe" to "Redirect URL".

To redirect URL in PHP:

1. You can simply use the PHP header() function to redirect a user to a different page. 

2. The PHP code in the following example will redirect the user from the page in which it is placed to the URL http://www.example.com/another-page.php . 

3. You can also specify relative #URLs.