
SixPath
Members-
Posts
16 -
Joined
-
Last visited
Never
Everything posted by SixPath
-
i guess this something to do in mod_rewrite of mine. I will solve this issue and back here later. Thanks for your wonderful insights. Guys.
-
from butsags yeah i used that already, but js will work after the complete loading of page. and somehow.. we can see some white page before the redirection takes place.
-
from thorpe > no message at all. aside from this message "This webpage has a redirect loop. The webpage at https://www.example.com/seek has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer."
-
ok.. im using this settings in .htaccess the later two lines are the line that coincides to my search feature. but i want to to show to you the http/https redirection on the upper part because.. everytime i try to make a search and got those message. i am dump on this url = "https://www.example.com/seek"; considering we got SSL certificate
-
i got this version > 8.0.552.224 as a chrome browser.
-
yeah there is nothing more before the include() and after the header(). i will try to take this action.. and return here immediately.
-
this is the code. this page accept post data include("secure/lib/config.php"); require(CLASS_SRC."class.dataCleaner.php"); $info = new dataCleaner(); $cleanData = $info->cleanData($_POST[param]); $urlNow = SITE_URL."/quicksearch/".$cleanData; header("Location: $urlNow");
-
i tried this one.. but got the same result. header("Location: $urlNow"); I just wondering why is not working at chrome.
-
does anyone here got an idea.. what make this message " This webpage has a redirect loop. The webpage at http://www.example.com/seek has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer." from the chrome browser. The header redirection for IE, FF AND SAFARI are working. define(SITE_URL,"http://www.example.com"); $cleanData = "search data"; $urlNow = SITE_URL."/quicksearch/".$cleanData; header("Location: ",$urlNow); thanks in advance.!!!
-
how about using php Curl?
-
hi mr adam.. i just found out that on the lower portion of the page... my co-worker added a session variables that sets everything session variables into blank each time it detects that the user didnot login. so that was the reason.. and also i found out how to make "breadcrumbs feature" using $_SERVER[HTTP_REFERER] and its was good. thanks
-
thanks mr adam.. but first of all i would try to check all the session conditions and setting of variables on the breadcrumbs page... there are couple of classes being embedded there.. i will get back here soon as long as i checked the page. and once again thank you..
-
<ul> <li><a href="<?php echo SITE_URL?>">Home</a> »</li> <li> <a href="<?php echo SITE_URL?>/<?php echo $_SESSION[crumbs][src]?>.html"> <?php echo str_replace("-"," ",$_SESSION[crumbs][src]); ?></a> » </li> <li><a href="<?php echo SITE_URL?>/products/<?php echo $_GET[prod_id]?>"><?php echo $_GET[prod_id]?></a></li> </ul>
-
ok here it goes; ORIGIN PAGE: code : $_SESSION[crumbs][src]="newstyle"; //setting session BREADCRUMBS PAGE: code : echo $_SESSION[crumbs][src]; // newstyle > after refresh echo $_SESSION[crumbs][src]; // category
-
In addition with that, the session variable get its "own value" when i refreshes the breadcrumbs page... thanks
-
im trying to make a breadcrumbs feature on my site. this feature is driven using the session variables. My problem here is that.. i just wondering what make the session variables display its own value (not expected value).. this variable name got no similar across the whole site. i just wanna hear what are the possible causes why this happen... thanks