Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. So what will happen when the loading image is loading?
  2. That's a pretty stupid argument. Most computers come with a couple of card games installed; why bother installing any other games? Windows computers come with IE pre-installed; why bother installing firefox? Because you prefer it you say? Yeah, but, IE was already installed... Like it or not, that's how some people think. I believe The Little Guy was being sarcastic.
  3. It's up to the client how they will handle RSS data. Firefox formats it and gives various ways to subscribe to the feed for instance.
  4. Waste of system resources. I don't run that and I haven't got any problem at all. Just don't click everything you see and don't use IE and then you'll be perfectly fine.
  5. It's spelled "cache".
  6. What's wrong with the bookmark feature in your browser?
  7. Try to take a look at strtotime() and date().
  8. How about when you view the source of the outputted XML?
  9. I should ban you for using IE6
  10. Heh... it was only on because I didn't know about it.
  11. Are you sure it'd work with cat? What about the headers?
  12. I've disabled that bbcode now. It's the most annoying tag (sharing it's 1st place with blink).
  13. Yes, they're deleted. Most of the posts where messed up with the formatting anyways. The old database is still fully intact and I have a complete dump on my laptop as well though.
  14. You'll have to create the .htaccess in the directory you want things to apply in.
  15. In httpd.conf or .htaccess
  16. You could check the PHP source to see what it's called internally.
  17. How does your sitemap look?
  18. Couldn't you have it shipped from the US?
  19. I hate Drupal and Joomla! (who puts punctuation in their name anyways?) because not only do I think they're horrible scripts, but you will probably have to modify a lot of code so you could've just started with a good framework like Zend Framework. I also agree with tibberous's point.
  20. I've seen that error numerous times. There is an option in the admin panel called "Encrypt stored filenames" and the help text is I tried turning that on once, but then it broke all the existing attachments and avatars so I had to turn it off again. I just checked the attachment directory and files do have plain text names. I guess SMF just isn't that good. Unfortunately, you will just have to rename the file and try again. You could also try to persuade the SMF team to fix it. There is not much we can do from here.
  21. Not at all. Otherwise I would've never suggested it
  22. How about this? It would be a factory implementation. abstract class Theme { static public function factory($type) { $class = $type . 'Theme'; if (!class_exists($class)) { throw new Exception("Theme doesn't exist"); } return new $class; } } class SevenAreaTheme extends Theme { // bla bla }
  23. Just rewrite it: $sql = "UPDATE stylists SET firstname='{$firstname}', lastname='{$lastname}', [...]";
  24. Store a number somewhere and increment it each time somebody loads the page.
  25. The query is completely malformed and the quotes are screwed up. Try to echo the query and you'll see what I mean.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.