Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    PHP




Blank Page Caused By Undefined Index


I upgraded my php from 4.4.7 to 5.2.4 and now the entire website doesn't work.  So I am trying to learn PHP and go through the site one error at a time.  If you have a idea why the upgrade caused the site to fail that would be great.

But in the meantime this is the problem i am stuck on.

I get this error now when transferring to a page

Notice - PHP Notice: Undefined index: REMOTE_ADDR in c:locationSession.php on line 45.

That line has the following code.

$GLOBALS["$SessionName"]=md5 (microtime() . $GLOBALS[REMOTE_ADDR"]);

Like I said this code worked before the upgrade.  Any idea what I can do to fix this problem?




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Supress Errors At The Page Level? Undefined Index Errors.
I'm creating a simple reply form, and if a form item isn't answered I
get an error:
"Notice: Undefined index: rb_amntspent in
c:inetpubwwwrootmackinawsurvey.php on line 36"
even if in the code I allow for an unselected item. (Code at the
bottom here.)
It works fine otherwise.

Now in the past I've made a change to php.ini to repress errors, but
for this project I don't have access to the php.ini.
Is there a way to supress errors on that page for that session?

Or, is there a way to just not get that error at all?

Here's a sample of the code that gets the form response. If an item is
selected, no error for that question, but if an item is not selected I
get the error above even though I still get a successful echo for the
"else" or "default" option which occurs if nothing is selected:

$rb_visited = $_POST["rb_visited"]; //Have you ever visited Mackinaw
City, Michigan?
if ($rb_visited == "1") {
$rb_visited_reply = "Yes";
} elseif ($rb_visited == "0") {
$rb_visited_reply = "No";
} else {
$rb_visited_reply = "You did not answer this question";
};

$rb_lastvisit = $_POST["rb_lastvisit"]; //When was your last visit to
Mackinaw ity?
switch ($rb_lastvisit) {
case "1":
$rb_lastvisit_reply = "Earlier this year (2003)";
break;
case "2":
$rb_lastvisit_reply = "Last year (2002)";
break;
case "3":
$rb_lastvisit_reply = "2 years ago (2001)";
break;
case "4":
$rb_lastvisit_reply = "3 years ago (2000)";
break;
case "5":
$rb_lastvisit_reply = "4 or more years ago (1999)";
break;
default:
$rb_lastvisit_reply = "You did not answer this uestion";
}

Index.htm Going To Login Page And Sending Back To Index Page
1: A visitors visits a.html page. decides to login and post comment. goes to login page and logs in then I want to send him back to a.html page how do I do that? Here is my login page and login.php page.

2: Same as above but I want to send them back after some time... while I make them view the error, why they have not been able to login. Code:

Undefined Index

Notice: Undefined index: name in F:uniSoftware
engineeringassignment4guestbook.php on line 6

the variable $name is declared as $name = _POST["name"];

What could be causing this?

I've recently installed php 5 on IIS with mysql 4. All running on windows XP

downloaded code straight from my uni's tute site.

went to run it and it sort of runs but I get these errors at the top of the
page.

Undefined Index
Reference the above thread: "Passing a HTML variable to a PHP file
using include". One thing I've learned over the years is that an error
doesn't always come from where the compiler/interperture says it does.
Case in point maybe.

I am getting this error:


Notice: Undefined index: var1 in
/var/www/vhosts/texasflyfishers.org/httpdocs/form.php on line 4

Warning: fwrite(): supplied argument is not a valid stream resource in
/var/www/vhosts/texasflyfishers.org/httpdocs/form.php on line 5

Warning: fclose(): supplied argument is not a valid stream resource in
/var/www/vhosts/texasflyfishers.org/httpdocs/form.php on line 6

in this function:

<?php
if($_GET["op"] == "ds") {
foreach ($_GET["name"] as $key=>$value) {
$fp=fopen($_GET["var1"],"a");
fwrite($fp,$_GET["name"][$key] ."&nbsp;". $_GET["email"][$key]
.."&nbsp;". $_GET["phone"][$key] ."&nbsp;". $_GET["id"][$key]);
fclose($fp);
}
}
?>

'var1' comes from this last line in this snippet in a previous function:

<html>
<body>
<?php include ($_GET["var2"]); ?// this works
<br clear="all">
<?php include ($_GET["var1"]); ?//this works
<form action="form.php?var1=>($_GET["var1"])" method="GET"// NOT

I have found that the text editor you are using will color out the
parts of code if they are correct. This code does not color out evenly.
In the 2 'include' statements '$_GET' is red. In the 'form action'
statement it is not.

At this point 'var1' is a name on a disk with zero length. Is it
possible that the error trapping of the 'include' function is taking
care of this and the error trapping of the 'fopen' alerts you that it is
going to crash fwrite because 'var1' is now corrupted?

Undefined Index
I have a simple search feature that searches 3 fields in 3 separate tables
in a MySQL db, and I'm getting an 'undefined index' error, but only in the
first section (first table)of the results. The undefined index is tied to
the docs.projID in the "if ($row_search['docs.projID'] == 1)". This if
statement is there to control to format of the link as pages are in
different depths of subfolders depending on security needs. Googling this
sort of error seems to reflect problems with the $_POST['keyword'] not
existing when the results are first listed, so I moved the PHP results code
from it's own page (search.php) to the main page, which didn't help. I have
tried several different things and can't seem to get it working right. Here
is what I have:

Form:
<form id="search" name="search" method="post" action="<?php echo
$currentPage?>">
SEARCH<br />
<input name="keyword" type="text" size="20" value=""/>
<input type="image" name="Submit"
src="images/team_icon_go_btn.gif" />
</form>

Results:

<?php if (isset($_POST['search']))
{
$keyword = $_POST['keyword'];

mysql_select_db($database_website, $website);
$query_search = "SELECT Distinct docURL, docTitle, docDesc, docs.projID,
groupCode, projCode, catName FROM docs
JOIN subcat on subcat.subcatID=docs.subcatID
JOIN cat on cat.catID = subcat.catID
JOIN groups on groups.groupID=proj.groupID
JOIN proj on proj.projID=docs.projID
WHERE proj.projID=docs.projID AND docURL LIKE '%$keyword%' OR docTitle LIKE
'%$keyword%' OR docDesc LIKE '%$keyword%'";
$search = mysql_query($query_search, $website) or die(mysql_error());
$row_search = mysql_fetch_assoc($search);
$totalRows_search = mysql_num_rows($search);
$proj = $row_search['projCode'];
?>
<?php if ($totalRows_search < 1)
{
echo "No internal documents matched your request.";
}

else {?>

<p><table width=95%>
<tr><td colspan="3"><font size="+1">Internal Documents:</font></td>
</tr>
<tr>
<td><strongLink </strong></td>
<td<strong>Description</strong></td>
<td<strong>Project </strong></td>
</tr>
<?php
do { ?>
<tr>
<td>
<a href="<?php if ($row_search['docs.projID'] == 1) {
echo $row_search['catName']."/".$row_search['docURL'];
}
else {
echo
$row_search['groupCode']."/".$row_search['projCode']."/".$row_search['catName']."/".$row_search['docURL'];
?>"><?php echo $row_search['docTitle'];
} ?></a></td>
<td><?php echo $row_search['docDesc']; ?></td><td><?php echo
$row_search['projCode']; ?></td>
</tr>
<?php } while ($row_search = mysql_fetch_assoc($search)); ?>

</table>
<?php }?>
</p>
<?php
mysql_select_db($database_website, $website);
$query_search = "SELECT Distinct toolURL, toolName, toolDesc, tools.projID,
projCode FROM tools
JOIN proj on proj.projID=tools.projID WHERE toolURL LIKE '%$keyword%' OR
toolName LIKE '%$keyword%' OR toolDesc LIKE '%$keyword%'";
$search = mysql_query($query_search, $website) or die(mysql_error());
$row_search = mysql_fetch_assoc($search);
$totalRows_search = mysql_num_rows($search);

?>
<?php if ($totalRows_search < 1)
{
echo "No tools matched your request.";
}

Undefined Index: Id
I have a website online which I have taken offline to work on it, but when I load the pages, I get the error

Notice: Undefined index: id in C:wwwwebconnectwebsitedata.php on line 5 Code:

Undefined Index ?
I have some code with a problem. The code is:

1. <?php
2. $initStartLimit = 0;
3. $limitPerPage = 10;
4. $startLimit = $_REQUEST['startLimit'];
5. $numberOfRows = $_REQUEST['rows'];
6. $sortBy = $_REQUEST['sortBy'];
7. $sortOrder = $_REQUEST['sortOrder'];

The errors starts with row 4:

Notice: Undefined index: startLimit in *** on line **
Notice: Undefined index: rows in ***  on line **
Notice: Undefined index: sortBy ***
Notice: Undefined index: sortOrder in ***

The code was created by "phpCodeGenie" and works fine on my webserver, which has
php version 4.4.4 and
mySql version 4.1.21

I just installed easyPHP on my home computer which has php version 4.3.10
mySql version 4.1.9 The errors only show up on easyPHP.  My guess is that phpCodeGenie defined these indexes. How can I define them in EasyPHP ? 

Help With Undefined Index Error
I am geteting an Undefined index error on the script below. what could be causing this ?any help is appreciated. PHP Code:

Error Undefined Index
I keep getting the error: "Undefined index: page in ......." for this script:

<?
$page = $_Get["page"];
if (!$page){
$page = 1;
}

If the variable "page" isn't referenced in the url, I want it to be set to a default value of 1. This script works fine on one web server but not another. I'm assuming that it has to do with different php.ini files.

Undefined Index: Mode ...?
I was installing some "canned" php code and came across this error, and am not sure what it means.

Undefined index: mode in line xx.

here is the code snippet in case anyone can point me at something, or an ini setting. PHP Code:

Notice: Undefined Index:
I am getting the following errors:

Notice: Undefined index: sender_name in c:program filesapache
groupapachehtdocsallinone_form.php on line 12

Notice: Undefined index: sender_email in c:program filesapache
groupapachehtdocsallinone_form.php on line 14.....

PHP Notice: Undefined Index
I got this error message below. How can i fix it...

PHP Notice: Undefined index: REQUEST_URI in c:inetpubwwwrootguestbookguestbook.php on line 41 PHP Warning: Cannot add header information - headers already sent in c:inetpubwwwrootguestbookguestbook.php on line 41

any help is very much appreciated.

Undefined Index Notices
I'm getting this:

[client 192.168.5.50] PHP Notice: Undefined index: D1 in
/var/www/html.....

From this line of code:

$id_option = $_POST['D1'];

Which is posted by this:

<form target="_blank" method="POST" action="mailchart.php" name="mail_data">
<input type="hidden" name="D1" value="<? echo $id_option; ?>">
<input type="submit" value="View Chart"></p>
</form>

My question is why?

I *am* getting the correct value for $_POST['D1'] and at this point in
time am really quite confused because that notice is getting thrown.

[root@... ~]# php -v
PHP 4.3.11 (cgi) (built: Nov 8 2005 06:24:40)

[root@... /]# uname -a
Linux ... 2.6.12-2.3.legacy_FC3 #1 Sun Feb 19 10:47:10 EST 2006 i686
i686 i386 GNU/Linux

Undefined Index: Error
simple php website that displays a table from my mysql
database.

To prep for my MCSE I moved my home server to Windows 2003 Standard, I
installed mysql and php 5 to run some of my databases and websites.

Under Linux the site worked fine, under windows I keep getting Notice
Undefined Index error on line 67

I have went back to the basics just pull the data then display and
still get the same error.

60 $sql = "SELECT * from newschool ORDER BY State, CollNam";
61
62 $result = mysql_query($sql, $dbcnx) or die(mysql_error());
63 $number_of_rows = mysql_num_rows($result);
64
65 while ($newArray = mysql_fetch_array($result)) {
66
67 $id = $newArray['id'];
68 $testField = $newArray['testField'];
69
70 echo "The ID is $id and the text is $testField <br>";

Undefined Index: Referral
When the cookie exists its fine, but when the cookie doesnt exist it gives the error.....

Undefined Index From Name Search.
I am developing a Abstract Submission system for a small medical association. What they want it to do is be able to search an exsiting members database and fill out the information automagically from the search.

The original database is in Access and I have successfully exported it into MySQL without any problems. When I do the search and all of the fields are in the database for the form that I want to have filled out it works perfectly. but... if one of the fields is empty. I get a error.

"Warning: Undefined index: MiddleName ... on line x"

for each of the fields that is empty. I know why this is doing it. But I don't know how to fix it. I was thinking of using if then statements and adding a space to the variable so that variable would not be empty but that would screw up my Error checking in the next step. Code:

Warning: Undefined Index: 2 In
wat does this error means?

Warning: Undefined index: 2 in C:Inetpubwwwroot emplateadmin.php on line 453

if i manually install php,(setting manually), this error wil not appear. but if i use the .exe to install, (means i dont' have to do the settings), this error will appear.

Undefined Index Problem????
i have a html form called connect.html where i enter my username and password. After i have done that i hit the submit button. If i am successful, a message sayingUser [ w1009048] successfully connected which is in my handler1.php . I then click on a link called table which redirects me to another page (table.php) and SHOULD display the customer id and name from my customer table(database).  When i click on the table link i get the following statmetents: Code:

PHP Notice: Undefined Index:
My question if more of a "good practice" type of thing.  Let say I have a session variable $_SESSION['username'].  And I want to display some text based upon the fact that this variable exists.  So if I do this:

<?php 
if ($_SESSION['username'] == 'bob@domain.com') {
     echo "Hello World";
}
?>

When I do this, I get PHP Notice:  Undefined index:  username in my log messages.  Now granted this is just a notice and not an error.

So, my question is, is there anything wrong with this?  Or is it really necessary to do checks like isset()??

Getting Undefined Index/variable Errors?
I have no idea why my variables are not being sent to the server. With php 4.3.1, Apache 2.0.44 and MySQL, the following script PHP Code:

Undefined Array Index Question
I am curious about how php deals with the following situation where I use an undefined index into an array. PHP seems to be behaving exactly how I want it to but I want to make sure that it is not a fluke. It seems like most programming languages would crash if you used an undefined index. Why does PHP work the way it does?

My example is below ....

$http_post_vars (Warning: Undefined Index: 23232)
I have a form with one text box and when I submit the form and try and call the value on the next php page like this echo $HTTP_POST_VARS["myIP"];

I get the following error:
Warning: Undefined index: 23232 in D:phpStatsdisplay_stats.php on line 6

however if I use the while loop to get the data from the form it works fine. Anyone know why this is happening?

Security Problem + Undefined Index Error
I am creating a simple message board for a project at school. Anyway, I have made the login page, so if the user is recognised, he/she enters the mainpage. The only problem I have is that, you can easily pass the variable user through the url and become a user if not already one, and ppl can pretend to be others.

So, I was wondering, how do I prevent ppl from, if they enter the mainpage url, how do I write a message saying "Hacking Attempt" or something like that, so that I basically stop this security flaw. My 2nd problem is I have 4 boards for the msgboard. Each has url: mainpage.php?board=whatever The links work fine and the user can go to these links, but I get an error at the top of the mainpage saying "warning - undefined index 'board' "
Here is the code:

Fatal Error: Call To Undefined Function: Mysql_connect() In /var/www/html/index.php
I get the following error:
Fatal error: Call to undefined function: mysql_connect() in
/var/www/html/index.php on line 3.

I have the following RPMS installed on RH7.2
MySQL-client-4.0.14-0 I would really appreciate it.
MySQL-shared-4.0.14-0
MySQL-server-4.0.14-0
MySQL-devel-4.0.14-0
php-imap-4.0.6-7
php-4.0.6-7
apache-1.3.20-16
apache-devel-1.3.20-16
apacheconf-0.8.1-1

The code i am trying to run is: I would really appreciate it.
<?php
printf("opening db.....");
$db = mysql_connect("localhost","user","password");
printf("closing db
");
mysql_close($db);
?>

The configure part of phpinfo() shows:
-----
'./configure'
'i386-redhat-linux' '--prefix=/usr' .<snip>
'--enable-wddx' '--without-mysql' '--without-unixODBC'
'--without-oracle' '--without-oci8' '--with-pspell' '--with-xml'
------

I believe the mysql is not installed to work along with PHP. I
installed php using rpm.
My question is how do i make it work. I have checked NG and tested all
the options. But to no avail.

I also tried by uncommenting the line extensin=mysql.so in
/etc/php.ini.

Login Page Produces Blank Page
What I get when I enter username/password and hit submit is a blank page and the URL never changes. In other words, the login page is 'index.php' and when submitted it should redirect to 'admin.php'. Instead the url/address stays at 'index.php' and the page turns completely blank.

In the previous thread, the problem turned out to be some missing indicator to the md5 encrypted password. Well, in this version, that's there! In fact, I used the ending scripts for that project in creating this project. So, why it won't work is a real mystery. Code:

OOP Page = Blank
OOP – page does not display

I need your keen eyes to figure out what is happening here

I have an OOP script that works well on two local test servers
One runs a slightly older PHP, the other one the last PHP just before release of PHP5, in both cases it runs with Reg Glob off, as it should
How is it built:

One) A class that reads a template, sets values, and sends info to a browser.
That class I have used many times and I know it does not cause any trouble

Two) a templates
Using the following
<!--{PROD_1}--> no problems here!

Three) the main page
<<
require_once ("../DB conn etc..."); // Include the configuration file.
require_once ("../classes/the class I mentioned in “One”.class"); // Include the class.
$id=1;
$page = again the “One” class ("../templates/main_template_products.inc.php"); // Create an instance.
$content_1 .= ''
include "../includes/prod_1.inc.php";
$page->SetParameter("PROD_1", $content_1);

and my include file
<?
$conn = db_connect();

$sql= "select prod_1 from XXXXX where id=$id";
$result = mysql_query($sql,$conn);

while ($new_content=mysql_fetch_array($result) ){
$content_1.= $new_content[prod_1];
}
?>

I am pretty sure that the scripts has no fault. It works on another production server.

So what can go wrong. Up to the point of getting a full blank page that in “view source” shows 100% of nothing! I know the DB conn fine since I can edit it via my CMS using the same db conn function.

Will that be a server setting? It runs with reg glob on and safe mode on.

PHP Blank Page.
I posted earlier about this, a blank php page. I've enabled logging
ALL in the php.ini, but nothing. If I change the name of the db in
the include file, I get an error message, so I guess this means it's
connecting to the mysql db. I've included the first couple lines of
code for this page:

index.php
<?php
session_start();
require_once('inc/db_config.inc.php');
$conn = db_connect();
$sqlsu = "SELECT * FROM subjects ORDER BY ID";
$ressu = mysql_query($sqlsu, $conn);
if (mysql_num_rows($ressu)) {
while ($qry = mysql_fetch_array($ressu)) {
$cat = stripSlashes($qry['cat']);
$resns = mysql_query("SELECT * FROM questions WHERE test LIKE '$cat'",
$conn);
$numcat = mysql_num_rows($resns);

inc/db_config.inc.php

function db_connect()
{
$result = @mysql_pconnect('localhost', 'root', 'password);
if (!$result)
return false;
if (!@mysql_select_db('quiz'))
return false;

return $result;
}
?>

Getting A Blank Page?
When I try to run a PHP script of mine, I get a totally blank page. I've tried to put HTML at the very beginning of it, but even that does not show up. I don't see anything wrong with it either. Basically there are two header requires, and then some code that reads a database, and then a few more requires.

Blank Page?
I hve index.php setting two session variables when you login. But when i put session_start(); on any other page to get the variables, it leaves me with a blank page. What could be causing this?

Blank Page
I tested this php form, and it worked on 2 out of three computers, all of which were on different networks. The one that didn't work stalled after I hit submit . . . all I got was a blank page . . .  no error messages or anything. This happened whether it was on a PC or Mac, in Firefox, or IE. Any ideas what could be causing it? Code:

Blank Page / Timeout
My website consumes an XML web service using SOAP to handle the requests and responses. If the response is larger than a certain size, i get nothing back and my browser shows a blank page with nothing in the source code. I do get a result if the response is smaller so the request code seems to be working.

My php.ini files includes:

max_execution_time = 300
max_input_time = 300
memory_limit = 128M

Error Reporting is E_ALL - i dont even get any error messages when it does fall over.

Are there any other settings that i should try to let the server handle a larger response?

Debugging Blank PHP Page.
How can I debug a blank PHP page? I've turned on all logging in my
php.ini, bu the page just turns blank.

Blank Page Issue
In my website i am facing a issue now . all my forum php pages its showing blank page but other php files its running fine and i am using vb bullitn . do any one have idea why its coming.

Blank Page Is Coming..
I have a problem installing php5 in windows xp. I am getting a blank
page while i process the file.
if i type localhost the iis page is loading. i created a virtual
directory 'php' if i type http://localhost/php means it is showing all
the files in the directory but if i click the file a blank page is
coming.

can anybody give me a solution to resolve this.

PHP Page Is Blank For Newbie
phpinfo.php works just fine . php intro pages work just fine too
When the code below is posted the page appears blank does some one
have any ideas why a page will appear blank.

Displaying Just A Blank Page??
I have commented out a lot of my code and have realised that the code below is what the problem is. I have placed ini_set('display_errors', 'on');
error_reporting(E_ALL);  at the very top of the page. No errors are displaying. However I can't see what the problem could be. Code:

Blank Page With [object] On It
I'm using a popup window to INSERT data into a dbase. I pass two variables to the popup, the problem the I'm having is the when I pass the two variable the opener turns blank with an [object] on it with one of the variables on the address bar and the popup with the other. What I want is the the opener not to go blank and the two variable pass to the popup. The code work perfect in macs safari but not in microsoft explorer. Here's the code:

Search Problem, Blank Page
I have a simple search on my site. It searches through by database of products by keyword. I'm sure my coding is wrong. When I submit, I recieve a blank page. I'm using MySQL, Apache server and PHP4. Any help would be great. I've tried changing some code, but still get the same results. Code:

Code Makes A Blank Page?
I upgrade from PHP4 to PHP5.4.2 and now this code doesn't work.  I moved the header command up to the top (you can see where I commented it out lower in the code) and now all that show is the header.  If I have the header in the original position the page is blank. Code:

Redirect Code Gives Blank Page
I have a simple piece of code designed to register a bookmark in an arrray during a customer site visit. The page should update the arrray and redirect but I get only a blank page. I dont get error messages and this basic code works in a similar application. Code:

Using Index.php As A Starters-page
when you type an URL it will always search for index.html. how can I change this, because my starterspage starts with index.php?

Will Google Index My PHP Page?
I'm building this forum, where its like Vbulletin (viewtopic.php&topic=xxx), and it displays the posts for those topics Will Google index my pages, if they are ALL php? They are all generated like that above.

Doesn't Like Index.php For Main Page
I've built a website and some of the pages are php pages (e.g. SomePage.php). It all works fine; both the html pages and the php pages come up and work just fine.

I then made a change to the main index.html file and made it so that it's an index.php file instead, and it has some php code embedded in it, not much different than any of the other php pages on my site.

But when I try to go to that index.php file, as the first file to bring up for the site, it fails to bring up the page but instead pops up an Open File dialog, asking if I want to Open or Save the index.php file. It's as if the server is not recognizing index.php as being a php file that needs the normal php pre-processing on the server side.

I used to get similar prpoblems with the other php pages before I had my server properly set up with Apache and php and such. But all of that is indeed properly set up. The OTHER php pages come up OK. It's just the very first, index.php page, that doesn't come up correctly.

What am I doing wrong?

Index.php?=page & Menu
I currently am new sorta in the php field. Basically I haven't really made my own php scripted site. So I am learning as I go.

I want to do something that shows like: www.mysite.com/index.php?=hosting

Then on the hosting page I would display my content.

Ho would I go about doing that and including a right and left side menu?

No Errors, Just Blank Page - Error_reporting(E_ALL)
Hey people. I have a strange problem. I never get any errors, just blank pages. Even if I insert error_reporting(E_ALL); . Is there an INI setting that I am missing?

Display A Blank Page When Form Submit?
I keep getting a blank page when i submit my registration form, because there's no errors being display.

Tikiwiki: Tiki-install.ph Blank Page
Just in case anyone searchs on this topic. I kept
getting a blank page running a fresh install of
tikiwiki 1.9.x tiki-install.ph. Downgrading to 1.8.x
gave me a mysql_connect() error which tipped
me off to the problem. I was running a fresh load
of FC 4 which had a php, php_pear and mysql but
not a php_mysql connector. Doing a rpm query
should show at least:

# rpm -qa | grep php
php-mysql-5.0.4-10.5 <== this was missing
php-5.0.4-10.5
php-pear-5.0.4-10.5

Solution was to do a "yum install php-mysql".

It'd be nice if tiki-install.ph did some sort of test
that 1.8.x appears to have been doing.

Ie6 And Lower Loads Blank Page After Login
I've got a script the logs the user, then redirects them a different page. Everything works fine in Firefox and ie7. But anything ie6 or lower, after they click login, it just loads a blank page. Upon refreshing, it loads the page just like its supposed to. I read a little bit about problems with sessions and ie6, but didn't find any real solutions. I know ie is worthless, but is there any real fix for this? Code:


Copyright © 2005-08 www.BigResource.com, All rights reserved