За последние 24 часа нас посетили 17548 программистов и 1581 робот. Сейчас ищут 1405 программистов ...

Установка phpmyadmin

Тема в разделе "Установка PHP", создана пользователем skutor, 28 окт 2007.

Статус темы:
Закрыта.
  1. skutor

    skutor Активный пользователь

    С нами с:
    28 окт 2007
    Сообщения:
    11
    Симпатии:
    0
    Я устанавливаю локальный-интернет-магазин он требует mysql и php.

    При вводе имени базы и пароля дял нее он пишет такую ошибку:

    Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'skutor'@'localhost' (using password: YES) in E:\Program Files\Apache Group\Apache2\htdocs\mag\includes\database\mysql.php on line 13

    Warning: mysql_get_server_info(): supplied argument is not a valid MySQL-Link resource in E:\Program Files\Apache Group\Apache2\htdocs\mag\includes\database\mysql.php on line 14

    --------------------------------------------------------------------------------------------------------------------------------------------

    Так вот я думаю нужно создать сначала базу данный с помощью phpmyadmin а потом устанавливать магазин. Правильноя думаю?

    И как установить phpmyadmin че где надо изменить? поподробнее

    Зарание благадарен.
     
  2. Luge

    Luge Старожил

    С нами с:
    2 фев 2007
    Сообщения:
    4.680
    Симпатии:
    1
    Адрес:
    Минск
    у phpMyAdmin довольно подробная инструкция по установке
     
  3. skutor

    skutor Активный пользователь

    С нами с:
    28 окт 2007
    Сообщения:
    11
    Симпатии:
    0
    да но все не по русски и трудно. расскажите как установить плиз
     
  4. Luge

    Luge Старожил

    С нами с:
    2 фев 2007
    Сообщения:
    4.680
    Симпатии:
    1
    Адрес:
    Минск
  5. skutor

    skutor Активный пользователь

    С нами с:
    28 окт 2007
    Сообщения:
    11
    Симпатии:
    0
    nj

    Помгите плиз. У мя при оформлении заказа в магазине при нажатии кнопки после заполнения формы выдается вот такая ошибка :

    Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in E:\Program Files\Apache Group\Apache2\htdocs\mag\includes\order_place.php on line 84

    Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in E:\Program Files\Apache Group\Apache2\htdocs\mag\includes\order_place.php on line 89

    Warning: Cannot modify header information - headers already sent by (output started at E:\Program Files\Apache Group\Apache2\htdocs\mag\includes\order_place.php:84) in E:\Program Files\Apache Group\Apache2\htdocs\mag\includes\order_place.php on line 95

    ------------------------------------------------------------------------------------------------------------------------

    Вот код самой траницы order_place.php --
    Код (Text):
    1.  
    2.  
    3. <?php
    4. /*****************************************************************************
    5.  *                                                                           *
    6.  * Shop-Script FREE                                                          *
    7.  * Copyright (c) 2005 WebAsyst LLC. All rights reserved.                     *
    8.  *                                                                           *
    9.  ****************************************************************************/
    10.  
    11.  
    12.     //place order: save to the database, send notifications, gateway processing
    13.  
    14.     if (isset($_GET["order_placement_result"])) //show 'order successful' page
    15.     {      
    16.         $smarty->assign("order_id", $_SESSION["order_id"]);
    17.         $smarty->assign("order_amount", $_SESSION["order_amount"]);
    18.  
    19.         $smarty->assign("main_content_template", "order_place.tpl.html");
    20.         $smarty->assign("order_is_placed", $_GET["order_placement_result"]);
    21.     }
    22.     else if (isset($_POST["complete_order"])) //place order
    23.     {
    24.  
    25.         //shopping cart items count
    26.         $c = 0;
    27.         if (isset($_SESSION["gids"]))
    28.             for ($j=0; $j<count($_SESSION["gids"]); $j++)
    29.                 if ($_SESSION["gids"][$j]) $c += $_SESSION["counts"][$j];
    30.  
    31.         //not empty?
    32.         if (isset($_SESSION["gids"]) && $c)
    33.         {
    34.             //insert order into database
    35.  
    36.             db_query("insert into ".ORDERS_TABLE." (order_time, cust_firstname, cust_lastname, cust_email, cust_country, cust_zip, cust_state, cust_city, cust_address, cust_phone) values ('".get_current_time()."','".$_POST["first_name"]."','".$_POST["last_name"]."','".$_POST["email"]."','".$_POST["country"]."','".$_POST["zip"]."','".$_POST["state"]."','".$_POST["city"]."','".$_POST["address"]."','".$_POST["phone"]."');") or die (db_error());
    37.             $oid = db_insert_id(); //order ID
    38.  
    39.             //now move shopping cart content to the database
    40.  
    41.             $k = 0; //total cart value
    42.             $products = array();
    43.             $adm = ""; //order notification for administrator
    44.  
    45.             for ($i=0; $i<count($_SESSION["gids"]); $i++)
    46.               if ($_SESSION["gids"][$i])
    47.               {
    48.                 $q = db_query("SELECT name, Price, product_code FROM ".PRODUCTS_TABLE." WHERE productID='".$_SESSION["gids"][$i]."'") or die (db_error());
    49.                 if ($r = db_fetch_row($q))
    50.                 {
    51.                     //product info
    52.                     $tmp = array(
    53.                         $_SESSION["gids"][$i],
    54.                         $r[0],
    55.                         $_SESSION["counts"][$i],
    56.                         ($_SESSION["counts"][$i]*$r[1])." ".$currency_iso_3,
    57.                         $r[2]
    58.                     );
    59.  
    60.                     //store ordered products info into database
    61.                     $articul = trim($tmp[4]) ? "[".$tmp[4]."] " : "";
    62.                     db_query("insert into ".ORDERED_CARTS_TABLE." (orderID, productID, name, Price, Quantity) values ('$oid', '".$tmp[0]."', '".$articul.$tmp[1]."', '".$r[1]."', '".$tmp[2]."');");
    63.  
    64.                     $products[] = $tmp;
    65.  
    66.                     //update order amount
    67.                     $k += $_SESSION["counts"][$i]*$r[1];
    68.  
    69.                     //order notification for administrator - update
    70.                     $adm .= $articul.$tmp[1]." (x".$tmp[2]."): ".$tmp[3]."\n";
    71.  
    72.                 }
    73.               }
    74.  
    75.             //assign order content to smarty
    76.             $smarty_mail->assign("order_content", $products);
    77.             $smarty_mail->assign("order_total", $k." ".$currency_iso_3);
    78.             $smarty_mail->assign("order_id", $oid);
    79.             $smarty_mail->assign("order_custname", $_POST["first_name"]." ".$_POST["last_name"]);
    80.             $smarty_mail->assign("order_shipping_address", $_POST["address"]."\n".$_POST["city"]." ".$_POST["state"]."  ".$_POST["zip"]."\n".$_POST["country"]);
    81.  
    82.             $_SESSION["order_id"] = $oid;
    83.             $_SESSION["order_amount"] = $k;
    84.  
    85.             //send message to customer
    86.             mail($_POST["email"], EMAIL_CUSTOMER_ORDER_NOTIFICATION_SUBJECT, $smarty_mail->fetch("order_notification.tpl.html"), "From: \"".CONF_SHOP_NAME."\"<".CONF_GENERAL_EMAIL.">\n".stripslashes(EMAIL_MESSAGE_PARAMETERS)."\nReturn-path: <".CONF_GENERAL_EMAIL.">");
    87.  
    88.             //notification for administrator
    89.             $od = STRING_ORDER_ID.": $oid\n\n";
    90.             $adm .= "\n".CUSTOMER_FIRST_NAME." ".$_POST["first_name"]."\n".CUSTOMER_LAST_NAME." ".$_POST["last_name"]."\n".CUSTOMER_ADDRESS.": ".$_POST["country"].", ".$_POST["zip"].", ".$_POST["state"].",  ".$_POST["city"].", ".$_POST["address"]."\n".CUSTOMER_PHONE_NUMBER.": ".$_POST["phone"]."\n".CUSTOMER_EMAIL.": ".$_POST["email"];
    91.             mail(CONF_ORDERS_EMAIL, EMAIL_ADMIN_ORDER_NOTIFICATION_SUBJECT, $od.$adm, "From: \"".CONF_SHOP_NAME."\"<".CONF_GENERAL_EMAIL.">\n".stripslashes(EMAIL_MESSAGE_PARAMETERS)."\nReturn-path: <".CONF_GENERAL_EMAIL.">");
    92.  
    93.             unset($_SESSION["gids"]);
    94.             unset($_SESSION["counts"]);
    95.  
    96.             //show order placement result
    97.             header("Location: index.php?order_placement_result=1");
    98.  
    99.         }
    100.         else //empty shopping cart
    101.         {
    102.             header("Location: index.php?shopping_cart=yes");
    103.         }
    104.     }
    105.  
    106. ?>

    Помгите плииззз исправить ото мне срочно нужно. Пожалуйста, я в php не разбераюсь[/code]
     
  6. Hight

    Hight Старожил
    Команда форума Модератор

    С нами с:
    5 мар 2006
    Сообщения:
    7.153
    Симпатии:
    0
    Адрес:
    из злой параллельной вселенной
    skutor
    Это Билу Гейтсу пишите, он знает, а не в форум "Установка PHP" тема "Установка phpmyadmin"...

    Как вообще пришло в голову сюда запостить. Тема закрыта от греха подальше.
     
Статус темы:
Закрыта.