Search results

  1. marshian

    Which Linux would work best for me?

    When you're trying a live cd, your pc will be slowed down because you have to read everything from a cd. (Which is slower then a hd.) So don't think your pc isn't good enough for Ubuntu if it is slow with the live cd. (I've used a live cd myself too, on a pc with 2 1.83 GHz processors, a 250 GB...
  2. marshian

    random image

    Supposing your images are in "imagedir", code has to be inserted instead of the <img> tag of the random image. This script does NOT output an image, it just gives you an <img> tag with a random src attribute.
  3. marshian

    My site doesn't work in IE but looks fine in FF...help?

    Yes, that's a really good suggestion from VPmase, and you've found one of the errors too :s Let's continue the list: The type="text/css VPmase already mentionned. A style element HAS to be inside the head. A link element has to be inside the head too. You're only allowed to use 1 body tag...
  4. marshian

    4 GB RAM Necessary / Is this RAM compatible?

    not on a 32-bit OS, as it can't fully use that 4 gig... basicly putting 4 gig in a 32-bit OS is wasting .5 gig ram
  5. marshian

    Phpbb3/database question

    Database type: probally MySQL Server hostname: localhost Server port: not required Database name: imthe1_forum Database username: imthe1_user1 Database password: your password
  6. marshian

    Adding to .php

    Well, if you're using a form with method GET, the data that's entered is added to the query string. For example: <form action="form.php" method="post"> <input type="text" value="value1" name="input1" /> <input type="text" value="value2" name="input2" /> <input type="submit" value="submit" />...
  7. marshian

    Problem with google sitemaps

    Ok thanks, I'll do that. =)
  8. marshian

    Problem with google sitemaps

    I've tried to send my sitemap to google using the webmaster tools. I've registered (and verified) my domain (www.marshian.uk.to) without problems... And yet, every time I try to send my sitemap (sitemap.xml), I get "General HTTP-error: domain name not found" and yet I'm 100% certain I've send...
  9. marshian

    Append XML File using PHP

    Here's some information about php & xml, but as tnl2k7 already said, it is MUCH easier with MySQL. http://nl3.php.net/manual/en/book.domxml.php
  10. marshian

    Mysql down? Or is it on a different server?

    I know he's not using mysql_connect(), but he should! It's the official php-command to connect to mysql.
  11. marshian

    Mysql down? Or is it on a different server?

    use mysql_connect("localhost", "username", "password")...
  12. marshian

    website url not showing properly

    You have to remove that "url frame redirect" and change the NS of that domain to "ns1.x10hosting.com" as primary and "ns2.x10hosting.com" as secondary dns servers. (You might want to check on that ns urls, because I'm not really sure of them.) Then (when the nameservers have updated, 1~48h...
  13. marshian

    Connecting a site

    What are you talking about? Links?
  14. marshian

    CSS or Javascript?

    What is supported in more browsers CSS/JS? They're both supported by the most browsers, a lot of them not keeping to the standards, but they still got something... But an advantage of CSS over JS is that it's possible to turn JS off, which a lot of people do to protect their pc. This would cause...
  15. marshian

    Want help with Index.html

    If you've messed everything up and want to start again, just delete everything in the /public_html/ directory. (Note: that won't give you that origional index page of x10, but you don't need that anyway.) Usually when you go to yourdomain.com, you'll get the page yourdomain.com/index.html (or...
  16. marshian

    Issue in IE 8 Beta 1

    I must agree with the above, I currently have both internet explorer 8 and firefox 3. I used to use ie, but after I used firefox a couple of times for testing purposes, I had to admit it was better, so I just moved to firefox instead of ie... now ie is for testing purposes (version 8 because it...
  17. marshian

    [Game Programming] Highlander

    We could use x10Exchange for that, but I'm currently suspended so I can't do a lot at the moment... Edit: I can get a free second level domain name such as www.highlander.uk.to (that one is available, currently pre-registered by me) and if we want to attrackt ppl, we need to change something...
  18. marshian

    url-rewrite HELP :-(

    hmm, i was a little confused with the [R] tag xD thought so about the other cases, but i wasn't aware of any solution, and i didn't know anything about possible multi-statement usage
  19. marshian

    MySQL error

    Dude, problem solved is problem solved. If it works, then why start complaining about errors in code that's not even included? That's kinda annoying imo...
  20. marshian

    url-rewrite HELP :-(

    I'm not sure this is exactly what you want, but it's worth the shot =) By the way, I'ld drop the [L], it's nicer to have a url without query part ;-) (also makes more search engines index that pages) RewriteEngine On RewriteRule ^category/(.*)/(.*)$ /category.php?id=$1&page=$2
Top