Search results

  1. garrettroyce

    thank you!

    thank you!
  2. garrettroyce

    Thank you!

    Thank you!
  3. garrettroyce

    ?? Fatal error: Class ' _error' not found in

    what software are you using? PHPBB?
  4. garrettroyce

    MySQL access denied...

    ;) No problem
  5. garrettroyce

    PHP mysql_query failure

    Just to be sure, try doing this: if($result === false) { .... I don't think resources should ever evaluate to "false" but I know that strings will evaluate to either true or false based on their contents, so maybe this is a similar type of situation? Edit: Try this too, put an actual error into...
  6. garrettroyce

    PHP mysql_query failure

    I'm sure you thought of this, but just to make sure, does "table" exist in your database? Does "user" have select permissions on "table"? Is there any data in "table"?
  7. garrettroyce

    PHP mysql_query failure

    localhost needs to be in quotes: 'localhost' Is your table named 'table" ? This is probably a problem. You're using a reserved word for a table name. You can probably get around it by quoting 'table' but table is a bad name regardless. It's not descriptive of what's in the table and it's...
  8. garrettroyce

    Bing

    This is, after all, off topic ;) I think it's alright. I'd like it better if it wasn't named "bing"
  9. garrettroyce

    Using Java with MySQL on x10

    That's what I like to hear :)
  10. garrettroyce

    MySQL access denied...

    No. Remote access is denied by the server firewall. All incoming requests on port 3306 (mysql) will be blocked. I think you have a different problem though. If you are using localhost as the server, you are saying that mysql and the file are on the same server, which is not blocked. The error...
  11. garrettroyce

    site's gone bonkas

    I'm not sure. You can probably restore it using the R1soft backup.
  12. garrettroyce

    Using Java with MySQL on x10

    Yeah, that wouldn't be an issue at all. You'd have to dynamically generate the param with server side scripting, unless it's possible to use javascript to change the parameters and then restart java, but I have no idea if you can. You can probably also save if you can use java to set $_GET or...
  13. garrettroyce

    Would you give up cPanel for better uptime?

    I just signed up for my free account, as I closed my old one, and I am on cossacks. It has been excellent. The FTP was a little slow for about 5 minutes yesterday, but I haven't noticed any other problems yet. Corey is the MAN!
  14. garrettroyce

    IQ tests

    Ha, good question. Guess it was an IQ test in and of itself :P Guess I failed :(
  15. garrettroyce

    Would you give up cPanel for better uptime?

    Yeah for sure. I was on Stoli in the bad old days. You'd never have to edit a text file to configure Apache. The danger of the average user messing up Apache would be way too huge. Apache simply will not run if there is even a syntax error in the config, let alone a really harmful error. There...
  16. garrettroyce

    Whoa, the forum have Quick reply function, did you see that?

    I don't think I've ever used the "post reply" button in favor of the quick reply.
  17. garrettroyce

    x10 Rewards?

    Isn't it the same as a regular free gmail?
  18. garrettroyce

    Using Java with MySQL on x10

    I'm guessing that the .pgn file is a perl script that feeds the data to java. You probably could use PHP for this as well. Again, I'm no java expert but what I think is happening is java is accessing that file with those parameters and it returns the information in text format that is parsed by...
Top