Jump to content

shanewaj

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Everything posted by shanewaj

  1. Or if any one have any idea about what is a non-secure content is.
  2. Hi friends I am new with PHP and having some problem . in my place i have a old php web site and asked to put a https pad lock on it now I fix that problem we have a https now but every time some one goes in to the https part of the web site they get a message "This page contains both secure and nonsecure iteams. Do you want to display the nonsecure iteam" Or in details. "Downloading non-secure content from a secure Web site The Web site you are viewing is a secure site. It uses a security protocol such as SSL (Secure Sockets Layer) or PCT (Private Communications Technology) to secure the information you send and receive. When sites use a security protocol, information that you provide, such as your name or credit-card number, is encrypted so that other people can’t read it. However, this Web page also contains items that do not use this secure protocol. Given what you know about this Web site and your computer, you must decide whether to continue working with this site. If you do not feel confident about working with this site, click No. " now i have a shopping cart. have sessions i have having every thing in the sessions. any idea any one how to get rid of this message ... ?????????????????????? Thanks .. Shanewaj
  3. hi guys we have a web page My site is rather tricky to determine which cacatory it belongs in, it's a moulding and casting website, which mainly sells silicone rubbers, epoxy resins and polyurethanes. The website is for a shop/manufacturing company based in East Bentleigh, Melbourne, Australia. The address is [url=http://www.solidsolutions.com.au]http://www.solidsolutions.com.au [/url] if we search in google our web page use to come at first position but now we are loseing ground do any one know how to regain the positions in search
  4. shanewaj

    SSL

    thanks I asked the company they said they will do it I have to do nothing :> thanks any way take care shanewaj
  5. shanewaj

    SSL

    Hi friends we have a web site hosted some where and our database is also out sorced. now i want to have a ssl security as our web site dont have that security feature and with out that we are not able to have a real web transsactions .. i am very new in this security area of internet need some advice how to have ssl ... ???? any ideas .... shanewaj
  6. I am giving the code where i belive the problem is accouring .... what happend it does not insert in to the data base i have tried all the way to put in to the data base but not working .. the last line of the code echo the hole things if does not able to inset it show the perfect data .... <?php   //when postback   if ($_POST)   {     require_once ('../../mysql_connect.php'); // Connect to the database.     //calculate the next  product ID $query_num = mysql_query('select MAX(product_id) from TestP'); $row = mysql_fetch_row($query_num);     if ($row !== false)   {   $product_id = $row[0] +1;   //fetching data   $product_category = $category;     $product_title = $title;     $product_name = $_POST['product_name'];   $product_code = $_POST['product_code'];   $product_quantity = $_POST['product_quantity'];   $product_weight = (float) $_POST['postage_weight'];   $product_weight = settype($product_weight, float);   $product_price = (float) $_POST['product_price'];   $product_price = settype($product_price, float);     if(isset($_POST['product_dangerous']))   {   $product_dangerous = '1';   }   else   {   $product_dangerous = '0';   }   $product_dangerous = settype($product_dangerous, int);       //query to inset     $query_add_product_range =     "INSERT INTO TestP SET product_id = $product_id, product_category=$product_category, product_title = $product_title, product_name = $product_name, product_code =$product_code,                                                                  product_quantity_description = $product_quantity product_weight=$product_weight, product_price = $product_price, product_dangerous= $product_dangerous "; $result_add_range = mysql_query($query_add_product_range); if($result_add_range) { echo'done'; } else { echo  $product_id,' ---', $product_category,' ---', $product_title,' ---', $product_name,' ---', $product_code,' ---', $product_quantity,' ---' ,$product_weight,       ' ---',$product_dangerous, ' ---'; }   }   } ?> 
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.