├── .htaccess ├── 404.php ├── README.md ├── SQL └── eticaret1(1).sql ├── about.php ├── activation.php ├── admin ├── categories.php ├── categoriesStore.php ├── categoriesUpdate.php ├── contracts.php ├── dist │ ├── 401.html │ ├── 404.html │ ├── 500.html │ ├── assets │ │ ├── demo │ │ │ ├── chart-area-demo.js │ │ │ ├── chart-bar-demo.js │ │ │ ├── chart-pie-demo.js │ │ │ └── datatables-demo.js │ │ └── img │ │ │ └── error-404-monochrome.svg │ ├── css │ │ └── styles.css │ └── js │ │ └── scripts.js ├── finishedOrders.php ├── finishedOrdersDetail.php ├── homepage.php ├── index.php ├── intro.php ├── introStore.php ├── introUpdate.php ├── orders.php ├── ordersDetails.php ├── ordersUpdate.php ├── products.php ├── productsStore.php ├── productsUpdate.php └── settings.php ├── assets ├── PHPMailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── css │ ├── all.css │ ├── baguetteBox.min.css │ ├── bootsnav.css │ ├── bootstrap-select.css │ ├── bootstrap.min.css │ ├── carousel-ticker.css │ ├── code_animate.css │ ├── custom.css │ ├── jquery-ui.css │ ├── owl.carousel.min.css │ ├── responsive.css │ ├── style.css │ └── superslides.css ├── images │ ├── 2270941922women-shoes-img.jpg │ ├── 2599549121img-pro-02.jpg │ ├── 3401730260instagram-img-01.jpg │ ├── 3860634376smp-img-02.jpg │ ├── 5055445047instagram-img-08.jpg │ ├── 5223631355about-img.jpg │ ├── 5474445890instagram-img-03.jpg │ ├── about-img.jpg │ ├── all-bg-title.jpg │ ├── apple-touch-icon.png │ ├── big-img-01.jpg │ ├── big-img-02.jpg │ ├── big-img-03.jpg │ ├── blog-img-01.jpg │ ├── blog-img-02.jpg │ ├── blog-img.jpg │ ├── favicon.ico │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-pro-01.jpg │ ├── img-pro-02.jpg │ ├── img-pro-03.jpg │ ├── img-pro-04.jpg │ ├── ins-bg.jpg │ ├── instagram-img-01.jpg │ ├── instagram-img-02.jpg │ ├── instagram-img-03.jpg │ ├── instagram-img-04.jpg │ ├── instagram-img-06.jpg │ ├── instagram-img-07.jpg │ ├── instagram-img-08.jpg │ ├── instagram-img-09.jpg │ ├── logo.png │ ├── payment-icon │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 5.png │ │ └── 7.png │ ├── shirt-img.jpg │ ├── shoes-img.jpg │ ├── smp-img-01.jpg │ ├── smp-img-02.jpg │ ├── smp-img-03.jpg │ ├── t-shirts-img.jpg │ ├── wallet-img.jpg │ ├── women-bag-img.jpg │ └── women-shoes-img.jpg ├── js │ ├── baguetteBox.min.js │ ├── bootsnav.js │ ├── bootstrap-select.js │ ├── bootstrap.min.js │ ├── contact-form-script.js │ ├── custom.js │ ├── form-validator.min.js │ ├── images-loded.min.js │ ├── inewsticker.js │ ├── isotope.min.js │ ├── jquery-3.2.1.min.js │ ├── jquery-ui.js │ ├── jquery.nicescroll.min.js │ ├── jquery.superslides.min.js │ ├── owl.carousel.min.js │ └── popper.min.js ├── php │ └── form-process.php └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── checkout.php ├── configs ├── backForms.php ├── backPages.php ├── cart.php ├── config.php ├── contactUs.php ├── forms.php ├── pages.php └── queries.php ├── contact.php ├── customerservices.php ├── editprofile.php ├── homepage.php ├── index.php ├── login.php ├── managerLogin.php ├── myfavourites.php ├── myorders.php ├── myprofile.php ├── placeorder.php ├── privacypolicy.php ├── products.php ├── register.php ├── search.php ├── shippingmethods.php ├── shoppingcart.php ├── showproduct.php ├── sitemap.php ├── termsofuse.php └── userAggrement.php /.htaccess: -------------------------------------------------------------------------------- 1 | Options -indexes 2 | RewriteEngine On 3 | ErrorDocument 404 http://localhost/php/eticaret1/404.php 4 | 5 | RewriteRule ^$ index.php?P=0 [NC,L] 6 | RewriteRule ^login$ index.php?P=3 [NC,L] 7 | RewriteRule ^logout$ configs/forms.php?userlogout=ok [NC,L] 8 | RewriteRule ^register$ index.php?P=4 [NC,L] 9 | RewriteRule ^manager-login$ index.php?P=21 [NC,L] 10 | RewriteRule ^about-us$ index.php?P=1 [NC,L] 11 | RewriteRule ^contact-us$ index.php?P=2 [NC,L] 12 | RewriteRule ^customer-services$ index.php?P=14 [NC,L] 13 | RewriteRule ^site-map$ index.php?P=15 [NC,L] 14 | RewriteRule ^terms-of-use$ index.php?P=16 [NC,L] 15 | RewriteRule ^privacy-policy$ index.php?P=17 [NC,L] 16 | RewriteRule ^shipping-methods$ index.php?P=18 [NC,L] 17 | RewriteRule ^user-aggrement$ index.php?P=20 [NC,L] 18 | RewriteRule ^shopping-cart$ index.php?P=7 [NC,L] 19 | RewriteRule ^my-profile$ index.php?P=9 [NC,L] 20 | RewriteRule ^my-favourites$ index.php?P=10 [NC,L] 21 | RewriteRule ^place-order$ index.php?P=11 [NC,L] 22 | RewriteRule ^edit-profile$ index.php?P=12 [NC,L] 23 | RewriteRule ^my-orders$ index.php?P=13 [NC,L] 24 | RewriteRule ^checkout$ index.php?P=19 [NC,L] 25 | 26 | 27 | RewriteRule ^categories/(.*)/(.*)$ index.php?P=5&categoriesid=$2 [NC,L] 28 | RewriteRule ^urun-detay/(.*)/(.*)$ index.php?P=6&id=$2 [NC,L] 29 | RewriteRule ^search$ index.php?P=8 [NC,L] 30 | 31 | 32 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | hata 404 7 | 8 | 9 |

hata 404

10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # php-pdo-ecommerce-website 2 | Php Pdo Ecommerce website with admin panel and a lot of options 3 | 4 | 5 | * you can look SQL folder and look 'users' table or 'manager' table to log in the admin panel or user account (all passwords are '10203040') 6 | * you need to make db configuration in configs/config.php 7 | * you can make mail configuration in configs/contactUs.php and 'settings' table then change mail adresses&mail passwords 8 | * make sure your mail provider give access to third party etc. otherwise you cant take or send mail 9 | * enjoy it! 10 | 11 | * **Note:** Make sure your base name (index.php(head section)) is correct. 12 | -------------------------------------------------------------------------------- /activation.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM users WHERE mail = ? AND activationCode = ? AND status = ?"); 17 | $controlQuery->execute([$mail, $activationCode, 0]); 18 | $userCount = $controlQuery->rowCount(); 19 | 20 | if($userCount>0){ 21 | $userUpdateQuery = $db->prepare("UPDATE users SET status = 1 WHERE mail = ? "); 22 | $userUpdateQuery->execute([$mail]); 23 | $control = $userUpdateQuery->rowCount(); 24 | 25 | if($control>0){ 26 | header("Location:./"); 27 | exit(); 28 | }else{ 29 | header("Location:" . $SiteLink); 30 | exit(); 31 | } 32 | }else{ 33 | header("Location:" . $SiteLink); 34 | exit(); 35 | } 36 | }else{ 37 | header("Location:" . $SiteLink); 38 | exit(); 39 | } 40 | 41 | $db = null; 42 | -------------------------------------------------------------------------------- /admin/categories.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 11 | 12 | 21 | 22 | 23 | 24 | 33 | 35 |

Kategorileri Düzenle

36 | 37 | 38 | 39 |
40 | 41 | 42 | 43 | 44 | 45 | 46 | 49 | 52 | 55 | 56 | 59 | 60 | 61 | 62 | prepare("SELECT * FROM categories ORDER BY productType ASC"); 64 | $categoriesQuery->execute(); 65 | $categoriesCount = $categoriesQuery->rowCount(); 66 | $categoriesRecords = $categoriesQuery->fetchAll(PDO::FETCH_ASSOC); 67 | 68 | if ($categoriesCount > 0) { 69 | foreach ($categoriesRecords as $row) { 70 | ?> 71 | 72 | 73 | 74 | 75 | 79 | 80 | 85 | 86 | 87 |
47 |

id

48 |
50 |

Ürün Türü

51 |
53 |

Kategori Adı

54 |
57 |

   İşlem Yap

58 |
76 | Düzenle 77 | Sil 78 |
88 | 89 | 90 | -------------------------------------------------------------------------------- /admin/categoriesStore.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |
10 |

Yeni Kategori Ekleme Bölümü

11 | 12 |
13 | 14 | 15 |
16 | 17 |
18 | 19 | 25 |
26 | 27 |
28 | 29 | 30 |
31 | 32 | 33 |
34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /admin/categoriesUpdate.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM categories WHERE id=? "); 7 | $query->execute([$id]); 8 | $count = $query->rowCount(); 9 | $row = $query->fetch(PDO::FETCH_ASSOC); 10 | 11 | if ($count > 0) { 12 | ?> 13 | 14 | 15 | 16 | 17 | 18 |
19 |

Kategoriyi Düzenle

20 | 21 |
22 |
23 | 24 | 25 |
26 | 27 | 28 |
29 | 30 | 31 |
32 | 33 | -------------------------------------------------------------------------------- /admin/contracts.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 10 | 11 | 20 | 21 | 22 | 23 | 32 | 34 |

Metinler ve Sözleşmeler Bölümünü Düzenle

35 |
36 | 37 |
38 | 39 | 40 |
41 | 42 |
43 | 44 | 45 |
46 | 47 |
48 | 49 | 50 |
51 | 52 |
53 | 54 | 55 |
56 | 57 |
58 | 59 | 60 |
61 | 62 |
63 | 64 | 65 |
66 | 67 | 68 |
69 | -------------------------------------------------------------------------------- /admin/dist/401.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 404 Error - SB Admin 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |

401

22 |

Unauthorized

23 |

Access to this resource is denied.

24 | 25 | 26 | Return to Dashboard 27 | 28 |
29 |
30 |
31 |
32 |
33 |
34 | 48 |
49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /admin/dist/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 404 Error - SB Admin 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | 22 |

This requested URL was not found on this server.

23 | 24 | 25 | Return to Dashboard 26 | 27 |
28 |
29 |
30 |
31 |
32 |
33 | 47 |
48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /admin/dist/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 404 Error - SB Admin 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |

500

22 |

Internal Server Error

23 | 24 | 25 | Return to Dashboard 26 | 27 |
28 |
29 |
30 |
31 |
32 |
33 | 47 |
48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /admin/dist/assets/demo/chart-area-demo.js: -------------------------------------------------------------------------------- 1 | // Set new default font family and font color to mimic Bootstrap's default styling 2 | Chart.defaults.global.defaultFontFamily = '-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif'; 3 | Chart.defaults.global.defaultFontColor = '#292b2c'; 4 | 5 | // Area Chart Example 6 | var ctx = document.getElementById("myAreaChart"); 7 | var myLineChart = new Chart(ctx, { 8 | type: 'line', 9 | data: { 10 | labels: ["Mar 1", "Mar 2", "Mar 3", "Mar 4", "Mar 5", "Mar 6", "Mar 7", "Mar 8", "Mar 9", "Mar 10", "Mar 11", "Mar 12", "Mar 13"], 11 | datasets: [{ 12 | label: "Sessions", 13 | lineTension: 0.3, 14 | backgroundColor: "rgba(2,117,216,0.2)", 15 | borderColor: "rgba(2,117,216,1)", 16 | pointRadius: 5, 17 | pointBackgroundColor: "rgba(2,117,216,1)", 18 | pointBorderColor: "rgba(255,255,255,0.8)", 19 | pointHoverRadius: 5, 20 | pointHoverBackgroundColor: "rgba(2,117,216,1)", 21 | pointHitRadius: 50, 22 | pointBorderWidth: 2, 23 | data: [10000, 30162, 26263, 18394, 18287, 28682, 31274, 33259, 25849, 24159, 32651, 31984, 38451], 24 | }], 25 | }, 26 | options: { 27 | scales: { 28 | xAxes: [{ 29 | time: { 30 | unit: 'date' 31 | }, 32 | gridLines: { 33 | display: false 34 | }, 35 | ticks: { 36 | maxTicksLimit: 7 37 | } 38 | }], 39 | yAxes: [{ 40 | ticks: { 41 | min: 0, 42 | max: 40000, 43 | maxTicksLimit: 5 44 | }, 45 | gridLines: { 46 | color: "rgba(0, 0, 0, .125)", 47 | } 48 | }], 49 | }, 50 | legend: { 51 | display: false 52 | } 53 | } 54 | }); 55 | -------------------------------------------------------------------------------- /admin/dist/assets/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- 1 | // Set new default font family and font color to mimic Bootstrap's default styling 2 | Chart.defaults.global.defaultFontFamily = '-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif'; 3 | Chart.defaults.global.defaultFontColor = '#292b2c'; 4 | 5 | // Bar Chart Example 6 | var ctx = document.getElementById("myBarChart"); 7 | var myLineChart = new Chart(ctx, { 8 | type: 'bar', 9 | data: { 10 | labels: ["January", "February", "March", "April", "May", "June"], 11 | datasets: [{ 12 | label: "Revenue", 13 | backgroundColor: "rgba(2,117,216,1)", 14 | borderColor: "rgba(2,117,216,1)", 15 | data: [4215, 5312, 6251, 7841, 9821, 14984], 16 | }], 17 | }, 18 | options: { 19 | scales: { 20 | xAxes: [{ 21 | time: { 22 | unit: 'month' 23 | }, 24 | gridLines: { 25 | display: false 26 | }, 27 | ticks: { 28 | maxTicksLimit: 6 29 | } 30 | }], 31 | yAxes: [{ 32 | ticks: { 33 | min: 0, 34 | max: 15000, 35 | maxTicksLimit: 5 36 | }, 37 | gridLines: { 38 | display: true 39 | } 40 | }], 41 | }, 42 | legend: { 43 | display: false 44 | } 45 | } 46 | }); 47 | -------------------------------------------------------------------------------- /admin/dist/assets/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- 1 | // Set new default font family and font color to mimic Bootstrap's default styling 2 | Chart.defaults.global.defaultFontFamily = '-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif'; 3 | Chart.defaults.global.defaultFontColor = '#292b2c'; 4 | 5 | // Pie Chart Example 6 | var ctx = document.getElementById("myPieChart"); 7 | var myPieChart = new Chart(ctx, { 8 | type: 'pie', 9 | data: { 10 | labels: ["Blue", "Red", "Yellow", "Green"], 11 | datasets: [{ 12 | data: [12.21, 15.58, 11.25, 8.32], 13 | backgroundColor: ['#007bff', '#dc3545', '#ffc107', '#28a745'], 14 | }], 15 | }, 16 | }); 17 | -------------------------------------------------------------------------------- /admin/dist/assets/demo/datatables-demo.js: -------------------------------------------------------------------------------- 1 | // Call the dataTables jQuery plugin 2 | $(document).ready(function() { 3 | $('#dataTable').DataTable(); 4 | }); 5 | -------------------------------------------------------------------------------- /admin/dist/js/scripts.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - SB Admin v6.0.1 (https://startbootstrap.com/templates/sb-admin) 3 | * Copyright 2013-2020 Start Bootstrap 4 | * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin/blob/master/LICENSE) 5 | */ 6 | (function($) { 7 | "use strict"; 8 | 9 | // Add active state to sidbar nav links 10 | var path = window.location.href; // because the 'href' property of the DOM element is the absolute path 11 | $("#layoutSidenav_nav .sb-sidenav a.nav-link").each(function() { 12 | if (this.href === path) { 13 | $(this).addClass("active"); 14 | } 15 | }); 16 | 17 | // Toggle the side navigation 18 | $("#sidebarToggle").on("click", function(e) { 19 | e.preventDefault(); 20 | $("body").toggleClass("sb-sidenav-toggled"); 21 | }); 22 | })(jQuery); 23 | -------------------------------------------------------------------------------- /admin/homepage.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 |

Yönetim Paneli

9 | 12 | 13 | -------------------------------------------------------------------------------- /admin/intro.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 11 | 12 | 21 | 22 | 23 | 24 | 33 | 35 |

İntro (Giriş Slaytları) Bölümünü Düzenle

36 | 37 |
38 | 39 |
40 | 41 | 42 | 43 | 44 | 45 | 46 | 49 | 52 | 55 | 58 | 61 | 64 | 67 | 68 | 69 | 72 | 73 | 74 | 75 | 80 | 81 | 82 | 83 | 84 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 100 | 103 | 104 | 105 |
47 |

id

48 |
50 |

Başlık

51 |
53 |

Açıklama

54 |
56 |

Resim

57 |
59 |

Link Yazısı

60 |
62 |

Link

63 |
65 |

Tarih

66 |
70 |

   İşlem Yap

71 |
85 | Responsive image
86 | 87 |
94 | Düzenle 95 | Sil 96 | 97 | 98 |
106 | 107 | -------------------------------------------------------------------------------- /admin/introStore.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |
10 |

Yeni Slayt Ekleme Bölümü

11 | 12 |
13 | 14 | 15 |
16 |
17 |
18 | Responsive image
19 | 20 | 21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 | 36 | 37 |
38 | 39 | 40 | 41 | 42 |
43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /admin/introUpdate.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM intro WHERE id=? "); 7 | $query->execute([$id]); 8 | $intro = $query->fetch(PDO::FETCH_ASSOC); 9 | ?> 10 | 11 | 12 | 13 | 14 | 15 |
16 |

Slaydı Düzenle

17 | 18 |
19 |
20 |
21 |
22 | Responsive image
23 | 24 |
25 | 26 |
27 | 28 | 29 |
30 | 31 |
32 | 33 | 34 |
35 | 36 |
37 | 38 | 39 |
40 | 41 | 42 | 43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /admin/ordersUpdate.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM orders WHERE orderid=? "); 7 | $query->execute([$id]); 8 | $count = $query->rowCount(); 9 | $row = $query->fetch(PDO::FETCH_ASSOC); 10 | 11 | if ($count > 0) { 12 | 13 | // foreach ($rows as $row) { 14 | 15 | // $cargoStatus = $row['cargoStatus']; 16 | // $status = $row['status']; 17 | 18 | ?> 19 | 20 | 21 | 22 | 23 | 24 |
25 |

Siparişi Düzenle

26 | 27 |
28 |
29 | 30 | 31 |
32 | 33 | 38 |
39 | 40 |
41 | 42 | 47 |
48 | 49 | 50 | 51 | 52 |
53 | 54 | -------------------------------------------------------------------------------- /assets/PHPMailer/COMMITMENT: -------------------------------------------------------------------------------- 1 | GPL Cooperation Commitment 2 | Version 1.0 3 | 4 | Before filing or continuing to prosecute any legal proceeding or claim 5 | (other than a Defensive Action) arising from termination of a Covered 6 | License, we commit to extend to the person or entity ('you') accused 7 | of violating the Covered License the following provisions regarding 8 | cure and reinstatement, taken from GPL version 3. As used here, the 9 | term 'this License' refers to the specific Covered License being 10 | enforced. 11 | 12 | However, if you cease all violation of this License, then your 13 | license from a particular copyright holder is reinstated (a) 14 | provisionally, unless and until the copyright holder explicitly 15 | and finally terminates your license, and (b) permanently, if the 16 | copyright holder fails to notify you of the violation by some 17 | reasonable means prior to 60 days after the cessation. 18 | 19 | Moreover, your license from a particular copyright holder is 20 | reinstated permanently if the copyright holder notifies you of the 21 | violation by some reasonable means, this is the first time you 22 | have received notice of violation of this License (for any work) 23 | from that copyright holder, and you cure the violation prior to 30 24 | days after your receipt of the notice. 25 | 26 | We intend this Commitment to be irrevocable, and binding and 27 | enforceable against us and assignees of or successors to our 28 | copyrights. 29 | 30 | Definitions 31 | 32 | 'Covered License' means the GNU General Public License, version 2 33 | (GPLv2), the GNU Lesser General Public License, version 2.1 34 | (LGPLv2.1), or the GNU Library General Public License, version 2 35 | (LGPLv2), all as published by the Free Software Foundation. 36 | 37 | 'Defensive Action' means a legal proceeding or claim that We bring 38 | against you in response to a prior proceeding or claim initiated by 39 | you or your affiliate. 40 | 41 | 'We' means each contributor to this repository as of the date of 42 | inclusion of this file, including subsidiaries of a corporate 43 | contributor. 44 | 45 | This work is available under a Creative Commons Attribution-ShareAlike 46 | 4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). 47 | -------------------------------------------------------------------------------- /assets/PHPMailer/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security notices relating to PHPMailer 2 | 3 | Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately. 4 | 5 | PHPMailer versions 6.1.5 and earlier contain an output escaping bug that occurs in `Content-Type` and `Content-Disposition` when filenames passed into `addAttachment` and other methods that accept attachment names contain double quote characters, in contravention of RFC822 3.4.1. No specific vulnerability has been found relating to this, but it could allow file attachments to bypass attachment filters that are based on matching filename extensions. Recorded as [CVE-2020-13625](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13625). Reported by Elar Lang of Clarified Security. 6 | 7 | PHPMailer versions prior to 6.0.6 and 5.2.27 are vulnerable to an object injection attack by passing `phar://` paths into `addAttachment()` and other functions that may receive unfiltered local paths, possibly leading to RCE. Recorded as [CVE-2018-19296](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19296). See [this article](https://knasmueller.net/5-answers-about-php-phar-exploitation) for more info on this type of vulnerability. Mitigated by blocking the use of paths containing URL-protocol style prefixes such as `phar://`. Reported by Sehun Oh of cyberone.kr. 8 | 9 | PHPMailer versions prior to 5.2.24 (released July 26th 2017) have an XSS vulnerability in one of the code examples, [CVE-2017-11503](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-11503). The `code_generator.phps` example did not filter user input prior to output. This file is distributed with a `.phps` extension, so it it not normally executable unless it is explicitly renamed, and the file is not included when PHPMailer is loaded through composer, so it is safe by default. There was also an undisclosed potential XSS vulnerability in the default exception handler (unused by default). Patches for both issues kindly provided by Patrick Monnerat of the Fedora Project. 10 | 11 | PHPMailer versions prior to 5.2.22 (released January 9th 2017) have a local file disclosure vulnerability, [CVE-2017-5223](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-5223). If content passed into `msgHTML()` is sourced from unfiltered user input, relative paths can map to absolute local file paths and added as attachments. Also note that `addAttachment` (just like `file_get_contents`, `passthru`, `unlink`, etc) should not be passed user-sourced params either! Reported by Yongxiang Li of Asiasecurity. 12 | 13 | PHPMailer versions prior to 5.2.20 (released December 28th 2016) are vulnerable to [CVE-2016-10045](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10045) a remote code execution vulnerability, responsibly reported by [Dawid Golunski](https://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10045-Vuln-Patch-Bypass.html), and patched by Paul Buonopane (@Zenexer). 14 | 15 | PHPMailer versions prior to 5.2.18 (released December 2016) are vulnerable to [CVE-2016-10033](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10033) a remote code execution vulnerability, responsibly reported by [Dawid Golunski](http://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10033-Vuln.html). 16 | 17 | PHPMailer versions prior to 5.2.14 (released November 2015) are vulnerable to [CVE-2015-8476](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-8476) an SMTP CRLF injection bug permitting arbitrary message sending. 18 | 19 | PHPMailer versions prior to 5.2.10 (released May 2015) are vulnerable to [CVE-2008-5619](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-5619), a remote code execution vulnerability in the bundled html2text library. This file was removed in 5.2.10, so if you are using a version prior to that and make use of the html2text function, it's vitally important that you upgrade and remove this file. 20 | 21 | PHPMailer versions prior to 2.0.7 and 2.2.1 are vulnerable to [CVE-2012-0796](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-0796), an email header injection attack. 22 | 23 | Joomla 1.6.0 uses PHPMailer in an unsafe way, allowing it to reveal local file paths, reported in [CVE-2011-3747](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-3747). 24 | 25 | PHPMailer didn't sanitise the `$lang_path` parameter in `SetLanguage`. This wasn't a problem in itself, but some apps (PHPClassifieds, ATutor) also failed to sanitise user-provided parameters passed to it, permitting semi-arbitrary local file inclusion, reported in [CVE-2010-4914](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-4914), [CVE-2007-2021](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-2021) and [CVE-2006-5734](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2006-5734). 26 | 27 | PHPMailer 1.7.2 and earlier contained a possible DDoS vulnerability reported in [CVE-2005-1807](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2005-1807). 28 | 29 | PHPMailer 1.7 and earlier (June 2003) have a possible vulnerability in the `SendmailSend` method where shell commands may not be sanitised. Reported in [CVE-2007-3215](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-3215). 30 | 31 | -------------------------------------------------------------------------------- /assets/PHPMailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.1.7 -------------------------------------------------------------------------------- /assets/PHPMailer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpmailer/phpmailer", 3 | "type": "library", 4 | "description": "PHPMailer is a full-featured email creation and transfer class for PHP", 5 | "authors": [ 6 | { 7 | "name": "Marcus Bointon", 8 | "email": "phpmailer@synchromedia.co.uk" 9 | }, 10 | { 11 | "name": "Jim Jagielski", 12 | "email": "jimjag@gmail.com" 13 | }, 14 | { 15 | "name": "Andy Prevost", 16 | "email": "codeworxtech@users.sourceforge.net" 17 | }, 18 | { 19 | "name": "Brent R. Matzelle" 20 | } 21 | ], 22 | "funding": [ 23 | { 24 | "url": "https://github.com/synchro", 25 | "type": "github" 26 | } 27 | ], 28 | "require": { 29 | "php": ">=5.5.0", 30 | "ext-ctype": "*", 31 | "ext-filter": "*", 32 | "ext-hash": "*" 33 | }, 34 | "require-dev": { 35 | "friendsofphp/php-cs-fixer": "^2.2", 36 | "phpunit/phpunit": "^4.8 || ^5.7", 37 | "doctrine/annotations": "^1.2" 38 | }, 39 | "suggest": { 40 | "psr/log": "For optional PSR-3 debug logging", 41 | "league/oauth2-google": "Needed for Google XOAUTH2 authentication", 42 | "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", 43 | "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", 44 | "ext-mbstring": "Needed to send email in multibyte encoding charset", 45 | "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" 46 | }, 47 | "autoload": { 48 | "psr-4": { 49 | "PHPMailer\\PHPMailer\\": "src/" 50 | } 51 | }, 52 | "autoload-dev": { 53 | "psr-4": { 54 | "PHPMailer\\Test\\": "test/" 55 | } 56 | }, 57 | "license": "LGPL-2.1-only" 58 | } 59 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-af.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.'; 9 | $PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .'; 11 | $PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ'; 12 | $PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: '; 13 | $PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : '; 14 | $PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: '; 15 | $PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: '; 16 | $PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : '; 17 | $PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.'; 20 | $PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية ' . 22 | 'فشل في الارسال لكل من : '; 23 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: '; 13 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.'; 22 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP greška: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: '; -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.'; 12 | $PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: '; 13 | $PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: '; 14 | $PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: '; 15 | $PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: '; 22 | $PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно'; 12 | $PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: '; 13 | $PHPMAILER_LANG['execute'] = 'Не може да се изпълни: '; 14 | $PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: '; 15 | $PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: '; 22 | $PHPMAILER_LANG['signing'] = 'Грешка при подписване: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.'; 11 | $PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: '; 13 | $PHPMAILER_LANG['execute'] = 'No es pot executar: '; 14 | $PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: '; 15 | $PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: '; 17 | $PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat'; 20 | $PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: '; 22 | $PHPMAILER_LANG['signing'] = 'Error al signar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 13 | $PHPMAILER_LANG['execute'] = '不能执行: '; 14 | $PHPMAILER_LANG['file_access'] = '不能访问文件:'; 15 | $PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:'; 16 | $PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: '; 17 | $PHPMAILER_LANG['instantiate'] = '不能实现mail方法。'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; 20 | $PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- 1 | 6 | * Rewrite and extension of the work by Mikael Stokkebro 7 | * 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Login mislykkedes.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Forbindelse til SMTP serveren kunne ikke oprettes.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data blev ikke accepteret.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Meddelelsen er uden indhold'; 14 | $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; 15 | $PHPMAILER_LANG['execute'] = 'Kunne ikke afvikle: '; 16 | $PHPMAILER_LANG['file_access'] = 'Kunne ikke tilgå filen: '; 17 | $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Email funktionen kunne ikke initialiseres.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Udgyldig adresse: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Indtast mindst en modtagers email adresse.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; 24 | $PHPMAILER_LANG['signing'] = 'Signeringsfejl: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Udvidelse mangler: '; 29 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; 13 | $PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; 14 | $PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; 15 | $PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; 16 | $PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; 22 | $PHPMAILER_LANG['signing'] = 'Error al firmar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; 13 | $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; 14 | $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; 15 | $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; 16 | $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; 18 | $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; 23 | $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Mohammad Hossein Mojtahedi 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.'; 10 | $PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: داده‌ها نا‌درست هستند.'; 12 | $PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.'; 13 | $PHPMAILER_LANG['encoding'] = 'کد‌گذاری نا‌شناخته: '; 14 | $PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: '; 15 | $PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: '; 16 | $PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: '; 17 | $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: '; 18 | $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمی‌شود.'; 21 | $PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: '; 23 | $PHPMAILER_LANG['signing'] = 'خطا در امضا: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: '; 26 | $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیر‌ها وجود ندارد: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Ókend encoding: '; 13 | $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: '; 13 | $PHPMAILER_LANG['execute'] = 'Non puido ser executado: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: '; 15 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: '; 16 | $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: '; 22 | $PHPMAILER_LANG['signing'] = 'Erro ó firmar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.'; 9 | $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.'; 11 | $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק'; 12 | $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: '; 13 | $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: '; 14 | $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: '; 15 | $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: '; 16 | $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: '; 17 | $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: '; 18 | $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.'; 20 | $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: '; 22 | $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-hi.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP त्रुटि: प्रामाणिकता की जांच नहीं हो सका। '; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP त्रुटि: SMTP सर्वर से कनेक्ट नहीं हो सका। '; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP त्रुटि: डेटा स्वीकार नहीं किया जाता है। '; 11 | $PHPMAILER_LANG['empty_message'] = 'संदेश खाली है। '; 12 | $PHPMAILER_LANG['encoding'] = 'अज्ञात एन्कोडिंग प्रकार। '; 13 | $PHPMAILER_LANG['execute'] = 'आदेश को निष्पादित करने में विफल। '; 14 | $PHPMAILER_LANG['file_access'] = 'फ़ाइल उपलब्ध नहीं है। '; 15 | $PHPMAILER_LANG['file_open'] = 'फ़ाइल त्रुटि: फाइल को खोला नहीं जा सका। '; 16 | $PHPMAILER_LANG['from_failed'] = 'प्रेषक का पता गलत है। '; 17 | $PHPMAILER_LANG['instantiate'] = 'मेल फ़ंक्शन कॉल नहीं कर सकता है।'; 18 | $PHPMAILER_LANG['invalid_address'] = 'पता गलत है। '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = 'मेल सर्वर के साथ काम नहीं करता है। '; 20 | $PHPMAILER_LANG['provide_address'] = 'आपको कम से कम एक प्राप्तकर्ता का ई-मेल पता प्रदान करना होगा।'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP त्रुटि: निम्न प्राप्तकर्ताओं को पते भेजने में विफल। '; 22 | $PHPMAILER_LANG['signing'] = 'साइनअप त्रुटि:। '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP का connect () फ़ंक्शन विफल हुआ। '; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP सर्वर त्रुटि। '; 25 | $PHPMAILER_LANG['variable_set'] = 'चर को बना या संशोधित नहीं किया जा सकता। '; 26 | $PHPMAILER_LANG['extension_missing'] = 'एक्सटेन्षन गायब है: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznati encoding: '; 13 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje s navedenih e-mail adresa nije uspjelo: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa nije uspjelo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Definirajte barem jednu adresu primatelja.'; 22 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP -ի սխալ: չհաջողվեց ստուգել իսկությունը.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP -ի սխալ: չհաջողվեց կապ հաստատել SMTP սերվերի հետ.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP -ի սխալ: տվյալները ընդունված չեն.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Հաղորդագրությունը դատարկ է'; 12 | $PHPMAILER_LANG['encoding'] = 'Կոդավորման անհայտ տեսակ: '; 13 | $PHPMAILER_LANG['execute'] = 'Չհաջողվեց իրականացնել հրամանը: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ֆայլը հասանելի չէ: '; 15 | $PHPMAILER_LANG['file_open'] = 'Ֆայլի սխալ: ֆայլը չհաջողվեց բացել: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: '; 22 | $PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- 1 | 6 | * @author @januridp 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; 13 | $PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; 14 | $PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses : '; 15 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas : '; 16 | $PHPMAILER_LANG['file_open'] = 'Kesalahan File: Berkas tidak dapat dibuka : '; 17 | $PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan : '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak benar : '; 20 | $PHPMAILER_LANG['provide_address'] = 'Harus disediakan minimal satu alamat tujuan'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tidak didukung'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menghasilkan kesalahan : '; 23 | $PHPMAILER_LANG['signing'] = 'Kesalahan dalam tanda tangan : '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP : '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tidak dapat mengatur atau mengatur ulang variable : '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Ekstensi hilang: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Stefano Sabatini 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; 13 | $PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; 14 | $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; 15 | $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; 16 | $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; 17 | $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; 23 | $PHPMAILER_LANG['signing'] = 'Errore nella firma: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Estensione mancante: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Yoshi Sakai 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTPエラー: 認証できませんでした。'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTPエラー: SMTPホストに接続できませんでした。'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTPエラー: データが受け付けられませんでした。'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; 14 | $PHPMAILER_LANG['execute'] = '実行できませんでした: '; 15 | $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; 16 | $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; 18 | $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP შეცდომა: ავტორიზაცია შეუძლებელია.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP შეცდომა: SMTP სერვერთან დაკავშირება შეუძლებელია.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP შეცდომა: მონაცემები არ იქნა მიღებული.'; 11 | $PHPMAILER_LANG['encoding'] = 'კოდირების უცნობი ტიპი: '; 12 | $PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; 13 | $PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; 14 | $PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; 15 | $PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; 16 | $PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; 17 | $PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; 18 | $PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; 20 | $PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; 21 | $PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; 22 | $PHPMAILER_LANG['signing'] = 'ხელმოწერის შეცდომა: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'შეცდომა SMTP სერვერთან დაკავშირებისას'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP სერვერის შეცდომა: '; 25 | $PHPMAILER_LANG['variable_set'] = 'შეუძლებელია შემდეგი ცვლადის შექმნა ან შეცვლა: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'ბიბლიოთეკა არ არსებობს: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; 11 | $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; 12 | $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; 13 | $PHPMAILER_LANG['execute'] = '실행 불가: '; 14 | $PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; 15 | $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; 16 | $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; 17 | $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; 18 | $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; 20 | $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; 22 | $PHPMAILER_LANG['signing'] = '서명 오류: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; 25 | $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; 26 | $PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias'; 12 | $PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: '; 13 | $PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: '; 14 | $PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: '; 15 | $PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: '; 22 | $PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs'; 12 | $PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: '; 13 | $PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: '; 15 | $PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: '; 22 | $PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | $PHPMAILER_LANG['authenticate'] = 'Hadisoana SMTP: Tsy nahomby ny fanamarinana.'; 8 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Tsy afaka mampifandray amin\'ny mpampiantrano SMTP.'; 9 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP diso: tsy voarakitra ny angona.'; 10 | $PHPMAILER_LANG['empty_message'] = 'Tsy misy ny votoaty mailaka.'; 11 | $PHPMAILER_LANG['encoding'] = 'Tsy fantatra encoding: '; 12 | $PHPMAILER_LANG['execute'] = 'Tsy afaka manatanteraka ity baiko manaraka ity: '; 13 | $PHPMAILER_LANG['file_access'] = 'Tsy nahomby ny fidirana amin\'ity rakitra ity: '; 14 | $PHPMAILER_LANG['file_open'] = 'Hadisoana diso: Tsy afaka nanokatra ity file manaraka ity: '; 15 | $PHPMAILER_LANG['from_failed'] = 'Ny adiresy iraka manaraka dia diso: '; 16 | $PHPMAILER_LANG['instantiate'] = 'Tsy afaka nanomboka ny hetsika mail.'; 17 | $PHPMAILER_LANG['invalid_address'] = 'Tsy mety ny adiresy: '; 18 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tsy manohana.'; 19 | $PHPMAILER_LANG['provide_address'] = 'Alefaso azafady iray adiresy iray farafahakeliny.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Tsy mety ireo mpanaraka ireto: '; 21 | $PHPMAILER_LANG['signing'] = 'Error nandritra ny sonia:'; 22 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Tsy nahomby ny fifandraisana tamin\'ny server SMTP.'; 23 | $PHPMAILER_LANG['smtp_error'] = 'Fahadisoana tamin\'ny server SMTP: '; 24 | $PHPMAILER_LANG['variable_set'] = 'Tsy azo atao ny mametraka na mamerina ny variable: '; 25 | $PHPMAILER_LANG['extension_missing'] = 'Tsy hita ny ampahany: '; 26 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; 12 | $PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; 13 | $PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; 14 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; 15 | $PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; 22 | $PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; 12 | $PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; 13 | $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; 15 | $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; 19 | $PHPMAILER_LANG['invalid_hostentry'] = 'Ongeldige hostentry: '; 20 | $PHPMAILER_LANG['invalid_host'] = 'Ongeldige host: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; 24 | $PHPMAILER_LANG['signing'] = 'Signeerfout: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; 29 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 13 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 14 | $PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; 15 | $PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; 22 | $PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Lucas Guimarães 7 | * @author Phelipe Alves 8 | * @author Fabio Beneditto 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; 12 | $PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; 15 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 16 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 17 | $PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; 18 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; 25 | $PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Extensão não existe: '; 30 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Autentificarea a eșuat.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Conectarea la serverul SMTP a eșuat.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Datele nu au fost acceptate.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Mesajul este gol.'; 12 | $PHPMAILER_LANG['encoding'] = 'Encodare necunoscută: '; 13 | $PHPMAILER_LANG['execute'] = 'Nu se poate executa următoarea comandă: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nu se poate accesa următorul fișier: '; 15 | $PHPMAILER_LANG['file_open'] = 'Eroare fișier: Nu se poate deschide următorul fișier: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Următoarele adrese From au dat eroare: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Funcția mail nu a putut fi inițializată.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Adresa de email nu este validă: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Trebuie să adăugați cel puțin o adresă de email.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Următoarele adrese de email au eșuat: '; 22 | $PHPMAILER_LANG['signing'] = 'A aparut o problemă la semnarea emailului. '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Conectarea la serverul SMTP a eșuat.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Eroare server SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nu se poate seta/reseta variabila. '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Lipsește extensia: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Foster Snowhill 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к SMTP-серверу.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; 12 | $PHPMAILER_LANG['encoding'] = 'Неизвестная кодировка: '; 13 | $PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: '; 14 | $PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: '; 15 | $PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удаётся открыть файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail().'; 18 | $PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один email-адрес получателя.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: не удалась отправка таким адресатам: '; 21 | $PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Не отправлено из-за неправильного формата email-адреса: '; 23 | $PHPMAILER_LANG['signing'] = 'Ошибка подписи: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Невозможно установить или сбросить переменную: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Расширение отсутствует: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Peter Orlický 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; 12 | $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; 13 | $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; 14 | $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; 15 | $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; 16 | $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; 23 | $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Chýba rozšírenie: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Filip Š 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Vzpostavljanje povezave s SMTP gostiteljem ni uspelo.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; 12 | $PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; 13 | $PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; 14 | $PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; 16 | $PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Prosim vnesite vsaj enega naslovnika.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; 23 | $PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Manjkajoča razširitev: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Miloš Milanović 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: аутентификација није успела.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: повезивање са SMTP сервером није успело.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: подаци нису прихваћени.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Садржај поруке је празан.'; 13 | $PHPMAILER_LANG['encoding'] = 'Непознато кодирање: '; 14 | $PHPMAILER_LANG['execute'] = 'Није могуће извршити наредбу: '; 15 | $PHPMAILER_LANG['file_access'] = 'Није могуће приступити датотеци: '; 16 | $PHPMAILER_LANG['file_open'] = 'Није могуће отворити датотеку: '; 17 | $PHPMAILER_LANG['from_failed'] = 'SMTP грешка: слање са следећих адреса није успело: '; 18 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Порука није послата. Неисправна адреса: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Дефинишите бар једну адресу примаоца.'; 23 | $PHPMAILER_LANG['signing'] = 'Грешка приликом пријаве: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Повезивање са SMTP сервером није успело.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Грешка SMTP сервера: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Није могуће задати нити ресетовати променљиву: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Недостаје проширење: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; 22 | $PHPMAILER_LANG['signing'] = 'Signeringsfel: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serverfel: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Hindi mapatotohanan.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Hindi makakonekta sa SMTP host.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Ang datos ay hindi maaaring matatanggap.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Walang laman ang mensahe'; 13 | $PHPMAILER_LANG['encoding'] = 'Hindi alam ang encoding: '; 14 | $PHPMAILER_LANG['execute'] = 'Hindi maisasagawa: '; 15 | $PHPMAILER_LANG['file_access'] = 'Hindi ma-access ang file: '; 16 | $PHPMAILER_LANG['file_open'] = 'Hindi mabuksan ang file: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ang sumusunod na address ay nabigo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Hindi maaaring magbigay ng institusyon ang mail'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Hindi wasto ang address na naibigay: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = 'Ang mailer ay hindi suportado'; 21 | $PHPMAILER_LANG['provide_address'] = 'Kailangan mong magbigay ng kahit isang email address na tatanggap'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Ang mga sumusunod na tatanggap ay nabigo: '; 23 | $PHPMAILER_LANG['signing'] = 'Hindi ma-sign'; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ang SMTP connect() ay nabigo'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Ang server ng SMTP ay nabigo'; 26 | $PHPMAILER_LANG['variable_set'] = 'Hindi matatakda ang mga variables: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nawawala ang extension'; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- 1 | 6 | * @fixed by Boris Yurchenko 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до SMTP-серверу.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийнято.'; 12 | $PHPMAILER_LANG['encoding'] = 'Невідоме кодування: '; 13 | $PHPMAILER_LANG['execute'] = 'Неможливо виконати команду: '; 14 | $PHPMAILER_LANG['file_access'] = 'Немає доступу до файлу: '; 15 | $PHPMAILER_LANG['file_open'] = 'Помилка файлової системи: не вдається відкрити файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Невірна адреса відправника: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Неможливо запустити функцію mail().'; 18 | $PHPMAILER_LANG['provide_address'] = 'Будь-ласка, введіть хоча б одну email-адресу отримувача.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: не вдалося відправлення для таких отримувачів: '; 21 | $PHPMAILER_LANG['empty_message'] = 'Пусте повідомлення'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Не відправлено через невірний формат email-адреси: '; 23 | $PHPMAILER_LANG['signing'] = 'Помилка підпису: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання з SMTP-сервером'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або скинути змінну: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Розширення відсутнє: '; 28 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Không có nội dung'; 12 | $PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: '; 13 | $PHPMAILER_LANG['execute'] = 'Không thực hiện được: '; 14 | $PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin '; 15 | $PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: '; 22 | $PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp '; 25 | $PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Peter Dave Hello <@PeterDaveHello/> 7 | * @author Jason Chiang 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; 13 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空'; 14 | $PHPMAILER_LANG['encoding'] = '未知編碼: '; 15 | $PHPMAILER_LANG['execute'] = '無法執行:'; 16 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:'; 17 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; 18 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; 19 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; 20 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; 22 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; 24 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; 27 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; 28 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; 29 | -------------------------------------------------------------------------------- /assets/PHPMailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 6 | * @author young 7 | * @author Teddysun 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; 13 | $PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; 14 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 15 | $PHPMAILER_LANG['execute'] = '无法执行:'; 16 | $PHPMAILER_LANG['file_access'] = '无法访问文件:'; 17 | $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; 18 | $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; 19 | $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; 20 | $PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; 22 | $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; 24 | $PHPMAILER_LANG['signing'] = '登录失败:'; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错:'; 27 | $PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; 28 | $PHPMAILER_LANG['extension_missing'] = '丢失模块 Extension:'; 29 | -------------------------------------------------------------------------------- /assets/PHPMailer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Jim Jagielski (jimjag) 10 | * @author Andy Prevost (codeworxtech) 11 | * @author Brent R. Matzelle (original founder) 12 | * @copyright 2012 - 2020 Marcus Bointon 13 | * @copyright 2010 - 2012 Jim Jagielski 14 | * @copyright 2004 - 2009 Andy Prevost 15 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 16 | * @note This program is distributed in the hope that it will be useful - WITHOUT 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 18 | * FITNESS FOR A PARTICULAR PURPOSE. 19 | */ 20 | 21 | namespace PHPMailer\PHPMailer; 22 | 23 | /** 24 | * PHPMailer exception handler. 25 | * 26 | * @author Marcus Bointon 27 | */ 28 | class Exception extends \Exception 29 | { 30 | /** 31 | * Prettify error message output. 32 | * 33 | * @return string 34 | */ 35 | public function errorMessage() 36 | { 37 | return '' . htmlspecialchars($this->getMessage()) . "
\n"; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /assets/PHPMailer/src/OAuth.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Jim Jagielski (jimjag) 10 | * @author Andy Prevost (codeworxtech) 11 | * @author Brent R. Matzelle (original founder) 12 | * @copyright 2012 - 2020 Marcus Bointon 13 | * @copyright 2010 - 2012 Jim Jagielski 14 | * @copyright 2004 - 2009 Andy Prevost 15 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 16 | * @note This program is distributed in the hope that it will be useful - WITHOUT 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 18 | * FITNESS FOR A PARTICULAR PURPOSE. 19 | */ 20 | 21 | namespace PHPMailer\PHPMailer; 22 | 23 | use League\OAuth2\Client\Grant\RefreshToken; 24 | use League\OAuth2\Client\Provider\AbstractProvider; 25 | use League\OAuth2\Client\Token\AccessToken; 26 | 27 | /** 28 | * OAuth - OAuth2 authentication wrapper class. 29 | * Uses the oauth2-client package from the League of Extraordinary Packages. 30 | * 31 | * @see http://oauth2-client.thephpleague.com 32 | * 33 | * @author Marcus Bointon (Synchro/coolbru) 34 | */ 35 | class OAuth 36 | { 37 | /** 38 | * An instance of the League OAuth Client Provider. 39 | * 40 | * @var AbstractProvider 41 | */ 42 | protected $provider; 43 | 44 | /** 45 | * The current OAuth access token. 46 | * 47 | * @var AccessToken 48 | */ 49 | protected $oauthToken; 50 | 51 | /** 52 | * The user's email address, usually used as the login ID 53 | * and also the from address when sending email. 54 | * 55 | * @var string 56 | */ 57 | protected $oauthUserEmail = ''; 58 | 59 | /** 60 | * The client secret, generated in the app definition of the service you're connecting to. 61 | * 62 | * @var string 63 | */ 64 | protected $oauthClientSecret = ''; 65 | 66 | /** 67 | * The client ID, generated in the app definition of the service you're connecting to. 68 | * 69 | * @var string 70 | */ 71 | protected $oauthClientId = ''; 72 | 73 | /** 74 | * The refresh token, used to obtain new AccessTokens. 75 | * 76 | * @var string 77 | */ 78 | protected $oauthRefreshToken = ''; 79 | 80 | /** 81 | * OAuth constructor. 82 | * 83 | * @param array $options Associative array containing 84 | * `provider`, `userName`, `clientSecret`, `clientId` and `refreshToken` elements 85 | */ 86 | public function __construct($options) 87 | { 88 | $this->provider = $options['provider']; 89 | $this->oauthUserEmail = $options['userName']; 90 | $this->oauthClientSecret = $options['clientSecret']; 91 | $this->oauthClientId = $options['clientId']; 92 | $this->oauthRefreshToken = $options['refreshToken']; 93 | } 94 | 95 | /** 96 | * Get a new RefreshToken. 97 | * 98 | * @return RefreshToken 99 | */ 100 | protected function getGrant() 101 | { 102 | return new RefreshToken(); 103 | } 104 | 105 | /** 106 | * Get a new AccessToken. 107 | * 108 | * @return AccessToken 109 | */ 110 | protected function getToken() 111 | { 112 | return $this->provider->getAccessToken( 113 | $this->getGrant(), 114 | ['refresh_token' => $this->oauthRefreshToken] 115 | ); 116 | } 117 | 118 | /** 119 | * Generate a base64-encoded OAuth token. 120 | * 121 | * @return string 122 | */ 123 | public function getOauth64() 124 | { 125 | // Get a new token if it's not available or has expired 126 | if (null === $this->oauthToken || $this->oauthToken->hasExpired()) { 127 | $this->oauthToken = $this->getToken(); 128 | } 129 | 130 | return base64_encode( 131 | 'user=' . 132 | $this->oauthUserEmail . 133 | "\001auth=Bearer " . 134 | $this->oauthToken . 135 | "\001\001" 136 | ); 137 | } 138 | } 139 | -------------------------------------------------------------------------------- /assets/css/baguetteBox.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * baguetteBox.js 3 | * @author feimosi 4 | * @version 1.10.0 5 | * @url https://github.com/feimosi/baguetteBox.js 6 | */#baguetteBox-overlay{display:none;opacity:0;position:fixed;overflow:hidden;top:0;left:0;width:100%;height:100%;z-index:1000000;background-color:#222;background-color:rgba(0,0,0,.8);-webkit-transition:opacity .5s ease;transition:opacity .5s ease}#baguetteBox-overlay.visible{opacity:1}#baguetteBox-overlay .full-image{display:inline-block;position:relative;width:100%;height:100%;text-align:center}#baguetteBox-overlay .full-image figure{display:inline;margin:0;height:100%}#baguetteBox-overlay .full-image img{display:inline-block;width:auto;height:auto;max-height:100%;max-width:100%;vertical-align:middle;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);-moz-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6)}#baguetteBox-overlay .full-image figcaption{display:block;position:absolute;bottom:0;width:100%;text-align:center;line-height:1.8;white-space:normal;color:#ccc;background-color:#000;background-color:rgba(0,0,0,.6);font-family:sans-serif}#baguetteBox-overlay .full-image:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#baguetteBox-slider{position:absolute;left:0;top:0;height:100%;width:100%;white-space:nowrap;-webkit-transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,transform .4s ease;transition:left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease}#baguetteBox-slider.bounce-from-right{-webkit-animation:bounceFromRight .4s ease-out;animation:bounceFromRight .4s ease-out}#baguetteBox-slider.bounce-from-left{-webkit-animation:bounceFromLeft .4s ease-out;animation:bounceFromLeft .4s ease-out}@-webkit-keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@-webkit-keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}@keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}.baguetteBox-button#next-button,.baguetteBox-button#previous-button{top:50%;top:calc(50% - 30px);width:44px;height:60px}.baguetteBox-button{position:absolute;cursor:pointer;outline:0;padding:0;margin:0;border:0;-moz-border-radius:15%;border-radius:15%;background-color:#323232;background-color:rgba(50,50,50,.5);color:#ddd;font:1.6em sans-serif;-webkit-transition:background-color .4s ease;transition:background-color .4s ease}.baguetteBox-button:focus,.baguetteBox-button:hover{background-color:rgba(50,50,50,.9)}.baguetteBox-button#next-button{right:2%}.baguetteBox-button#previous-button{left:2%}.baguetteBox-button#close-button{top:20px;right:2%;right:calc(2% + 6px);width:30px;height:30px}.baguetteBox-button svg{position:absolute;left:0;top:0}.baguetteBox-spinner{width:40px;height:40px;display:inline-block;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px}.baguetteBox-double-bounce1,.baguetteBox-double-bounce2{width:100%;height:100%;-moz-border-radius:50%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:bounce 2s infinite ease-in-out;animation:bounce 2s infinite ease-in-out}.baguetteBox-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounce{0%,100%{-webkit-transform:scale(0);-moz-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}} -------------------------------------------------------------------------------- /assets/css/carousel-ticker.css: -------------------------------------------------------------------------------- 1 | 2 | .carouselTicker { 3 | overflow: hidden; 4 | float: none; 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | -ms-user-select: none; 8 | -o-user-select: none; 9 | user-select: none; 10 | } 11 | 12 | .carouselTicker__list { 13 | margin: 10px 0; 14 | padding: 0; 15 | list-style-type: none; 16 | overflow: hidden; 17 | } 18 | 19 | .carouselTicker__item { 20 | margin: 0; 21 | float: left; 22 | border: 4px solid #fbb714; 23 | background-color:#fbb714; 24 | margin-left: 5px; 25 | width: 101px; 26 | height: 40px; 27 | color:#fff; 28 | line-height: 34px; 29 | text-align: center; 30 | } 31 | -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- 1 | 2 | /** ADD YOUR AWESOME CODES HERE **/ -------------------------------------------------------------------------------- /assets/css/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.3.4 3 | * Copyright 2013-2018 David Deutsch 4 | * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /assets/css/superslides.css: -------------------------------------------------------------------------------- 1 | #slides { 2 | position: relative; 3 | } 4 | #slides .slides-container { 5 | display: none; 6 | } 7 | #slides .scrollable { 8 | *zoom: 1; 9 | position: relative; 10 | top: 0; 11 | left: 0; 12 | overflow-y: auto; 13 | -webkit-overflow-scrolling: touch; 14 | height: 100%; 15 | } 16 | #slides .scrollable:after { 17 | content: ""; 18 | display: table; 19 | clear: both; 20 | } 21 | 22 | .slides-navigation { 23 | margin: 0 auto; 24 | position: absolute; 25 | z-index: 3; 26 | top: 46%; 27 | width: 100%; 28 | } 29 | .slides-navigation a { 30 | position: absolute; 31 | display: block; 32 | } 33 | .slides-navigation a.prev { 34 | left: 0; 35 | } 36 | .slides-navigation a.next { 37 | right: 0; 38 | } 39 | 40 | .slides-pagination { 41 | position: absolute; 42 | z-index: 3; 43 | bottom: 0; 44 | text-align: center; 45 | width: 100%; 46 | } 47 | .slides-pagination a { 48 | border: 2px solid #222; 49 | border-radius: 0px; 50 | width: 30px; 51 | height: 30px; 52 | display: -moz-inline-stack; 53 | display: inline-block; 54 | vertical-align: middle; 55 | *vertical-align: auto; 56 | zoom: 1; 57 | *display: inline; 58 | background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII="); 59 | margin: 2px; 60 | overflow: hidden; 61 | text-indent: -99999px; 62 | text-align: center; 63 | } 64 | .slides-pagination a.current { 65 | background: #222; 66 | } 67 | -------------------------------------------------------------------------------- /assets/images/2270941922women-shoes-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/2270941922women-shoes-img.jpg -------------------------------------------------------------------------------- /assets/images/2599549121img-pro-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/2599549121img-pro-02.jpg -------------------------------------------------------------------------------- /assets/images/3401730260instagram-img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/3401730260instagram-img-01.jpg -------------------------------------------------------------------------------- /assets/images/3860634376smp-img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/3860634376smp-img-02.jpg -------------------------------------------------------------------------------- /assets/images/5055445047instagram-img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/5055445047instagram-img-08.jpg -------------------------------------------------------------------------------- /assets/images/5223631355about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/5223631355about-img.jpg -------------------------------------------------------------------------------- /assets/images/5474445890instagram-img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/5474445890instagram-img-03.jpg -------------------------------------------------------------------------------- /assets/images/about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/about-img.jpg -------------------------------------------------------------------------------- /assets/images/all-bg-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/all-bg-title.jpg -------------------------------------------------------------------------------- /assets/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/images/big-img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/big-img-01.jpg -------------------------------------------------------------------------------- /assets/images/big-img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/big-img-02.jpg -------------------------------------------------------------------------------- /assets/images/big-img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/big-img-03.jpg -------------------------------------------------------------------------------- /assets/images/blog-img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/blog-img-01.jpg -------------------------------------------------------------------------------- /assets/images/blog-img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/blog-img-02.jpg -------------------------------------------------------------------------------- /assets/images/blog-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/blog-img.jpg -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-1.jpg -------------------------------------------------------------------------------- /assets/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-2.jpg -------------------------------------------------------------------------------- /assets/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-3.jpg -------------------------------------------------------------------------------- /assets/images/img-pro-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-pro-01.jpg -------------------------------------------------------------------------------- /assets/images/img-pro-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-pro-02.jpg -------------------------------------------------------------------------------- /assets/images/img-pro-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-pro-03.jpg -------------------------------------------------------------------------------- /assets/images/img-pro-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/img-pro-04.jpg -------------------------------------------------------------------------------- /assets/images/ins-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/ins-bg.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-01.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-02.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-03.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-04.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-06.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-07.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-08.jpg -------------------------------------------------------------------------------- /assets/images/instagram-img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/instagram-img-09.jpg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/payment-icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/payment-icon/1.png -------------------------------------------------------------------------------- /assets/images/payment-icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/payment-icon/2.png -------------------------------------------------------------------------------- /assets/images/payment-icon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/payment-icon/3.png -------------------------------------------------------------------------------- /assets/images/payment-icon/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/payment-icon/5.png -------------------------------------------------------------------------------- /assets/images/payment-icon/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/payment-icon/7.png -------------------------------------------------------------------------------- /assets/images/shirt-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/shirt-img.jpg -------------------------------------------------------------------------------- /assets/images/shoes-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/shoes-img.jpg -------------------------------------------------------------------------------- /assets/images/smp-img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/smp-img-01.jpg -------------------------------------------------------------------------------- /assets/images/smp-img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/smp-img-02.jpg -------------------------------------------------------------------------------- /assets/images/smp-img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/smp-img-03.jpg -------------------------------------------------------------------------------- /assets/images/t-shirts-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/t-shirts-img.jpg -------------------------------------------------------------------------------- /assets/images/wallet-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/wallet-img.jpg -------------------------------------------------------------------------------- /assets/images/women-bag-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/women-bag-img.jpg -------------------------------------------------------------------------------- /assets/images/women-shoes-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/images/women-shoes-img.jpg -------------------------------------------------------------------------------- /assets/js/contact-form-script.js: -------------------------------------------------------------------------------- 1 | $("#contactForm").validator().on("submit", function (event) { 2 | if (event.isDefaultPrevented()) { 3 | // handle the invalid form... 4 | formError(); 5 | submitMSG(false, "Did you fill in the form properly?"); 6 | } else { 7 | // everything looks good! 8 | event.preventDefault(); 9 | submitForm(); 10 | } 11 | }); 12 | 13 | 14 | function submitForm(){ 15 | // Initiate Variables With Form Content 16 | var name = $("#name").val(); 17 | var email = $("#email").val(); 18 | var msg_subject = $("#msg_subject").val(); 19 | var message = $("#message").val(); 20 | 21 | 22 | $.ajax({ 23 | type: "POST", 24 | url: "php/form-process.php", 25 | data: "name=" + name + "&email=" + email + "&msg_subject=" + msg_subject + "&message=" + message, 26 | success : function(text){ 27 | if (text == "success"){ 28 | formSuccess(); 29 | } else { 30 | formError(); 31 | submitMSG(false,text); 32 | } 33 | } 34 | }); 35 | } 36 | 37 | function formSuccess(){ 38 | $("#contactForm")[0].reset(); 39 | submitMSG(true, "Message Submitted!") 40 | } 41 | 42 | function formError(){ 43 | $("#contactForm").removeClass().addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){ 44 | $(this).removeClass(); 45 | }); 46 | } 47 | 48 | function submitMSG(valid, msg){ 49 | if(valid){ 50 | var msgClasses = "h3 text-center tada animated text-success"; 51 | } else { 52 | var msgClasses = "h3 text-center text-danger"; 53 | } 54 | $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); 55 | } -------------------------------------------------------------------------------- /assets/js/inewsticker.js: -------------------------------------------------------------------------------- 1 | //Plugin name : inewsticker - jQuery news ticker 2 | //Version : 0.1.0 3 | //Author : mahdi khaksar 4 | //Author website : progpars.com 5 | //Url : http://www.ijquery.ir/effect/inewsticker/ 6 | (function(e){e.fn.inewsticker=function(t){var n={speed:200,effect:"fade",dir:"ltr",font_size:null,color:null,font_family:null,delay_after:3e3};e.extend(n,t);var r=e(this);var i=r.children();i.not(":first").hide();r.css("direction",t.dir);r.css("font-size",t.font_size);r.css("color",t.color);r.css("font-family",t.font_family);setInterval(function(){var e=r.children();e.not(":first").hide();var n=e.eq(0);var i=e.eq(1);if(t.effect=="slide"){n.slideUp();i.slideDown(function(){n.remove().appendTo(r)})}if(t.effect=="fade"){n.fadeOut(function(){i.fadeIn();n.remove().appendTo(r)})}},t.speed);if(t.effect=="typing"){var s=0;var o=0;var u=t.delay_after/t.speed;var a=(new Array(1+u)).join(" ");var f=new Array;i.each(function(){f.push(e(this).text()+a)});count=f.length;setInterval(function(){result=f[o].substring(0,s);e(r).html(result);s++;if(s==f[o].length){s=0;r.appendTo(r).hide().fadeIn("slow");o++;if(count==o){o=0}}},t.speed)}}})(jQuery) 7 | -------------------------------------------------------------------------------- /assets/php/form-process.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cansik17/php-pdo-ecommerce-website/45aa410bcb169149668af3e8151dec76babfd71c/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /configs/backPages.php: -------------------------------------------------------------------------------- 1 | SMTPDebug = 0; // Enable verbose debug output 31 | $mail->isSMTP(); // Send using SMTP 32 | $mail->Host = $SiteEmailHostAddress; // Set the SMTP server to send through 33 | $mail->SMTPAuth = true; // Enable SMTP authentication 34 | $mail->Username = $SiteEmailAddress;; // SMTP username 35 | $mail->Password = $SiteEmailPassword;; // SMTP password 36 | $mail->CharSet = "utf8"; 37 | $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged 38 | $mail->Port = 465; // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above 39 | 40 | //Recipients 41 | $mail->setFrom('xxx@gmail.com', $name); 42 | $mail->addAddress('xxx@gmail.com',); // Add a recipient 43 | $mail->addCC('xxx@gmail.com'); 44 | 45 | // Attachments 46 | // $mail->addAttachment("files/" . $file["name"]); 47 | 48 | // Content 49 | $mail->isHTML(true); // Set email format to HTML 50 | $mail->Subject = $title; 51 | $mail->Body = "gönderen adress : $email".$text; 52 | 53 | $mail->send(); 54 | Header("Location:../index.php?mailSend=ok"); 55 | } catch (Exception $e) { 56 | echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; 57 | } 58 | 59 | 60 | 61 | // $name = safe($_POST['name']); 62 | // $mail = safe($_POST['mail']); 63 | // $title = safe($_POST['title']); 64 | // $text = safe($_POST['text']); 65 | 66 | // $duzenle = $db->prepare("INSERT INTO messages SET 67 | // name=?, 68 | // mail=?, 69 | // title=?, 70 | // text=? 71 | // "); 72 | 73 | // $update = $duzenle->execute([ 74 | // $name, 75 | // $mail, 76 | // $title, 77 | // $text, 78 | // ]); 79 | 80 | 81 | 82 | // if ($update) { 83 | 84 | 85 | 86 | // Header("Location:../index.php?durum=ok"); 87 | // } else { 88 | 89 | // Header("Location:../index.php?durum=no"); 90 | // } 91 | } 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | ?> -------------------------------------------------------------------------------- /configs/pages.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM categories WHERE productType=? ORDER BY id ASC "); 11 | $categories1->execute([$param1]); 12 | $categories1Query = $categories1->fetchAll(PDO::FETCH_ASSOC); 13 | //// 14 | 15 | $param2 = 'ALT GİYİM'; 16 | 17 | $categories2 = $db->prepare("SELECT * FROM categories WHERE productType=? ORDER BY id ASC "); 18 | $categories2->execute([$param2]); 19 | $categories2Query = $categories2->fetchAll(PDO::FETCH_ASSOC); 20 | //// 21 | 22 | $param3 = 'AYAKKABILAR'; 23 | 24 | $categories3 = $db->prepare("SELECT * FROM categories WHERE productType=? ORDER BY id ASC "); 25 | $categories3->execute([$param3]); 26 | $categories3Query = $categories3->fetchAll(PDO::FETCH_ASSOC); 27 | //// 28 | 29 | $param4 = 'AKSESUARLAR'; 30 | 31 | $categories4 = $db->prepare("SELECT * FROM categories WHERE productType=? ORDER BY id ASC "); 32 | $categories4->execute([$param4]); 33 | $categories4Query = $categories4->fetchAll(PDO::FETCH_ASSOC); 34 | //// 35 | 36 | $contracts = $db->prepare("SELECT * FROM contracts WHERE id=? "); 37 | $contracts->execute([1]); 38 | $contractsQuery = $contracts->fetch(PDO::FETCH_ASSOC); 39 | 40 | ///// 41 | 42 | 43 | ///// 44 | $intro = $db->prepare("SELECT * FROM intro ORDER BY id DESC "); 45 | $intro->execute(); 46 | $introQuery = $intro->fetchAll(PDO::FETCH_ASSOC); 47 | //// 48 | ///// 49 | $bestseller = $db->prepare("SELECT * FROM products WHERE status=1 ORDER BY totalSaleNumber DESC LIMIT 12"); 50 | $bestseller->execute(); 51 | $bestsellerQuery = $bestseller->fetchAll(PDO::FETCH_ASSOC); 52 | ///////// 53 | $popular = $db->prepare("SELECT * FROM products WHERE status=1 ORDER BY numberOfViews DESC LIMIT 12"); 54 | $popular->execute(); 55 | $popularQuery = $popular->fetchAll(PDO::FETCH_ASSOC); 56 | //// 57 | 58 | 59 | /*<<<<<<<<<<<<< BACKEND QUERIES >>>>>>>>>>>*/ 60 | 61 | 62 | // Pdo sorgularını burada topladım... 63 | 64 | 65 | $introBack = $db->prepare("SELECT * FROM intro ORDER BY id DESC"); 66 | $introBack->execute(); 67 | $introBackQuery = $introBack->fetchAll(PDO::FETCH_ASSOC); 68 | 69 | // *** 70 | 71 | $contracts = $db->prepare("SELECT * FROM contracts WHERE id=?"); 72 | $contracts->execute([1]); 73 | $contractsQuery = $contracts->fetch(PDO::FETCH_ASSOC); 74 | 75 | // *** 76 | 77 | 78 | 79 | $settings = $db->prepare("SELECT * FROM settings WHERE id=?"); 80 | $settings->execute([1]); 81 | $settingsQuery = $settings->fetch(PDO::FETCH_ASSOC); 82 | 83 | 84 | 85 | 86 | 87 | 88 | ?> -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Bize Ulaşın

7 | 11 |
12 |
13 |
14 |
15 | 16 | 17 | 18 |
19 |
20 |
21 |
22 |
23 |

İLETİŞİM BİLGİLERİ

24 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent urna diam, maximus ut ullamcorper quis, placerat id eros. Duis semper justo sed condimentum rutrum. Nunc tristique purus turpis. Maecenas vulputate.

25 |
    26 |
  • 27 |

    Açık Adres:

    28 |
  • 29 |
  • 30 |

    Telefon:

    31 |
  • 32 |
  • 33 |

    Email:

    34 |
  • 35 |
36 |
37 |
38 |
39 |
40 |

BİZE ULAŞIN

41 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed odio justo, ultrices ac nisl sed, lobortis porta elit. Fusce in metus ac ex venenatis ultricies at cursus mauris.

42 |
43 |
44 |
45 |
46 | 47 |
48 |
49 |
50 |
51 |
52 | 53 |
54 |
55 |
56 |
57 |
58 | 59 |
60 |
61 |
62 |
63 |
64 | 65 |
66 |
67 |
68 | 69 | 70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 | -------------------------------------------------------------------------------- /customerservices.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Müşteri Hizmetleri

7 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 |

Çok Güzel Müşteriye hizmet ederiz hemde çok

21 | 22 |
23 |
24 |
25 |
-------------------------------------------------------------------------------- /editprofile.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |
10 |
11 |
12 |
13 |

Hesabımı Düzenle

14 | 18 |
19 |
20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 |
28 |
29 |
30 | 31 |
32 |
33 |
34 |
35 |
36 |
37 | 38 | 39 |
40 |
41 |
42 |
43 |
44 |
45 | 46 | -------------------------------------------------------------------------------- /homepage.php: -------------------------------------------------------------------------------- 1 |
2 |
    3 | 6 |
  • 7 | 8 |
    9 |
    10 |
    11 |

    12 |

    .

    13 |

    14 |
    15 |
    16 |
    17 |
  • 18 | 21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 | 29 | 30 | 31 | 32 |
33 |
34 |
35 |
36 |
37 |

Öne Çıkan Ürünler

38 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet lacus enim.

39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | 47 | 48 | 49 |
50 |
51 |
52 |
53 | 54 |
55 | 58 |
59 |
60 |
61 | 62 | Image 63 |
64 |
    65 |
  • 66 |
  • 67 |
68 | Add to Cart 69 |
70 |
71 |
72 |

73 |
TL
74 |
75 |
76 |
77 | 80 | 83 | 102 | 105 | 106 |
107 |
108 |
109 | -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |
13 |
14 |
15 |

Hesabına Giriş Yap

16 | 20 |
21 |
22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 | 30 |
31 |
32 |
33 | 34 |
35 |
36 | 37 | 38 | 39 |

40 | 41 |
42 | 43 | 44 | 45 |

46 | 47 | 48 | 49 | 51 |
52 |
53 |
54 |
55 | 56 | 57 |
58 | 59 | -------------------------------------------------------------------------------- /managerLogin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Giriş Formu 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |
25 | 28 | 29 | 38 | 39 | 40 | 41 | 50 | 52 |
53 |
54 |
55 |
56 |
57 |

Yönetici Giriş Formu

58 |
59 |
60 |
61 |
62 | 63 | 64 |
65 |
66 | 67 | 68 |
69 | 70 |
71 | 72 |
73 |
74 |
75 | 76 |
77 |
78 |
79 |
80 |
81 |
82 | 96 |
97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /myprofile.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |
10 |
11 |
12 |
13 |

Hesabım

14 | 18 |
19 |
20 |
21 |
22 | 23 | 24 | 25 | 74 | -------------------------------------------------------------------------------- /placeorder.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT * FROM shoppingcart WHERE cartid = ?"); 17 | $cartQuery->execute([$orderid]); 18 | $cartCount = $cartQuery->rowCount(); 19 | $cartProducts = $cartQuery->fetchAll(PDO::FETCH_ASSOC); 20 | 21 | if($cartCount>0){ 22 | foreach($cartProducts as $cartRows){ 23 | $cartid = $cartRows["id"]; 24 | $cartOrderId = $cartRows["cartid"]; 25 | $cartUserId = $cartRows["userid"]; 26 | $cartProductId = $cartRows["productid"]; 27 | $cartSize = $cartRows["size"]; 28 | $productAmount = $cartRows["productAmount"]; 29 | 30 | $productInfoQuery = $db->prepare("SELECT * FROM products WHERE id = ? LIMIT 1"); 31 | $productInfoQuery->execute([$cartProductId]); 32 | $productRecord = $productInfoQuery->fetch(PDO::FETCH_ASSOC); 33 | $productName = $productRecord["productName"]; 34 | $productPrice = $productRecord["productPrice"]; 35 | $cargo = $productRecord["cargoFee"]; 36 | $productImage = $productRecord["productimage1"]; 37 | $taxRate = $productRecord["taxRate"]; 38 | 39 | $lastPrice = $productPrice + ($taxRate * $productPrice * 0.01); 40 | //} 41 | 42 | $calcTotalProductPrice = ($lastPrice * $productAmount); 43 | 44 | 45 | $cartTotalProductAmount += $productAmount; 46 | $cartTotalPrice += ($lastPrice * $productAmount); 47 | 48 | $cartTotalCargoPriceAccount += ($cargo * $productAmount); 49 | $cartTotalCargoPriceForm = ($cartTotalCargoPriceAccount); 50 | 51 | 52 | if ($cartTotalPrice >= $freeShippingDam) { 53 | $cartTotalCargoPriceAccount = 0; 54 | $cartTotalCargoPriceForm = ($cartTotalCargoPriceAccount); 55 | 56 | $totalPayPriceForm = ($cartTotalPrice); 57 | } else { 58 | $calcTotalPayPrice = ($cartTotalPrice + $cartTotalCargoPriceAccount); 59 | $totalPayPriceForm = ($calcTotalPayPrice); 60 | } 61 | 62 | $orderAddQuery = $db->prepare("INSERT INTO orders (userid, orderid, productid, productName, productPrice, productAmount, cargoFee , productimage1 , size, adressName, adressSurname, addressType, addressDetails, addressPhone, paymentOptions, ccName, ccCardNumber, ccExpDate, ccCVV, orderDate ,orderipAddress) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"); 63 | $orderAddQuery->execute([$cartUserId, $cartOrderId, $cartProductId, $productName, $calcTotalProductPrice, $productAmount, $cartTotalCargoPriceAccount, $productImage, $cartSize, $adressName, $adressSurname, $addressType, $addressDetails, $addressPhone, $paymentOptions, $ccName , $ccCardNumber, $ccExpDate, $ccCVV, $timeStamp , $ipAddress]); 64 | $addControl = $orderAddQuery->rowCount(); 65 | 66 | if($addControl>0){ 67 | $cartDeleteQuery = $db->prepare("DELETE FROM shoppingcart WHERE id = ? AND userid = ? LIMIT 1"); 68 | $cartDeleteQuery->execute([$cartid, $cartUserId]); 69 | } 70 | 71 | $productSaleAmountPlusQuery = $db->prepare("UPDATE products SET totalSaleNumber=totalSaleNumber + ? WHERE id = ?"); 72 | $productSaleAmountPlusQuery->execute([$productAmount, $cartProductId]); 73 | 74 | $stockUpdateQuery = $db->prepare("UPDATE sizetableamount SET $cartSize=$cartSize - ? WHERE productid = ? LIMIT 1"); 75 | $stockUpdateQuery->execute([$productAmount, $cartProductId]); 76 | } 77 | 78 | $cargoPriceProductQuery = $db->prepare("SELECT SUM(productPrice) AS totalPrice FROM orders WHERE userid = ? AND orderid = ?"); 79 | $cargoPriceProductQuery->execute([$cartUserId, $cartOrderId]); 80 | $cargoPriceRecord = $cargoPriceProductQuery->fetch(PDO::FETCH_ASSOC); 81 | $totalPayPriceNoCargo = $cargoPriceRecord["totalPrice"]; 82 | 83 | if($totalPayPriceNoCargo>= $freeShippingDam){ 84 | $updateOrder = $db->prepare("UPDATE orders SET cargoFee = ? WHERE userid = ? AND orderid = ?"); 85 | $updateOrder->execute([0, $cartUserId, $cartOrderId]); 86 | } 87 | 88 | $totalPayPriceUpdate = $db->prepare("UPDATE orders SET totalPayPrice = ? WHERE orderid = ?"); 89 | $totalPayPriceUpdate->execute([$totalPayPriceForm, $cartOrderId]); 90 | 91 | Header("Location:my-orders"); 92 | } 93 | 94 | 95 | 96 | 97 | ?> 98 | 99 | -------------------------------------------------------------------------------- /privacypolicy.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Gizlilik Politikası

7 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 |

İki kişinin bildiği Sır değildir

21 |

22 |
23 |
24 |
25 |
-------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |
13 |
14 |
15 |

Yeni Hesap Oluştur

16 | 20 |
21 |
22 |
23 |
24 | 25 | 26 | 27 |
28 | 29 | 30 |
31 |
32 |
33 | 34 |
35 |
36 | 37 | 38 | 39 |

40 |
41 | 42 | 43 | 44 |

45 | 46 |
47 | 48 | 49 | 50 |

51 |
52 | 53 | 54 | 55 |

56 |
57 | 58 | 59 | 60 |

61 |
62 |
63 | 64 |
65 | 70 |
71 | 75 | 76 | 77 |
78 | 79 | 80 | 81 |
82 | 83 | 85 |
86 |
87 |
88 |
89 | 90 | 91 |
92 | 93 | -------------------------------------------------------------------------------- /shippingmethods.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Gönderim Seçenekleri

7 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 | 23 |
24 |
25 | 28 |
29 |
30 | 33 |
34 |
35 | 38 |
39 |
40 |
41 |
-------------------------------------------------------------------------------- /sitemap.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Site Haritası

7 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 |

Site Haritası Yapım aşamasında idir.

21 |

22 |
23 |
24 |
25 |
-------------------------------------------------------------------------------- /termsofuse.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Kullanım Koşullarımız

7 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 |

Çok Koşulluyuzdur

21 |

22 |
23 |
24 |
25 |
-------------------------------------------------------------------------------- /userAggrement.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

Üyelik sözleşmesi

7 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
20 |

Üyelik sözleşmesi

21 |

22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------