Search results

  1. M

    CSS Help needed

    Not the vertical space. Vertical sizing has different rules than horizontal sizing. While block level, flowed elements with a width of "auto" generally expand to take whatever horizontal space the parent makes available, floating and flowed block elements will mostly wind up with height based on...
  2. M

    Help Me in Coding

    W3Schools has some good tutorials, some bad. I can't recommend it. The PHP+MySQL tutorial is particularly problematic. Tizag is a little better overall, but still flawed in spots. The proper approach is to lean to program, then learn PHP.
  3. M

    Ghost Players

    Post another set of URIs for problem games and the current code, and I'll take a look.
  4. M

    Cpanel and FTP no access

    There isn't a wait period for FTP, but it can take up to 48 hours for the updated domain records to take affect. As of this post, the records for deareveryone.co.cc point to lotus, so you should be good on that account. You might need to flush your local DNS cache (if you run a Windows OS, click...
  5. M

    Ghost Players

    Try the tags rather than [code] when posting PHP. It will colorize your code, making it easier to read and spot certain errors. One area to focus on when cleaning up is the ranking logic. See if you can write a more logical breakdown, reworking it into higher-level tasks that will be...
  6. M

    CSS? - background color doesnt stay the same

    Makes sense, as both are WebKit based. Did you try setting the background on html?
  7. M

    Torrents?

    Note that the policy doesn't leave you out in the cold. If your site is for your music or artwork in general, you can host the music; just be careful you don't go over your bandwidth and file quotas. You can also store the music on another site and link to it, including using another site as the...
  8. M

    CSS? - background color doesnt stay the same

    Tried it in Chrome and got white at the bottom. Resized the window, and it went away. As odd as it sounds, it makes me suspect a bug in WebKit. When I inspected the document, I notice that the area that is sometimes painted white is outside the rendering area of the <body> element. I also...
  9. M

    CSS Help needed

    #posts .post .left refers to the one element that matches the selector, as opposed to #posts, .post, .left, which would match multiple. Sorry for taking the short-'n'-unclear route. Perhaps I'll user #posts>.post>.left to emphasize that I'm using a selector. Ah, but it does. Not clearing the...
  10. M

    CSS? - background color doesnt stay the same

    Firefox 3.5 and Safari 4.0.4 also work fine. OP, please report your browser, including version. Screencap? Do you need to refresh a bunch of times in order to see the issue? Perhaps you're running into a browser bug or style flash.
  11. M

    How to get ASP.Net to work with MySql at x10Hosting

    The server name should be "localhost"; a search on the forums turns up many threads containing this information (admittedly, alongside threads that don't have the information with that particulary query).
  12. M

    CSS Help needed

    I'm not seeing why. #posts .post .left is floated, and the parent doesn't use faux-columns.
  13. M

    MySql + ASP.net Connections problem..

    Since X10 runs a Linux distro rather than a version of Windows, it has to use Mono for ASP.Net support. Read the thread "ASP.NET 'DllNotFoundException: gdiplus.dll'" for more info.
  14. M

    CSS Help needed

    For reference, other ways of clearing floats. Appending the ".bak" extension causes browsers to download the files rather than display them. You might want to put the ".bak" before the other file extension. Are you referring to a two-column layout? That is, vertical expansion so both columns...
  15. M

    Returning javascript with php

    The difficulty with XHR is that (as far as I know) there's no cross-browser way of sending files using it. You can get XHR to send files in Firefox, but it requires changing the configuration settings, which a) makes FF less secure and b) requires too much from users, in terms of both comfort...
  16. M

    Bandwidth stats from inside VPS?

    HyperVM provides a web API, though I'm not certain if the name ("Traffic") you see on the main panel is the resource name used in the API.
  17. M

    Bandwidth stats from inside VPS?

    One option would be to use netstat to get interface statistics. Two potential problems are that the stats are in terms of packets rather than bytes (on Linux; Windows should be fine on this count) and they're measured from system start. The latter is what makes netstat a poor tool for the job...
  18. M

    Ghost Players

    Whoops... forgot about this for a bit. Use file_get_contents rather than file+implode. "\s" is safer than a plain space character because "\s" will also match tabs. Since you never go through most of the lines, this is wasteful. Since you only seem to be using it to look for "LOSS" and "WIN"...
  19. M

    Ghost Players

    On that page, there is no "vanwilder". There's an "Equinox" who is listed with a loss and "BiBiFox[iS]" and "VaRioLa-" with wins--are you referring to one of them? If so, which one? In some places in the code, names used mixed case. In others, the same names are lower case. You should always...
  20. M

    Returning javascript with php

    I believe you're looking for AJAX. In particular, load upload-file.php in a hidden iframe, and set the target of the form to the iframe's name.
Top