Search results

  1. xPlozion

    [REQ][250 credits]switching content with mySQL

    I'm sorry, on that line, there shouldn't be a LIMIT 1. Remove that and it should be good. The only other possible thing that woud screw it up were quotes and apostrophes, which were both properly converted to avoid problems... ;) -xP
  2. xPlozion

    What kind of games do you play??

    FPS Rainbow Six 3 is the best in the franchise, but isn't that popular anymore :-/ currently plaing Vegas 2. Racing such as Forza and MotoGP :) I play Rockband sometimes, but most of my library is centered around Tom Clancy games (Rainbow Six, Ghost Recon...) currently waiting for Operation...
  3. xPlozion

    which is better xhtml or html, javascript or ajax

    You are right. It's highly recommended, but it's not required. Also, W3C does not complain about it not being there, but the source code of w3's page contains that on top.
  4. xPlozion

    Anyone know how to install phpbb3 ?

    so you put the host as your domain name, the username as your cpanel username and your password as your cpanel password? if you did, then check the FTP Accounts in cPanel to see if there's one there... I'm sorry it's taking longer than expected to get it started :'(
  5. xPlozion

    Anyone know how to install phpbb3 ?

    The filemanager in cpanel will take a while to upload all of the files associated with phpbb... a good (free) ftp client to use is FileZilla. You should be able to upload all of the files from there.
  6. xPlozion

    [REQ]Fix This Code - 500 credits

    [edit] should have tested it before hand, currently working on a fix :) this puts it all on the same line, just alter your margin-top in .temp to push all the links down to where you want them to display ;) <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"...
  7. xPlozion

    Anyone know how to install phpbb3 ?

    Well, if you're using Windows, open up Internet Explorer, and type ftp://cpuser:cppass@yoururl into your address bar, changing the username, password and url to match yours. That will make internet explorer turn into an ftp client. Alternatively, if you have an ftp client other than internet...
  8. xPlozion

    Anyone know how to install phpbb3 ?

    Fantastico only has phpBB2.x. The only way to get phpBB3 is to install it yourself :/ If you are getting a blank page, then take a look at this thread
  9. xPlozion

    Cannot connect to database

    Glad you figured it out. Always here to help out :)
  10. xPlozion

    Anyone know how to install phpbb3 ?

    If you haven't already done so, upload the conents in phpBB3 to a directory in your account (/forums/, /phpbb/, etc...), and and from there, go to /install/ (if you uploaded it to /forums/, then it'll be /forums/install/). make sure you create a mysql username and a database, add the user to the...
  11. xPlozion

    [REQ][250 credits]switching content with mySQL

    OK, not too hard. The biggest problem I may have when coding it is properly inserting/reading the html in the database without screwing anything up. Also, make sure that the row, `id` is set to auto_increment :) <?php // Display gcode if ?id=# exists and only contains numbers... if...
  12. xPlozion

    how to get copyright

    AFAIK, anything that you create you get copyrights to. I was reading up on this topic several years ago. Along with trademark, as long as somebody hasn't used it first. Registered trademark on the other hand, you have to go through a process.
  13. xPlozion

    Javascript Confirm dialogue box help please

    If you're using Firefox, I would highly recommend getting 2 extensions if you don't already have them. Web Developer toolbar and Firebug. They are indispensible extensions that can properly debug javascript. Web deveoper can show you if there's any errors in the javascript and firebug, you...
  14. xPlozion

    which is better xhtml or html, javascript or ajax

    IMO, XHTML is much easier to maintain and has cleaner code than HTML. All elements <p></p> must be lowercase, and you must close EVERY tag you open. <img src='http://www.blah.com/img.jpg' alt='Blah' /> As far as converting from HTML to XHTML, it's not that hard. Also, try to set your...
  15. xPlozion

    PHP - Sessions Not Registering - Internet Explorer

    I don't think it's Internet Explorer, since $_SESSION is completely server based, where cookies are client based. Can we see some more code, cause there could be an underlying problem in your script causing this to happen... -xP
  16. xPlozion

    Cannot connect to database

    Did you add the user you are connecting with to the database?
  17. xPlozion

    whats wrong?

    try this and see what you get: <?php mysql_connect("localhost", "mysql_user", "mysql_password"); mysql_select_db("database"); $result = mysql_query("SELECT * FROM table1"); if ($result) { $num_rows = mysql_num_rows($result); echo "$num_rows Rows\n"; } else { echo "bad " . mysql_error(); }...
  18. xPlozion

    free os

    I had ArchLinux running XFCE (but I would have rather had OpenBox if it weren't for it being my dad's computer) on a really old Pentium II (Klamath @ 233MHz). It was originally installed with Windows 95 (beat that). It was a Gateway 2000 G6-233 :P Beat that ;), although Slackware (which is...
  19. xPlozion

    Need help installing pastebin

    I just downloaded pastebin's code, and reading over the INSTALL instructions, you need to do a few things (ignore the VirtualHost as it is for if you are setting up apache (which you do not need to do as cpanel takes over that role). Assuming that you are going down the MySQL road, only these...
  20. xPlozion

    plese unban admincp.php scirp

    Please forgive me if you are not fluent in English, but I could barely make heads from tails in your message. I don't think that the script is banned per se, but there could be a fatal error in executing it, which doesn't show up (due to error reporting being turned off). Also, because I am...
Top