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


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Netscape And PHP3


when i search for data in MySQL and then create a link of the data returned to another
page so users can click on the link and then edit the data associated with their selection, thats were Netscape fails to pass the data to the next page so when users click on the links nothing comes up except if they are using IE 4.0+ which passes the data with no plroblem. i already tried the forms in HTML and PHP but wiht no success.




View Complete Forum Thread with Replies

Related Forum Messages:
Anyone Know If Php3 Extentions Are Avilable To Netscape Enterprise Server 3.51 UNIX
Does anyone know if there's way of getting Php3 to work on Netscape Enterprise Server

View Replies !
Different Between Ie 5 And Netscape 4.5 ?
when using ie 5, the $PHP_AUTH_USER and $PHP_AUTH_PW is set by an earlier php file.
Upon redirecting to another page, only netscape 4.5 has these variables not set. The following is not set for netscape 4.5 .

<?php
if(!isset($PHP_AUTH_USER) | | !isset($PHP_AUTH_PW) ) {
Echo "Invalid Login or Login Expired !";
Echo "Try Again ! <A href='login.php'>Login Here </a>";

View Replies !
Netscape/IE
i have code that prints out bookmarks in a html table. the links appear in the table and when i click on a link in IE it goes to the link. when i click on the link in netscape it says

Forbidden
KFWebServer/2.5.0 Windows XP at http://127.0.0.1 Port 9122

this appears to be the offending line of code (best guess)


print("<td><a href="http:www.tinyurl.com$row[0]">$row[0]</a>
</td>");

i am going to have my resume on this site so i care about different browsers. i will probably test mozilla also. before i wouldnt have cared but since the virus writers target IE and everyone is being told to use different browsers it becomes more important now for my site to work with more than one browser.

View Replies !
Sessions And Netscape 4.7
Has anybody had problems with sessions and Netscape 4.7. I've been searching the forum for answers but cant find any. I've tried this:

// s1.php

<?php
session_start();
session_register("foo");
$foo = "bar";
?>
<HTML>
<HEAD>
</HEAD>
<BODY>
<A HREF="s2.php?PHPSESSID=<? echo $PHPSESSID; ?>">check var</A>
</BODY>
</HTML>

____________________________
// s2.php

<? php session_start(); ?>
<HTML>
<HEAD>
</HEAD>
<BODY>
<?php echo $foo; ?>
</BODY>
</HTML>

This works in IE and Netscape 6, but not 4.7

View Replies !
Netscape 4.x Error
i have a php page that does not disply in netscape 4.x

when you click on that it sould display a page with some text/pictures and a bunch of questions.....it works in IE but not it netscape....when you view the source page it looks like it is all there..but just not displaying.

View Replies !
Why Is This Not Showing In Netscape?
The below script works fine in IE but not in netscape. The checkboxes are shown, but when clicked nothing happens, what am I doing wrong?

View Replies !
Netscape & Sessions?
Has anyone else had trouble getting sessions to work with Netscape?

I have a script that adds an item to a basket. Works great in IE, but Netscape continues to replace the existing contents instead of adding.

I have tried passing the SID via the URL, same result.

This has also been tested on both Mac and PC and only works with IE?

View Replies !
Setcookies & Netscape
Can anyone explain why the following sets a cookie on IE, but not on Netscape?

<?php
$lifetime = time() + 86400 * 7;
if (isset ($aud)) setcookie ("tar", $aud, $lifetime,"/","mydomain.com");
?>

View Replies !
Cookies Won't Set In Netscape 4.7
I've tried lots of different things, but my cookies just don't seem to set in Netscape 4.7. The function below is included on a page that the user is taken to when they type their user name (UserName) and password (Password) into a form and click the log in button. PHP Code:

View Replies !
Cookie In IE Can't Appear In Netscape?
i'm experiencing one problem regarding setting the cookie. may i know why the cookie that i set in IE can't appear in Netscape? what i mean the page that i view using netscape are without cookie while in IE display the cookie page?

View Replies !
Netscape Compatability?
I have looked for the information regarding browser compatability and PHP 4.06, without success. Does anyone know of this, or can direct me to it?

View Replies !
Download With Netscape
I use "header" to force download of text data on Windows desktops.

header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename=$file_name");

$file_name is a file name like "my_file.txt".

It works well with IE6. With Netscape7, the Save dialog box has "PHP" set as
file type, which causes the file to be downloaded by default to
"my_file.txt.php".

It can of course be changed manually in the Save dialog box, but has anyone
an idea where this "PHP" setting comes from?

View Replies !
Detecting Netscape 4
I am using PhpSniff to detect browsers, checking for browser name and major version. This doesn't work on my NS4.8 test browser because it only returns HTTP_USER_AGENT as "Mozilla/4.8 [en] (Win98; U)" and therefore shows up as Mozilla.

I can get round this by testing for the minor version. But am I correct in assuming that any Mozilla/4.x with a minor version greater than .0 is a genuine Netscape?

I am using this to serve NS4 a simple table layout, so I don't want to catch any other browsers by mistake.

View Replies !
Problem With Cookies In Netscape
I'm doing a user login script, and I am using cookies to try to pass the values of the person's username, password and id number to another page. Is there any reason why the following doesn't work in Netscape:

Code:
(omitted code of database query)
while ( $row = mysql_fetch_object( $result ) )
{
$id = $row->id;
$username = $row->username;
$password = $row->password;
}
setcookie( "id", "$id", 0 );
setcookie( "username", "$username", 0 );
setcookie( "password", "$password", 0 );

I then go to main.php. Just to test if the cookies work, I coded:
Code:
<?php
print "$id<br>$username<br>$password";
?>

In IE it works perfectly, but netscape prints nothing but the to <br>'s. I did make sure that Netscape accepts cookies, and even have it so that a msgbox pops up to tell me what the values of each cookie are.

What could possibly be going wrong?

View Replies !
Netscape Image Refresh
I have a button that is made by PHP's GDlib that says:

Home

And I call it to my page by saying:

<img src="button.bkk?message=Home"> and on IE it works fine.
It works fine on Netscape fine too but then I wanted to show a blank button when the user is on the home page and when they're not have it appear.

So this of course works perfect in IE but in Netscape here is what is happening:

The user accesses the home page, gets button.bkk as an image and even on other pages does not refresh it (even on a reload request) because Netscape thinks it allready has it. So the user never sees it say home unless the first page they see is NOT the home and when they go to home then it STILL says "Home"

1) Am I making any sense?
2) Is there a way to force Netscape to either redownload a certain image or have it check to see if its new?

View Replies !
400 Bad Request For Netscape 4 Users
I recently created an order FORM for my employer. (I have included the code at the bottom of this post) Its been live for about two weeks now, and during that time a few problems have come to light. When Netscape 4 users complete the form (its a 5 step form which passes variables in the URL) they get the following error on Step 4.

Bad Request Your browser sent a request that this server could not understand. The request line contained invalid characters following the protocol string.

Our webhost is running an Apache server v1.3.27, and the form is on a secure (https) page.
At present, its not a particularly pressing issue (only 3 users out of an approximate 500) but I am irked beyond words. I would like to know what is causing this problem.
Code:

View Replies !
Netscape Redirect Loop
I'm currently testing with "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; m18) Gecko/20010131 Netscape6/6.01". The problem is this: we have lot's of forms where users can set options and post the form, the page will then reload with the new options set, but to avoid the annoying "Page has expired" error, aswell as to avoid people from double posting by hitting reload, we have implemented the form handling as a simple process:
Handle the form If successful, redirect back to page using header()Otherwise, redisplay form with error messages.

Now, this works fine in IE, but in NS6, the following appears in the location bar when we post these forms and no errors occured during handling: "file:///C:/Program%20Files/Netscape%206/Netscape%206/chrome/packages/core/redirect_loop.xul"

Judging from the name, Netscape seems to think it's running into a redirect loop because of the header('Location: ...') we use, which of course can't be true because it works fine in IE and Netscape 4.71. A very basic example goes like this: PHP Code:

View Replies !
Running Php On Netscape Browser
for some reason, I have a difficult time running my php script on netscape 4.7 browser. it works well on i.e but netscape for some reason messed up part of my code. anyone know why?

View Replies !
Netscape 6.x Session Irregularity
Is anyone aware of a bug in Netscape 6.x that messes up session variables in PHP 4.x?
I can't get any of my session variables to show up. If I echo get, post, session and cookie variables on a page where session variables should be, I get the following:
Code:

View Replies !
Weird Refresh Problem With Netscape 4.08
I am developing a new site and I am having a weird problem with Netscape 4.08 browser. The page, once loaded, re-loads itself for some reason. I am using a lot of PHP... was wondering if anyone could shed some light on this for me?

View Replies !
Clearing Cookies In Netscape When Done Shopping?
Got a real problem with clearing a cookie in netscape once a customer's order is completed (payment processor accepted).

I was using setcookie("cart_id", ""); initially to clear the cookie which worked in IE but not in Netscape.

I've tried setting an expiry time to it and a host of others.

Does anyone have special tricks to getting rid of them?

I NEED to have the cookie clear upon the order being accepted and nothing is working in Netscape.

View Replies !
Problems With Netscape Vs Internet Explorer
I have a form on a standard html page which works great with IE but Netscape ignores it. Is this normal behavior? what have I done wrong? Here is the code minus the db & password info.....

View Replies !
Netscape Mozilla Iexplorer Standard
how to make my page that it was correct with every browser standard?

for example when i change HTML's table size it has no effect when i see
it under mozilla and has effect under Internet explorer-does anyone know
how to solve that problem?

View Replies !
Netscape Cannot Load Local PHP Pages
I am developing a php application on a windows xp machine running IIS and I cannot load the famous test.php page or any others with a php extension in my
Netscape 7.1 browser (I also tried version 4.6). I am always prompted
with: you are trying to open an application of type
"application/octet-stream " and what I would like to do with the file,
when in reality my browser should be processing it. It works great in
IE, and php pages on the web work fine in Netscape. So I know it is
something local, but I just can't figure it out! Is there a
particular setup of php files with Netscape, something mime-type
related? Does anyone have any advice?

View Replies !
: In Netscape Emulate The IE Object.CLICK();
In IE I can send a click event to a form filed with objectName.click();
Is there a way to do this in other browsers like Netscape 6+ and Opera,
etc...?

View Replies !
Php Download Management - Netscape/mozilla Bug
I am using the script as below, but there is a problem, in Netscape, and
Mozilla Firebird, a .php is added to the filename when the user is prompted
to save, it's ok in Internet Explorer and Opera though:

$filename="/home/myUserName/filename.exe";
header("Content-Disposition: attachment; filename=filename.exe");
header("Content-Type: application/octet-stream");
header("Content-Length: ".@filesize("$filename"));
readfile("$filename");

This works fine, other than on Mozilla Firebird and Netscape, it wants to
save as filename.exe.php
I've noticed if I make the download link download.php?anyvariable=anyvalue,
the .php IS NOT added however, so I use that to temporarily stop the
problem.
Can anyone suggest what I maybe doing wrong.

View Replies !
How To Install PHP In Netscape Enterprise Server?
My company use Netscape Enterprise Server as a web server. But If I want to use PHP, how can I install? Is the install process same as Linux server? if it can't install. What Programming language should I might use..CGI, JSP or else?

View Replies !
Netscape (Transfering Data From Localhost)
I use Netscape Navigator (7) for one purpose and that is seeing the Document read time at status bar. However, Since several weeks the Time won't show. This must have something to do with my application? Now it only says "Transfering data from localhost..." even though the document has been read. What should I do to make It says "Document done (0.083 sec)" or similar?

View Replies !
Netscape Creates 2 Files For My Sessions
I am having a problem with Netscape when I try to create session variables on two different pages. Netscape produces two separate session temp files ... one with the Redirect.php session variables... one with the Results.php session variables... both have an unique sessionID. IE works fine (in that it creates one session temp file for all variables). Here is the code I am using: PHP Code:

View Replies !
Netscape Truncating String At Space
While using the following commands with Netscape the "string" gets truncated to the first occurence of a space. Code:

View Replies !
Printing POST Data In Netscape.
I've got a site that generates all sorts of reports on the fly both by including text files with content and pulling stuff from a database all based on user selections from a form. Needless to say, users HAVE to be able to print these reports for this thing to have any applicable use whatsoever.

My Problem: Netscape will not print these pages. The error is: Data Missing.

This document resulted from a POST operation and has expired from the cache. If you wish you can repost the form data to recreate the document by pressing the reload button.

It would seem the solution lies in forcing Netscape to cache these pages. This seems ridiculous to me as these will always be dynamically generated pages - but whatever, the "common sense" of Netscape eludes me often.

View Replies !
Inline DIVs Under Netscape/Opera
i want to display a series of inline, fixed-width DIVs that will wrap into
columns - a table, basically. i can do it under Internet Explorer, but the
same code under Netscape or Opera does not behave as expected. the DIVs
"collapse" into small rectangles (i put a border around them so i could
see), but their contents (some middle-aligned text) span the width of the
page. if not for the borders that i added, it would appear that each DIV was
width: 100%. rather than a number of smaller columns, i get one big, fat
column. what am i doing wrong? here's the code (with only two columns, for
simplicity):

<?xml version="1.0" encoding="us-ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<head>
<title></title>
<meta http-equiv="Content-Type" content="application/xhtml+xml;
charset=us-ascii" />
<style type="text/css">
div.productListing {
display: inline;
width: 128px;
text-align: center;

/* temp */
border: solid 1px red;
}
</style>
</head>
<body>

<div class="productListing">
<div class="productImageContainer"><img class="productImage" src="#"
alt="Cufflinks" /></div>
<div class="productName">Gold Cufflinks</div>
<div class="description">They are cufflinks and they are gold.</div>
<div class="price">$59.90</div>
</div>

<div class="productListing">
<div class="productImageContainer"><img class="productImage" src="#"
alt="More Cufflinks" /></div>
<div class="productName">Gold Cufflinks</div>
<div class="description">These cufflinks are also gold.</div>
<div class="price">$69.90</div>
</div>

</body>
</html>

View Replies !
Flash Banner Not Showing In Netscape Browsers(7.x)
I just got my site up and low and behold, my flash banner does not
show in Netscape, only in IE. It shows on Netscape in my local testing
enviornment, this is why I felt all was fine. the site is at
www.derouenfamily.com

If you see a blank white space where a banner should be, thats it..
its at the top of most of the pages.

Am I nieve, is this something that is known, or is there a simple fix
to this. Alot of the postings speak of POSR bugs et al. All
elaborators will be appriciated.

View Replies !
Strange Problem With Netscape, Opera And Pageviews
i'm trying to count pageviews on my website. this is part of the code
included in each page:

$query = mysql_query("SELECT * FROM pageviews WHERE datei =
'$datei'");

if(mysql_num_rows($query) != 0)
{
$query = mysql_query("UPDATE pageviews SET hits = hits + 1 WHERE
datei = '$datei'");
}
else
{
$query = mysql_query("INSERT INTO pageviews SET datei = '$datei',
hits = &#391;'");
}

the "hits" field in the database is incremented every time a page gets
hit. this works fine with IE and mozilla firefox, but NN and opera
count a page twice when you load for the first time. i figure that
somehow a reload is triggered, but i don't know how.

the page contains javascript also, but even without it it counts
twice.

anyone any ideas?



View Replies !
This Code Fails On IE But Works With Netscape / Mozilla
<script language="Javascript1.1" type="text/javascript">
function xso_popup(url,name,options)
{
var cw=window.open(url,name,options);
cw.opener=this;
cw.focus();
}

Link :

<a href="javascript:xso_popup('http://www.somewebsite.com/images/image 239.jpg','Enlarged View','width=300,height=300,scrollbars,resizable') ">

What could be wrong ? I just get a "Error on page" error with some gripe
about arguments.

View Replies !
Firefox, Netscape And Opera Not Accepting My PHP Session?
I have compiled a PHP Upload script including Flash interface to upload files to my hosting. The only problem though is that it will only work with internet explorer? With other browsers, the confirmation link to the file doesn't show at all, it's just blank?

I have tried Netscape which will only work in Internet Explorer mode, Firefox doesn't work at all and neither does Opera.

The below is what I include on the upload page which is followed by the embeded flash: Code:

View Replies !
Code Fails When Viewed In IE 6.0 But Works In Netscape 7.1???
When I view the page (chat.php) in IE 6.0 the following code is utilized:

View Replies !
Problem With Image-verify On Firefox And Netscape
this image-verify code works on ie, but not on firefox or netscape (it just gets a message "The image '...image-verify.php' cannot be displayed, because it contains errors." instead).

View Replies !
Weirdness: Mysql Query Works Fine On Netscape, Access Denied On IE
The error is the common "access denied to user@localhost on database,"
or whatever the exact language is. (I email from Linux so can't copy
the exact wordage right now.) But like I say, it only occurs on IE
running on the woeful Windows ME. I haven't tried it on another flavor
of Windows. Netscape works just fine on whatever both OSes I have.

Here's the code, short and sweet:

// database variables
$userName = GetDBUserName();
$password = GetDBPassword();
$dbName = GetDBName();
$hostName = GetDBHostName();

$db = mysql_pconnect($hostName, $userName, $password);

View Replies !
Using SSI CGI In PHP3
I have my site in .php3 and I am getting some CGI files. They are counters, polls and date information. Also stat information for graphs and such. My problem is that every CGI I get it says to put in the SSI code:

<!--#exec cgi="/cgi-bin/sigfigdate.cgi"-->

Well, it don't work in PHP3. Is there a way to make SSI CGI work in my PHP3 document?

View Replies !
Php3.cgi And Php3.ini
I'm working with a web host that runs PHP3 by php3.cgi and don't have access to php3.ini but I need to modify the setting for upload_max_filesize. The exact version of PHP is 3.0.9.

Is there anyway to override the value for just my program? And can someone explain to me what the difference is between the master and local settings displayed by phpinfo()? Does 'master' refer to compile time settings and 'local' the values set by php3.ini?

View Replies !
Php3 With Php-4.0.5
I have an index.php3 file and when itry and view it i am prompted to download it
4.0.5 is installed?

View Replies !
PHP3 And PHP 4
What is the difference between PHP4 and PHP 3? I tried the codes from a book which is based on PHP 3 on PHP4..but unfortunately it doesn't work? what should i do?

View Replies !
PHP3 And PHP4 Together
I'm a little new to the PHP thing. I want to try to setup my server to handle PHP3 and PHP4 requests easily. e.g. I have some scripts that are PHP3 and want to start learning PHP4. Instead of doing the simple (like anything I do is simple URL ) thing, I am attempting to set up apache to support MySQL, PHP3, PHP4, SSL, ColdFusion, SteelBlue, and maybe even Frontpage.
Tell me I'm insane.
Now I have read the "Soothingly Seamless" setup from the website, and had it mostly working, until some unforseen circumstances caused me to have to start over.
I can set up Apache to use PHP4, MySQL, and SSL, but for those PHP3 scripts, I am a bit lost.
Finally, my question. Is there a simple way (using the Sootingly Seamless page as a reference) to add PHP3 into the mix. Any help on this would be great!

View Replies !
PHP3 Or PHP4
I am starting to write some scripts. Now should I wait until PHP4 documentation and tutorials arise and write in PHP4, or should I just do everything in PHP3? I have a book on PHP3 and I want to know if the language has changed enough to make this book invalid. Thanks. Any clear input is appreciated.

View Replies !
Reauthentication In PHP3
I´m trying to reauthenticate users using PHP3 but variables like PHP_AUTH_USER can´t be unset. The only I have achieved is to obligue the user to change his name or his password using the Hidden element. However, if he doesn´t change anything the dialog box pops up until the Cancel button is pressed.

Is possible to define variables like PHP_AUTH _USER that last until the session is closed? If not, is possible to reauthenticate?

View Replies !
Access And PHP3?
Is it possible to use a MS Access database with php3?
If "yes" any help how to begin?

View Replies !
How To Do Paging In Php3
I want solution for how to implement paging concept in php3.If any one have solution for that please give me the solution for that.

View Replies !
Php3 On Redhat 6.1
I have never tried to get php3 to work on my home Linux PC until now. I am running Redhat Linux 6.1. Apache and PHP3 are both installed, but I don't think that they are configured by default. I haven't been able to find any information on-line specifically for this setup.

View Replies !
Filemaker Pro & Php3
Does anybody have experience with filemaker pro and php. I'm currently running a mysql database with php3 but a client of mine wants to use his filemaker pro database. So what problem may I expect?

View Replies !
Uninstall Php3?
I want to install a php4 rpm, but it says I have php3 installed already and to uninstall it. I did a search and the only thing I found was that I should delete all the php stuff I can find. I *think* it was installed binary style, not with an rpm. If I do it this way, should I edit any conf files also? Please help as I can not find anything on how to remove a binary installation!

View Replies !
Users IP On PHP3?
I have a project and PHP 3.0.12 is installed...rediculous I know, but its
not my fault.

what is the syntax for getting the visiting users IP? Nothing I try seems to
work.

View Replies !

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