السلام عليكم ورحمة الله وبركاته
اليوم راح اغير نظام الشحن في جميع العاب كونكر علشان يبا اسهل واضمن ويريح الاعب والجي ام
النظام عباره عن
شحن كرت – تخزين العروض – شحن العروض الي بينزله الجي ام – شحن الخصومات – فريق الدعم
هذه اول مدونه انزل الموضوع ده علشان خاطر الاستاذ محمد وحيد وباقي الاعضاء
وفي حجات كتير اتشفوها بنفسك بعيد عن اي اصدار
قبل ما اتكلم علي السكربت السكربت ده موجود علي النت بس بامكانيات ضعيفه جدا جدا جدا ياعني ميعتبرش سكربت
وانا اخذت السكربت وطورته جعلته اكبر سكربت في شحن نزل للعبت كونكر وقرب يسبق لعبة كونكر اونلاين
حقوق المطور @Mohamed Yasser
ربنا وحده يلعم اني بذلت فيه جهد كتير اوووي واشتغلت عليه قرابت 23 يوم
تحميل السكربت بدون اختصار روابط احتراما للقوانين المدونه لكن خارج المدونه اتلقوا باختصار روابط
من موقع الخليج
لو رابط التحميل مش شغال بلغ من هنا
تنبية لو مش عارف تحمل ازاى أضغط هنا وتفرج على الفيديو لطريقة تحميل الملف
بعد فك السكربت ووضعه في www
تركيب السكربت
في ملفات الاسكربت ادخل الي
1 |
Myasser\auth |
وافتح ملف dbConfig
عدل علي الاسطر ده
1 2 3 4 5 6 7 8 |
########## Host information $host = '127.0.0.1'; // Set Database Host $user = 'root'; // Set Database User $password = '12345678'; // Set Database Password ########## Databases $database_name_1 = 'cq'; //Database Game Server $database_name_2 = 'cq'; //Database System STCAC |
ادخل علي موقعك
ضيف ده جنب موقعك
1 |
Myasser/Install.php |
وضيف مثل ما في الصوره مع اختلاف اسم القاعده وكلمة السر
بعد ما تسطبه احذف ملف Install من المجلدات
صور للموقع
كفاية صور لحد هنا
طبعا المنظر ميغركش لان فيه حجات كتير اوووي ومزايات مش اتلقيه في الصوره
ده كان شرح وصور للموقع
ندخل علي داخل اللعبه
في السورس
ادخل علي ملف
1 |
EntityTable.cs |
ابحث عن
1 |
client.Player.ConquerPoints = reader.ReadUInt32("ConquerPoints"); |
فقيه او تحته ضيف دول
1 2 3 4 5 6 |
client.Player.Cupp = reader.ReadUInt32("Cupp"); client.Player.Vipp = reader.ReadUInt32("Vipp"); client.Player.Soulo = reader.ReadUInt32("Soulo"); client.Player.Chip = reader.ReadUInt32("Chip"); client.Player.jingp = reader.ReadUInt32("jingp"); client.Player.Levelo = reader.ReadUInt32("Levelo"); |
في نفس الكلاس ابحث عن دول
1 |
.Set("ConquerPoints", e.ConquerPoints) |
وحط دول فقيهم او تحتيهم
1 2 3 4 5 6 |
.Set("Cupp", e.Cupp) .Set("Vipp", e.Vipp) .Set("Chip", e.Chip) .Set("jingp", e.jingp) .Set("Soulo", e.Soulo) .Set("Levelo", e.Levelo) |
ايجيلك ايروا في الحجات الي حطيته سيبوهم دلوقتي
انحله دلوقتي
في كلاس
1 |
Player.cs |
حط دول
1 2 3 4 5 6 |
public uint Cupp; public uint Vipp; public uint Soulo; public uint Levelo; public uint Chip; public uint jingp; |
كده الايروا اتختفي وكله تمام
في كلاس
Npcs.cs
حط ده
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 |
#region TQ Hazem//01069491122 case 121998: { switch (npcRequest.OptionID) { case 0: { dialog.Text("Welcome In Shop Hazem"); dialog.Option("ColdPrize ", 1); dialog.Option("level 140 ", 2); dialog.Option("VIP 6", 3); dialog.Option("Soul P7 WindWalker", 4); dialog.Option("Soul P7 Bruce_Lee", 5); dialog.Option("Soul P7 ninja", 6); dialog.Option("Soul P7 Monk", 7); dialog.Option("Soul P7 Fire And Water", 8); dialog.Option("Soul P7 Trojan ", 9); dialog.Option("Soul P7 Pirate", 10); dialog.Option("Soul P7 Warrior", 11); dialog.Option("Soul P7 Archer", 12); dialog.Option("CHI ", 13); dialog.Option("jiange ", 14); //dialog.Option("Garment&Mount&Cup", 21); // dialog.Option("Shops", 22); //dialog.Option("SoulsP7", 28); dialog.Send(); break; } case 14: { dialog.Text("Are You Sure To Buy Jiange"); dialog.Option("Yes", 113); dialog.Option("No", 255); dialog.Send(); break; } case 13: { dialog.Text("Are You Sure To Buy CHI"); dialog.Option("Yes", 114); dialog.Option("No", 255); dialog.Send(); break; } case 1: { dialog.Text("Are You Sure To Buy ColdPrize"); dialog.Option("Yes", 100); dialog.Option("No", 255); dialog.Send(); break; } case 2: { dialog.Text("Are You Sure To Buy level 140"); dialog.Option("Yes", 101); dialog.Option("No", 255); dialog.Send(); break; } case 3: { dialog.Text("Are You Sure To Buy VIP 6"); dialog.Option("Yes", 103); dialog.Option("No", 255); dialog.Send(); break; } case 4: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 104); dialog.Option("No", 255); dialog.Send(); break; } case 5: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 105); dialog.Option("No", 255); dialog.Send(); break; } case 6: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 106); dialog.Option("No", 255); dialog.Send(); break; } case 7: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 107); dialog.Option("No", 255); dialog.Send(); break; } case 8: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 108); dialog.Option("No", 255); dialog.Send(); break; } case 9: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 109); dialog.Option("No", 255); dialog.Send(); break; } case 10: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 110); dialog.Option("No", 255); dialog.Send(); break; } case 11: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 111); dialog.Option("No", 255); dialog.Send(); break; } case 12: { dialog.Text("Are You Sure To Buy Soul P7"); dialog.Option("Yes", 112); dialog.Option("No", 255); dialog.Send(); break; } case 20: { client.Player.Teleport(5050, 51, 51); break; } case 113: { if (client.Player.Chip >= 250) { client.Player.Chip -= 250; client.Player.Teleport(3222, 50, 50); } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 114: { if (client.Player.jingp >= 250) { client.Player.jingp -= 250; client.Player.Teleport(3221, 50, 50); } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 100: { if (client.Player.Cupp >= 250) { client.Player.Cupp -= 250; client.Inventory.Add(2100075, 0, 1); } else { dialog.Text("You don't have enough cions Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 101: { if (client.Player.Level == 0 && client.Player.Level < 140) { if (client.Player.Levelo >= 250) { client.Player.Levelo -= 250; client.Player.Level += 140; } } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 103: { if (client.Player.VIPLevel == 0 && client.Player.VIPLevel < 6) { if (client.Player.Vipp >= 250) { client.Player.Vipp -= 250; client.Player.VIPLevel = 6; } } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 104: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(626439, 2152271, 6, 12, 12, 1, true, false);//DragonFan client.Inventory.AddSoul(626439, 2152271, 6, 12, 12, 1, true, false);//DragonFan client.Inventory.AddSoul(101309, 2152252, 6, 12, 12, 1, true, false);//Armor client.Inventory.AddSoul(170309, 2152250, 6, 12, 12, 1, true, false);//Hat client.Inventory.AddSoul(120269, 2152251, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 2152254, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 2152253, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 105: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(626439, 801308, 6, 12, 12, 1, true, false);//SkyNunchaku client.Inventory.AddSoul(626439, 801308, 6, 12, 12, 1, true, false);//SkyNunchaku client.Inventory.AddSoul(101309, 822071, 6, 12, 12, 1, true, false);//Bruce_LeeArmor client.Inventory.AddSoul(170309, 820073, 6, 12, 12, 1, true, false);//Bruce_LeeHood client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 106: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(601439, 800111, 6, 12, 12, 1, true, false);//Katana client.Inventory.AddSoul(601439, 800111, 6, 12, 12, 1, true, false);//Katana client.Inventory.AddSoul(601439, 800142, 6, 12, 12, 1, true, false);//Katana client.Inventory.AddSoul(601439, 800142, 6, 12, 12, 1, true, false);//Katana client.Inventory.AddSoul(135309, 822071, 6, 12, 12, 1, true, false);//ArmorNinja client.Inventory.AddSoul(123309, 820073, 6, 12, 12, 1, true, false);//NinjaHood client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 107: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(610439, 800725, 6, 12, 12, 1, true, false);//Beads // client.Inventory.AddSoul(610439, 800725, 6, 12, 12, 1, true, false);//Beads client.Inventory.AddSoul(136309, 822071, 6, 12, 12, 1, true, false);//ArmorMonk client.Inventory.AddSoul(143309, 820073, 6, 12, 12, 1, true, false);//CapMonk client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 108: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(421439, 800522, 6, 12, 12, 1, true, false);//BackSword client.Inventory.AddSoul(620439, 800522, 6, 12, 12, 1, true, false);//ImperialBacksword client.Inventory.AddSoul(619439, 801104, 6, 12, 12, 1, true, false); client.Inventory.AddSoul(134309, 822071, 6, 12, 12, 1, true, false);//ArmorFire client.Inventory.AddSoul(114309, 820076, 6, 12, 12, 1, true, false);//CapFire client.Inventory.AddSoul(152279, 823060, 6, 12, 12, 1, true, false);//Bracelet client.Inventory.AddSoul(121269, 821034, 6, 12, 12, 1, true, false);//Bag client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 109: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(480439, 800111, 6, 12, 12, 1, true, false);//Clup client.Inventory.AddSoul(614429, 800111, 6, 12, 12, 1, true, false);//ShadowCrossSaber client.Inventory.AddSoul(614429, 800111, 6, 12, 12, 1, true, false);//ShadowCrossSaber client.Inventory.AddSoul(410439, 800111, 6, 12, 12, 1, true, false);//Blade client.Inventory.AddSoul(420439, 800111, 6, 12, 12, 1, true, false);//Sword client.Inventory.AddSoul(130309, 822071, 6, 12, 12, 1, true, false);//ArmorTrojan client.Inventory.AddSoul(118309, 820073, 6, 12, 12, 1, true, false);//CapTrojan client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 110: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(611439, 800811, 6, 12, 12, 1, true, false);//Rapier client.Inventory.AddSoul(612439, 800810, 6, 12, 12, 1, true, false);//Pistol client.Inventory.AddSoul(139309, 822071, 6, 12, 12, 1, true, false);//ArmorPirate client.Inventory.AddSoul(144309, 820073, 6, 12, 12, 1, true, false);//CapPirate client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 111: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(624439, 801216, 6, 12, 12, 1, true, false);//SkyNunchaku client.Inventory.AddSoul(624439, 801216, 6, 12, 12, 1, true, false);//SkyNunchaku client.Inventory.AddSoul(560439, 800215, 6, 12, 12, 1, true, false);//Spear client.Inventory.AddSoul(900309, 800422, 6, 12, 12, 1, true, false);//Shield client.Inventory.AddSoul(131309, 822071, 6, 12, 12, 1, true, false);//ArmorWarrior client.Inventory.AddSoul(111309, 820073, 6, 12, 12, 1, true, false);//CapWarrior client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 112: { if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; client.Inventory.AddSoul(613429, 800917, 6, 12, 12, 1, true, false);//Knife client.Inventory.AddSoul(613429, 800917, 6, 12, 12, 1, true, false);//Knife client.Inventory.AddSoul(500429, 800618, 6, 12, 12, 1, true, false);//Bow client.Inventory.AddSoul(133309, 822071, 6, 12, 12, 1, true, false);//ArmorArcher client.Inventory.AddSoul(113309, 820073, 6, 12, 12, 1, true, false);//CapArcher client.Inventory.AddSoul(120269, 821033, 6, 12, 12, 1, true, false);//Necklace client.Inventory.AddSoul(150269, 823058, 6, 12, 12, 1, true, false);//Ring client.Inventory.AddSoul(160249, 824018, 6, 12, 12, 1, true, false);//Boot } else { dialog.Text("You don't have enough coins Point"); dialog.Option("Sorry", 255); dialog.Send(); } break; } case 28: { client.Player.Teleport(1998, 294, 285); break; } } break; } #endregion #region mohamed yasser case 5681119: { switch (npcRequest.OptionID) { case 0: { dialog.Text("You want Exit."); dialog.Option("Yes I Want.", 1); dialog.Option("No I Want.", 255); dialog.Send(); break; } case 1: { client.Player.Teleport(1200, 344, 445); break; } } break; } #endregion #region mohamed yasser case 5681120: { switch (npcRequest.OptionID) { case 0: { dialog.Text("You want Exit."); dialog.Option("Yes I Want.", 1); dialog.Option("No I Want.", 255); dialog.Send(); break; } case 1: { client.Player.Teleport(1200, 344, 445); break; } } break; } #endregion |
تعالوا نفهم معني الانبي سي ده بدل ما تحطوا الانبي سي وانتم مش فاهمين معناها
نبداء الاول لنقاط الvip
1 2 3 4 |
if (client.Player.Vipp >= 250) { client.Player.Vipp -= 250; client.Player.VIPLevel = 6; |
ال250 نقطه ده تجيبهم عن طريق شحن الvip من الموقع
ياعني انت لو شحنت الفي اي بي من الموقع ايوصلوا للعبه علي نقاط
النقاط تبدله بالفي اي بي
شفتوا مفيش اسهل من كده العب يحشن مع نفسه من غير ما يكون الجي ام موجود
والجي ام يقدر يتحكم في الشحن بالكامل من التليفون حتي لو كان في القطب الشمال
1 2 3 |
if (client.Player.Soulo >= 250) { client.Player.Soulo -= 250; |
ده نقاط الصول الي الانبي سي يديك صول مكان النقاط نفس الحكايه الفي اي بي وحكايه الباقين
اكيد كده كل حاجه بقت مفهومه
لسه عندكم نقاط الكاس ونقاط الفل ونقاط التشي ونقاط الجانج طبعا دول انا الي حاططهم علي حسب الي لقيت الشحن ليهم
كده احنا خصلنا من السورس
نيجي للقاعده
في ملف
1 |
entities |
اضغط كلك يمين علي الملف وختار ثالث اختيار
ودوس علي كلمة اضافه
وضيف دول في القاعدة
وشغل اضافة الانبي سي في القاعده عليكم
معلومه هامه جدا
بالنسبه للاصدار ده في حاجه لازم تعملوها يدوي واتعملوها مره وحده فقط
لما تيجي تعمل عروض ايتمات من لوحة تحكم الادمن كل حاجه اتبا تمام لكن في حاجه
انك محدتش العرض ايشحن اي ايتم بالظبط فعلشان كده انت لازم تروح القاعدة تعدل علي العرض
ياعني بكل بساطه انك لو عايز تشحن عرض كاس اتحط نقاط ذي ما موضح في الصوره
لو الكاس مثلا ب50 جنيه اتحط 50 في الخانه
وترجع تظبطه في الانبي سي
لكن السي بي والجولد شغالين بدون مشاكل وبالتوفيق
كده انا خلصت كل حاجه
تحذير ! عدم تغير حقوقي لو شفت الموضوع اتنقل والحقوق متغيره لاي منتدي او مدونه مش انزل اي اسكربات لكونكر
انا معنديش اي مشكلة انكم تشاركوا الموضوع لاي منتدي لكن متغيروش الحقوق والله العظيم انا تعبت اوووي علشان اقدر اخلي السكربت ذي مانت شيفين
مع احترامي للجميع لو الحقوق اتغيرت مش انزل موضيع مثل هذا
انا نزلت الموضوع قبل العيد لاني عارف الكل ايبا مشغول وبالاخص الاستاذ محمد وحيد ومش ايبا فاضي للمدونه ههههههههههه
اي حاجه محتاجينه تواصلو معي علي صفحتي للاسكربات لان الخاص في صفحتي للاصدقاء فقط مش لعام
واتمني من الكل فضلا وليس امرا ضغط اعجاب لصفحه ومتابعه لرفع الروح المعنويه
كل سنه وانت طيبين
12 تعليق “سكربت شحن المتطور”
انا ثبيت البرنامح والقاعده تمام بس مش عارف ادخل ع الصفحه بتاعه المتجر
بعد ما تخلص تثبيت امسح ملف instell
وفي ملف ناقص بس انا منزل حله في الصفحه اسكربات حازم علي الفيس بوك ويبا شوفه علشان تقدر تشغله
دخلت بيانات السيرفير ومسحت الملف وافتح الموقع بتاعي http://95.216.168.16/Myasser/
يجبلي الرساله ديCouldn’t make connection (1).
لازم تثبت السكربت الاول
علشان تثبته اتعمل كده
Yourdoman/MYasser/instell
اتحط الدوين بتاعك بدل yourdoman
وادخل المعلومات
اي حد عايز اي حاجه بخصوص موقع الشحن يجي لصفحة الاسكربات ويراسلني وان شاء الله احل مشكلته
فعلا قاعدة الكوينز مش موجوده لكن انا ناشر علي صفحة السكربت الحل انت لو متابع صفحة السكربت مش اتواجه اي مشكلة
هو المفروض لما عوذ اضيف كوينز لحد اضفها فين اذا كان انت مش منزل قاعدة الكوينز
لحل مشكلة Couldn’t make connection (1).
في مجلد السكربت اذهب الي
Myasser\auth
ثم افتح ملف dbConfig
وعدل علي بيانات القاعدة في الملف
بعد ما بدخل بينات السيرفر وامسح مجلد install واجى افتح الموقع مبيرداش بيجبلى الرسالة دى
Couldn’t make connection (1).
شكرا يا استاذ محمد بس في حاجه بسيطه نسيت اضيفه
كلمة فك الغضط للملف
MohamedYasser
كلمه سر فك الضغط ايه ؟
لا لا لا الشغل دا عاااالي قوي اوبا بقا رائع رائع يا محمد ولا اروع من كدا تسلم ايدك