Aller au contenu
Règlement du forum ×

Darkvader

Membres
  • Compteur de contenus

    255
  • Inscription

  • Jours gagnés

    1

Tout ce qui a été posté par Darkvader

  1. Could you elaborate on what you are trying to do?
  2. kzelda should've encoded his DB in UTF-8 instead of CP1256 in the first place. UTF8 is becoming the norm, but he can convert it any time he wants with ICONV.
  3. There is an add-on for that if your vbulletin is licensed.
  4. Darkvader

    Algérie 2 - Zambie 0

    I thought people strive to change for the better.
  5. Darkvader

    Algérie 2 - Zambie 0

    Drinking alcohol I thought Algeria was a Muslim country? back in 1987 when I visited last time, I heard that people needed to hide to be able to drink beer. Well, I guess I missed the boat of globalization.
  6. Having been to developer parties before, which are similar to install parties or install fest, I would suggest you offer free refreshments like coffee, pizza, drinks...anything, and you'll see people coming from left and right like bees around a hive. Like they say "Food has the greatest influence on the condition of men" Good luck and keep up the good work.
  7. find your connection string in the code modify it to add the Charset like this in C#: MySqlConnection c = new MySqlConnection("DataSource=localhost;Database=test;UserID=root;Password=;PORT=3306;[color=Red]charset=utf8[/color]")[font=verdana] I highlighed the charset in red. Good luck. [/font]
  8. are you having a problem inserting or retrieving data? you probably need to specify the right encoding in your connection string. Also what connector are you using? is it MySQL connector and what version?
  9. Are you going to resort to tinkering every time something doesn't work? As a best practice for you is to try to understand why something is not doing what is supposed to do. I suggested you post the code behind but you are refusing, I just don't know why.
  10. You've been reading too much about bing . Anyway, could you post the code that posts back the form? the code you posted seems fine to me, but I think the culprit is in the code that posts the page back.
  11. now I understand le bing = postback, I should be able to help you once I see the code.
  12. Sorry but I don't understand what "le bing" means, apart from that, could you post the code behind so we can see what you're trying to do? Thanks
  13. You would use the same configuration steps for local network to configure a global DNS, the only difference is the root.hint file. Every recursive or caching DNS installation needs a pre-loaded file containing the addresses of the 13 Root servers so it can perform recursive lookups for clients. The root hints file that a DNS server use depends on the administrator, some enable Alternate root servers which are not supported by lots of ISPs, and some use the Open Root Server Netwook based in Europe (Which I think closed), but the majority of DNS server use the default root.hints file shipped with DNS software like (BIND, MSFT DNS Server...etc), that file is identical to the root.hints file published by IANA. When a DNS server starts up, it has to find the root servers that sit at the top of the name delegation chain (TLD, "Top Level Domain"), once found it caches it for processing. Running a DNS server is pretty expensive, it involves multiple servers that run either opensource DNS software like BIND9 or other commercial software. Most of DNS companies that offer commercial service use commerical software like Nominum for high availability and reliability. Hope this help in what you're looking for.
  14. Darkvader

    Team Msc

    How else will they be able to do it? it is obvious, XBOX has a proprietary MSFT software, that means you need to dump the firmware and reverse engineer it, there are no API's except the ones that MSFT will expose for you. I don't know what these so called xbox hackers are trying to do, but there are tones of them online so why recreate the wheel? Just join a group and try to help. BTW, once you tinker with the firmware you loose your warranty.
  15. Darkvader

    Team Msc

    I think they are looking for PHP, JAVA and MySQL coders.
  16. Darkvader

    iphone webdav

    Unfortunately, dropbox doesn't have a webdav access and I don't think they are planing to have one in a near future. https://www.getdropbox.com/help/62
  17. I agree, this one should work, only when you do t.Start(), but in case of Zaki's code which is t.Start(client), your code will throw an exception because it needs a matching parameter.
  18. Darkvader

    Aide en C

    lol. Drag and drop programming is already here. As for me losing my job, don't worry, there are plenty of dishes to be washed in some restaurants.
  19. Darkvader

    Aide en C

    What's wrong with C#? it is a great language, you don't have to build everything from scratch, and certainly you don't have to reinvent the wheel, so don't feel offended by Tixxdz remarks. C# is a subset of C++ which is a subset of C.
  20. Darkvader

    Aide en C

    strcpy "String Copy" copies the string "wget " into param, and then it concatenates param and c (wget + c) with strcat (String concat). You can find all these instructions and more online.
  21. Darkvader

    Aide en C

    or try this one if mouradski's solution doesn't work. else { printf("Téléchargement des liens : \n"); while(fgets(c, 80, fr)!=NULL) printf("%s",c); char param[80]; strcpy(param, "wget "); strcat(param, c); system(param); }
  22. This is most likely a hard drive issue, some of them are not recognized by the kernel. Getting the latest ubuntu version might fix it.
×
×
  • Créer...