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.





Form Dropdown Issue With Firefox


i've been using on a number of my sites works both in IE and firefox but for some reason I moved the code to another site i'm working on and it only works in IE now.......Well I've never actually used it for remote urls just local so this may be my problem. Code:




View Complete Forum Thread with Replies

Related Forum Messages:
Firefox Issue With My Code
The below code is included on and upload page I have, it work perfectly in
IE but for some reason the upload button doesn't show up in Firefox, any
idea?
<form action="upload.php" method="post">

<LEGEND>Select the number of files to upload</LEGEND>
<br><br><select name='num'>
<?php
for($i = 1; $i <= 20; $i++)
{
echo "<option value=".$i.">".$i."</option>";
}
?>&nbsp;
<input type="Submit" value="Upload Files">
</form>

View Replies !
Dynamic Dropdown And Hardcode Dropdown In Select Form
I have plenty of examples of dynamic dropdown choices but none of hardcoded dropdown choices. The ultimate goal is to have a job with various tasks and to track the status of those tasks for a given job. I've used one of the tutorials here to begin the process. Below is the code I have to add work on a given task. Perhaps I actually need to "Update" a job as opposed to "add".

But the problem of the moment is I can't seem to hardcode one set of my options. This is the code I have: PHP Code:

View Replies !
FireFox Vs IE Problem >> Form
which is a simple form and do not enter any information, it returns a basic error message with a back button to fill in the missing information!

It works perfect in Firefox and in IE it throws the check to the bottom of the page and I have gone over and over the page and cannot figure out what is causing it to do this. Code:

View Replies !
Submitting Form Not Working In Firefox
I have put this in Javascript section but there are no users in there so I hope it is ok to put in here too. I have the following code which works with IE but not in Firefox:

<!--
function changestudent(){
 document.getElementById('status').value = 'remove_image';

 add_edit.submit();
}
-->

It is linked to a remove image button which when clicked submits and saves the form and then removes the image. It works in IE but not firefox, anyone know?

View Replies !
Firefox Causing Empty PHP Form Variables??
This is really weird, and I would never believe it possible if it
weren't actually happening to me.

I've a customer database in mySQL, using PHP to create the forms, yadda
yadda.
All of a sudden, every time I edit a customer, when I submit the form
using Firefox 1.0.2 on Linux (Fedora Core 3) it sends empty form fields
to the database.

BUT, if I use Firefox on Windows, or Opera on Fedora Core 3, it works
perfectly fine.

Any ideas what in the world could cause this?
Firefox on Linux worked fine to up until...the last few days I think.
The only think I can think of, is I may have installed a couple of
extensions during that time.

View Replies !
Problem With Displaying A Html Form Embedded In FIREFOX
I'm not sure if this is a php related issue, or if the problem lies with firefox, but i am having trouble making a form embedded in php display correctly in firefox. It displays perfectly fine in IE. Code:

View Replies !
Empty Value In A Form Dropdown
Think that we have one dropdown form where we can choose countries from like this.

<select name="country" id="dropdown">
<option value="Choose country">Choose</option>
<option value="USA">USA</option>
<option value="CANADA">CANADA</option>


IF I have an SELECT I can easily set country = '$country' IF user have choosen some country, but when user not choose any country the selected one is "choose", is it possible do add All countries to $country so the SELECT formula include all countrys and not just get empty? 

View Replies !
MySQL, DropDown, PHP, Form!
Well I have this mysql database with some passwords. Now I have a form where a dropdown list is populated with the name of the users (there are repeated names).

Well what I'm trying to do is after selecting an user in the dropdown list, the post will be directed to a result form where I'll have again the name of the user and now his password (for that exact row). Code:

View Replies !
Dropdown Box Form Validation
I am doing a form validation i php in that one of the fields are dropdown box this is compulsary field by defauly users can see "select from the following optios. i am trying the following code:

if ( $_POST['optio'] == "" || ereg("[^50_late|50_new|50_old|25_best|25_mike]", $_POST['optio']) )

but the above validation will work only text area if that is empty it will give error this error i can print using print but i am not sure how to validate the dropdown box options if the didn't choose any of the fields i will disply error.

View Replies !
Adding A Dropdown To A Form From A Db Table
What i'm trying to accomplish is to have my html form have an element that includes a dropdown menu that's fed from a list of names from an existing mysql db table. Code:

View Replies !
Dynamic Fill Form Fields Depending On Dropdown Box
This question has probably already been asked, but let me ask again

I have a mysql database to which I connect with my php scripts. The
database contains articles. Name, Unit_Price and Reference

Now my client needs to order 5 items, click a button and a table with 5
lines and 3 columns appears (until now easy)

In the first column is a drop down box with a <select > and <options> in
which I store all possible names.

I would like than whenever the client changes one of the boxes (in my
case there are 5) the Unite_Price column and Reference column in the
line he just choose get automatically updated

View Replies !
Data Entry Form With Dynamic Dropdown Boxes
I am working on a Form for user to register & enter their info such as name, email, address, tel etc. and I put in a couple of dropdown boxes namely country and city where user can select. I made them dynamic, i.e. the city dropdown is based on the selected value from country and the data retrieved from MySQL database.

The problem I have is the Javascript script involved a reload of the form and once I select a value from Country, the city dropdown populated with data OK but the data entered beforehand (Name, email, etc.) disappeared.

View Replies !
Php Form Issue?
I have created a very basic php form and when someone enters their
info, they are taken to a confirmation page that displays what they
input and emails a copy to me and enters the information into my
database.

Here's my problem:

A- What do I add to the code in to make it display an alternate
message every 500th time the form is submitted?

B- What do I add to the code so that a email address or person can
only submit it once in a designated time period (24 hours)?

It seems like it wouldn't be complicated, but I'm having a brain
freeze.

View Replies !
Form Issue
When all the required fields of the form are filled out and submitted the user gets an error:

RMA Form Submission Error: Please hit the BACK button on your Web Broswer and resubmit the RMA form. Code:

View Replies !
HTML Form Issue.
I think that this problem might have a simple
solution. I have a html page which has a few text boxes. On the top of
the form I have the following line of code:

<form action="ProcessComplimentaryForm.php" method="POST">

Hence when the user clicks submit, my php script
"ProcessComplimentaryForm.php" should be called. In my script I just
have a simple echo statement which tries to display one of the values
in one of the text boxes.

<?php

echo "First Name :
";
echo $_POST['firstName'];
?>

firstName being the name of one of the text boxes on my html page. When
I click submit on the html page I get the following error message:

-------------------------------------------------------------------------------
Method Not Allowed
The requested method POST is not allowed for the URL
/complimentary.html.
-------------------------------------------------------------------------------

What am I missing here? Is this an issue with the server I am trying to
work on or is it something in the code I have written?

View Replies !
PHP Form Space Issue
I have some code that displays 2 select boxes one on top of the other. I am trying to display them without any space between them. It doesn't seem to be possible. PHP Code:

View Replies !
Form Process Issue
I usally construct forms using include html forms but i want to do a page where the processing and the form appear on the same page. The problem with the script down below is that when it renders in the browser it automatically runs the queries and posts Null values into the database,

it displays the message "Thank you for submitting a link, Check back soon!" on the page every time. This should only appear when the user submits the form. I know i have a problem with the layout but my knowledge of PHP wouldn't be the best to rectify the problem. Code:

View Replies !
Form Display Issue
I have a text box that should repopulate with whatever UName the user entered if the form they submit doesn't validate.

Here is how I repopulate the form after its submitted..
<input type=text name=UName value={$_POST['UName']}>

When the user clicks submit, if the form doesn't validate then the text fields are repopulated with whatever is in the POST array.

However white space is being ignored. If I enter Joe Smith then the text box only gets populated with Joe.

But If I just echo $_POST['Uname']; to the browser then it properly displays Joe Smith.

Is there a way to get the UName to properly display inside the text box when it is repopulated after a form submit?

View Replies !
Form Mail Issue
How can I make it so this connects to the server I want the message to be sent to? The errors are as follows:

Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:SitesSingle25litohinwebrootcontact.php on line 74

Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:SitesSingle25litohinwebrootcontact.php on line 78

For some reason it cannot connect to the mailserver, can someone help me fix this?

View Replies !
Md5 -> Hash Issue, Form
I'm trying to make a form where a surfer can enter a list of words in a text box, then the script spits out the words and their corresponding md5 value in a table. But I end up with it just doing the first letter of the first word they entered. Code:

View Replies !
Issue Insert ' Into Database From Form
I am unable to insert a ' through a form into my data base here where it is messing up i believe: PHP Code:

View Replies !
Hard Form Validation Issue
I have a mail form, where I would like the users to enter a secret code and
check one checkbox before the form are processed and the values can mailed.
Otherwise stop and display an error. But it won't work. What's wrong with my
nice newbie-code? Here it is:

The form:
<div>
<form method="post" action="process.php">
<p>Name:</p>
<input name="name" type="text" />
<p>Email:</p>
<input name="email" type="text" />
<p>Subject:</p>
<input name="subject" type="text" />
<p>Message:</p>
<textarea name="message" rows="6"></textarea>
<p>Enter secret send-code:</p>
<input name="secret_code" type="text" />
<p>Agree to terms?:</p>
Yes <input name="check[]" type="checkbox" value="yes" />
No <input name="check[]" type="checkbox" value="no" />
<br />
<input type="submit" name="submit" value="Send" /><input type="hidden"
name="do" value="send" /><input type="reset" name="reset" value="Reset" />
</form>
</div>

Here is process.php:

<?php

//validating input fields and checkbox, secret code is SECRET and required
checkbox value has to be "yes"

if (empty($_POST['secret_code']))
{
exit();
}
if (strcmp($_POST['secret_code'],"SECRET"))

if(strcmp($_POST['check'],"") !="yes"))
{
exit();
}
if(strcmp($_POST['check'],"yes"))
{

$do = ($_POST['do']);

if($do == "send")
{
$recipient = "secret_mail@somedomain.com";
$subject = ($_POST['subject']);
$name = ($_POST['name']);
$email = ($_POST['email']);
$message = ($_POST['message']);
$formsend = mail("$recipient", "$subject", "$message", "From: $email
($name)
Reply-to:$email");

echo ("<p>Thanks, success!</p>");
}

}
else
{
echo "You failed to enter secret code, or you didn't agree to the terms,
submit cancelled...";
}
}

?>

View Replies !
Update Form, Security Issue
I have to write secure update record php script, here are the complete
details of the website,

the website has a login system that authenticates the user, writes the
session ID for username and goes

on.

The user can post, read msg he can also update the msgs that he had
posted in the past once he is

loged in.

when user tries to update the msg, the script check MySql DB with

select * from Msg where username = session ID

suppose recorset returns msg number 1,3,5,7,9 with that perticular
username.
I pass the user to a page ...update.php?msg_id=1 and the user can
update the stuff.

Everything is working fine,

Problem

what if the user changes the url to ...update.php?msg_id=2

he can still update the record, what to do he has not posted msg id 2.
what sort of method or code

should i use to restrict him to the msg that he posted

If you feel that i am using a bad method or my database structure
should have a new field please let me

know coz I can still make changes in DB structure as well as my
scripts we are in the somewhat initial

stage of the development of the product.

View Replies !
Syntax Issue With Form And Conditional Statement
Is it possible for a <form ... action="program.php"> to contain a conditional statement for the action? For example, I want to call one PHP program if variable $a="screen" and another program if variable $a="download". I have been struggling with this for some time and cannot seem to get it to work.

View Replies !
Basic Menu Form And Submit Issue
My issue, I have constructed a drop down menu, but when I hit submit, it reloads the HTML page and doesn't go to the php page with the switch statement.
Can someone assist? Code:

View Replies !
PHP Form Issue - Refresh & Multiple Entry
I am muddling my way through a PHP book in an attempt at getting my site more dynamic. The code below represents a mysql query which displays the data to the screen.

That seems to work fine. Then I have tried to get a form with a submit button so data can be entered into the field i.e comments etc. I am having a few problems with the code and any help is always welcome. Code:

View Replies !
SESSION ISSUE - Pass A Value From An Html Form To A Php Page
whenever I pass a value from an html form to a php page the POSTed data shows, but If I refresh the php page the data is lost. How would I fix this?

my code that accepts the POST:
$_SESSION['Username'] = $_POST['Username'];
echo $_SESSION['Username'];

View Replies !
Query Issue - Item Grouping Issue
I have a number of items in a database and I group them together by each's series number (ranges from 1-20). The query then sorts them by series ascending from 1-20, but does so by sorting all the ones that begin with 1, then 2, etc where the 10-19 series show up before 2-9. I know why it's happening but is there a way around it?

View Replies !
FireFox OK IE Not?
FireFox works fine, Internet explorer does not return any of the (isset($_POST['logout'])) (isset($_POST['login'])) it just pops up a new window:

<?php
if (isset($_POST['logout'])) {
session_unregister("uid");
session_unregister("usr");
session_destroy();
$sessionPath = session_get_cookie_params();
setcookie(session_name(), "", 0, $sessionPath["path"], $sessionPath["domain"]);
} elseif (isset($_SESSION['uid']) && isset($_SESSION['usr'])) {
?>

<div ALIGN="CENTER">

..........

View Replies !
Firefox
anyone know why the page dont change when using onchange in firefox but works perfect in ie.

<select id = "program" onChange = "ChangeProgram(this.options(this.selectedIndex).value)">

View Replies !
Firefox / IE
the following script works perfectly in firefox, but not in IE, any ideas as im baffled? Code:

View Replies !
IE6 V Firefox
I have a form that that registerers details to a mysql database. My problem is when a field has been duplicated I am showing an error page that displays eg username already exists.

Now in firefox I can go back and the form is still intact I just change the duplicate username and carry on. But in IE6 it will not go back or if it does a message displays information already submitted.

View Replies !
Firefox Vs. IE Help
My site looks great in Firefox, but looks horrid in IE. I was wondering if I gave you the site address if you could go there in both browsers and help me with my problem.

The problem in IE comes after you click on a link. which are invisible in the site navi on IE.

View Replies !
Firefox Vs IE
i got a problem with my browser when i try to login to my website. i use javascript to link the login page to the next page using the codes below: HTML Code:

<script type="text/javascript">location.href="login/welcome.php"</script>

when i used this code at firefox browser it works well, however when using IE it doesn't works. the address bar will shows something like . Quote:

http://localhost/mcmc/login/login/welcome.php

when i just put HTML Code:

<script type="text/javascript">location.href="welcome.php"</script>

it works on IE but not in firefox.. what's wrong with the path? can anyone help me what should i do to make sure both browser can give the same result?

View Replies !
IE Vs. FireFox
How I hate IE. With FireFox your page will look better and be more simpler to code. For example i use a for loop to display all the picture's(thumbnails) in a folder.

With Firefox it display's like 5 thumbnails per row and then goes to the next row automaticly so everything is fit to screen. WIth IE it displays all thumbnails on one row and you have to scroll horizontally to view them. Any ways around stuff like this with IE?


P.S. I fixed this paticular situation with an if statement but in future cases is there a way to make firefox and IE both compatible so they have the same output?

View Replies !
Display XML In Firefox
I admit, but I can no longer see XML displayed "correctly" in
Firefox - it currently appears as a long line of text.

The feature to see XML displayed, indented, etc., is really useful when
testing, especially as I am doing a lot of Ajax at the moment.

Please can anyone suggest what settings I might have changed?
Otherwise, I am going to have to use IE!!! Help!

View Replies !
Mail() IE Vs Firefox
I'm trying to make a form work, which it does from Firefox (and
Netscape) but not from Internet Explorer.

The form is simple:
<form action="register.php" method="post"><p>'

print '
<p class="txtni">All Fields below are required:</p>
<span class="txtni">First Name:</span> <input type="text"
name="first_name" size="20" value="' . $_POST['first_name'] . '" /> <br />
<span class="txtni">Last Name:</span> <input type="text"
name="last_name" size="20" value="' . $_POST['last_name'] . '" /><br />
<span class="txtni">Email Address:</span> <input type="text"
name="email" size="40" value="' . $_POST['email'] . '" /><br /><br />
<span class="txtni">Phone Number:</span> <input type="text" name="phone"
size="20" value="' . $_POST['phone'] . '" /></p>
....
some instructions...

<p><span class="txt">Your Message:</span> <textarea "name="message"
cols="80" rows="5" value="' . $_POST['message'] . '"
/></textarea></span></p>
<p align="center"><input type="submit" name="submit" value="Send email
to Volunteer Coordinators!" /></p>
</form>'

I'm using the following to send the form results:

$body="Another Happy Volunteer has signed up,
Name: {$_POST['first_name']} {$_POST['last_name']}

Phone Number: {$_POST['phone']}

Email Address: {$_POST['email']}

Message: {$_POST['message']}";

mail("mail@address.com", 'Another Happy Volunteer Had Signed Up',$body,
"From: mail@addreess.com
"."Reply-To: {$_POST['EMAIL']}");

View Replies !
PHP And Firefox Problem
I had no joy with this in alt.comp.lang.php so thought I would try here
instead.

Hopefully someone will make sense of this for me.

Using:
PHP 4.3.10 (cgi) (built: Dec 21 2004 09:18:25)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies

Server version: Apache/2.0.52
Server built: May 9 2005 18:13:36

Linux 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686 i686 i386
GNU/Linux
--------------------------------------------------------------------------

I have a few php scripts running, on login, the session is written correctly
ie:
--------------------------------------------------------
VCID|s:3:"s34";firstname|s:3:"Ken";lastname|s:6:"Steven";
--------------------------------------------------------

going from page to page it is still fine. Using IE when I transfer to my
HTTPS scripts, the session data is written fine ie:

----------------------------------------------------------------------------
VCID|s:3:"s34";firstname|s:3:"Ken";lastname|s:6:"Steven";WC_CompPrize|s:5:"3
:::4";WC_UserID|s:3:"s34";
WC_CompID|s:4:"SS01";WC_Answer|s:2:"a2";WC_HowManyTickets|s:2:"20";WC_Freebi
es|d:10;
WC_TotalTickets|d:30;WC_TotalCost|i:60;
----------------------------------------------------------------------------

BUT, following the exact same route through the site, if I am using FIREFOX
this is what I get:

----------------------------------------------------------------------------
VCID|s:3:"s34";firstname|s:3:"Ken";lastname|s:6:"Steven";3:::4|N;s34|N;SS01|
N;a1|N;|N;WC_CompPrize|N
----------------------------------------------------------------------------

Note that all of the WC_nnnnnnn prefixes are ommited. No matter what I do I
just cannot get the correct session data written to the session file but
ONLY if I use
FireFox. Why the hell should that be???

$_SESSION['WC_CompPrize'] = $compPrize;
$_SESSION['WC_UserID'] = $VCID;
$_SESSION['WC_CompID'] = $compID;
$_SESSION['WC_Answer'] = $q_answer;
$_SESSION['WC_HowManyTickets'] = $howmany;
$_SESSION['WC_Freebies'] = $half;
$_SESSION['WC_TotalTickets'] = $TotalTickets;
$_SESSION['WC_TotalCost'] = $total;

Works for every other browser, in desperation I even tried:

session_register($WC_compPrize);
session_register($VCID);
session_register($compID);
session_register($q_answer);
session_register($howmany);
session_register($half);
session_register($TotalTickets);
session_register($total);

View Replies !
Mozilla Firefox And PHP
I have some PHP that works fine on my Dell Win2K XP when I use "php.exe"
and "php-cgi.exe"; not sure how these executeables got there but
someone must have installed them. But what I need to do is have PHP
scripts run in my Mozilla Firefox 1.5.0.4 browser. Currently they don't.

Do I need to install some plugin for my browser? If so can someone
provide a URL? Or if not maybe you could advise me on what needs to be done.

View Replies !
PHP Pgae In Firefox
This is a weird problem i have just noticed but in internet explorer my pages work fine everything looks good but in firefox one of the pages is showing an extra slash.

should show:

http://www.site.com/details.php?id=1685
but shows:

http://www.site.com/details.php?id=1685
you see the extra slash after the trailing slash, i'm not sure if its something i should do in php or what

googling the error i came up with this:

http://gallery.menalto.com/node/29368
has anyone else came across this at all?

View Replies !
PHP Session And Firefox
I am redeveloping my personal website into a complete php website, using sessions.  The session have always worked in the passed but it doesn't seem to keep the session data between different pages.  This is only when using Firefox.. Seems fine with internet explorer. Code:

View Replies !
Gzip And Firefox
I have enabled gzip for my site by using

<?php
ob_start("ob_gzhandler");
{my page Code}
ob_flush();
?>

I works perfectly with internet explorer but when I open my site with firefox it shows a blank page. Is there any method to enable gzip for fire fox ? And Could I use gzip with internet explorer only by detecting the user agent while showing firefox users non-gzip page?

View Replies !
Not Working In Firefox
Works fine in IE but not FF. However,taking away the use of php and using the same html and css the header loads fine in FF . I have also tested the header by itself in ff and is fine. I don't know if the problem is the css or php but as it works fine using css and html without php I am assuming I've done soemthign wrong with the php but what?

View Replies !
Layout On Firefox
My code works great on IE. However there's a problem with firefox, as my images cannot be found, and after i had a look at the source code i noticed that the path is wrong. The path to my image files is 'images/file.jpg' but firefox shows the path as 'images%5Cfile.jpg'. Anybody knows why? Do i have to add anything in my script that will prevent this?

View Replies !
IE And Firefox Differences
I have written a php script (with the help of some code from here :D) to extract data from a database, put the results into an array, and then do some work on the array to get the number of words that appear more than once in the array. The data is then put into a table and displayed on the screen. Code:

View Replies !
Firefox Asking To Save Php Doc?
I have an RSS feed being dynamically rendered using PHP and MySQL. In firefox, clicking the link causes a prompt window to come up asking if i want to open or save the php file as opposed to just following the link.

Why does this happen and how can I prevent it?

I'm setting the Content type to application/rss+xml


View Replies !
Mozilla Firefox
following code works perfectly on IE but it does not works with Mozilla Firefox. What is the problem?

<?php
$lang=$_GET['lang'];
if ($lang=="fr") {
$location="http://66.249.91.104/translate_c?hl=EN&ie=UTF-8&oe=UTF-8&langpair=en%7Cfr&u=http://www.somedomain.com/&prev=/language_tools";
} elseif ($lang=="de") {
$location="http://66.249.91.104/translate_c?hl=EN&ie=UTF-8&oe=UTF-8&langpair=en%7Cde&u=http://www.somedomain.com/&prev=/language_tools";
} elseif ($lang=="it") {
$location="http://66.249.91.104/translate_c?hl=EN&ie=UTF-8&oe=UTF-8&langpair=en%7Cit&u=http://www.somedomain.com/&prev=/language_tools";
} else {
$location="http://www.somedomain.com";
}

print"<script type="text/javascript" language="JavaScript">
window.location="$location";
</script>";
?>

View Replies !
Php5 + Firefox
First let me say thanks for the brilliant site, I could not have installed apache/mysql/admin/php without it. When i use internet explorer i can access my phpadmin via localhost Yet when I use firefox the download manager asks which program i wish to use to open the php file. any clues?

View Replies !
Firefox Problems
IE does not show this line from my code: "freeing resultout of fixit" But Firefox does and it causes problems with headers for a redirection. I am calling this twice in a function named fixit: mysql_free_result($records); Why is that line being sent and how do I stop it? mysql.trace_mode = Off.

View Replies !
Include & FireFox
I used PHP Include method for showing some external files on my site, But when I browse my site through FireFox, it dont show Include files. Is there any special code for showing Include files in FireFox? I used <?php include("include.php"); ?>

View Replies !
IFrames In FireFox
Im trying to use an i-frame to display site news (not allowed to directly connect to the database, so an i-frame to a page on the other server is the only way). It displays fine in IE, but in FireFox it only displays at about 1/3 the height it should. Code:

View Replies !
Problem With Firefox
I am facing a problem with firefox. When trying to load a webpage, it is asking me to use IE7.0 or Netscape.

I learnt that, I can use IE-Tab plugin on firefox to overcome this problem and installed the same.

Still, I am not able to get the page loaded!
Now, It is giving the error that "Missing plugins".

Any idea on how to get this corrected?

View Replies !

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