Search results

  1. xPlozion

    error pages

    From what I was told, if you are using a free account, then the 404 error page cannot be set to your own. They have it setup so afaik that's another way they get revenue from the free accounts to afford the server costs, but all of the others (403, 500) can be set as your own. -xP
  2. xPlozion

    I need a simple encryption algorithm

    well, if you're just trying to hash a simple captcha image, then str_replace with a simple hash database should do just fine ;). also, by the looks of it, you've just added a string to the end of the code. although that may work, the rest of the captcha code is unencrytped and could be...
  3. xPlozion

    [REQ][20-40 points] Who can edit this image?

    I wasn't accusing you of stealing, i was just suggesting that since you wanted it done by others, and you only had a png to provide, that you did not have a master psd or similar file. it was only a comment towards "what font is this". also, props to themcman1 for a nice looking banner ;) +1
  4. xPlozion

    Hash? Or something similar..,

    after taking a look at php.net, base64_encode and base64_decode might be your best bet. although I don't know for a fact, as I have never used any of the encryption methods posted, except for md5() and sha1()... -xP
  5. xPlozion

    Hash? Or something similar..,

    well, if it doesn't matter how long it is, you can use openssl_private_encrypt and openssl_public_decrypt. Another way of doing it is by taking a look at mcrypt. mcrypt_encrypt and mcrypt_decrypt -xP
  6. xPlozion

    IE spanish characters

    here's a silly question. although i don't use intenet explorer, not have ever recently, and i can't use it even if i wanted to (linux :D), doesn't internet explorer have an override for encoding? have you checked that? i don't know if it overrides the encoding on the website, but it could be...
  7. xPlozion

    [REQ][20-40 points] Who can edit this image?

    by the looks of it, he found this on another site, and wanted something similar to it for his as above ^... I couldn't find a proper font, but then again, i was never great at looking for them... I'm starting to regret posting the blank banner, cause imho, anyone can copy and paste it into...
  8. xPlozion

    [REQ][20-40 points] Who can edit this image?

    yes, the images are transparent ;)
  9. xPlozion

    unable to connect to database

    make sure that you prefix your database username and database password with your cpanel username. an example would be cpuser_dbuser and cpuser_dbname. Also, make sure that the user is added to the database. if you don't see a username next to the databse, then at the bottom of that page are 2...
  10. xPlozion

    [REQ][20-40 points] Who can edit this image?

    I couldn't find the proper font. Would have uploaded earlier, but I was in the process of converting someone's site to work with register globals off (and it took quite a while) -xP
  11. xPlozion

    [REQ][250 credits]switching content with mySQL

    so that's what you see in phpMyAdmin?
  12. xPlozion

    [REQ][250 credits]switching content with mySQL

    so, when you use blob, all of the code is inserted into the database? also, text and blob do not get a limit.
  13. xPlozion

    [REQ][250 credits]switching content with mySQL

    wow... :) or you could use text if you are going to be putting a whole page of content in it. also, varchar has a limit of 255 my test db is setup as: id int(2) not_null auto_increment primary gcode text not_null
  14. xPlozion

    [REQ][250 credits]switching content with mySQL

    I was able to add that code with this script<?php mysql_connect('localhost','...','...'); mysql_select_db('...'); // Insert HTML into database :D This is just the basics to make it work. You can add more to this if you have the desire to if (!empty($_POST['gcode'])) { // Just make sure that...
  15. xPlozion

    need help with php crons help..

    try /home/arcade24/public_html/cron_minute.php?code=0ffb8984e the www directory is just a symbolic link for those familiar with linux/unix type systems, or similar to a shortcut in windows, which just is a reference point to another directory. -xP
  16. xPlozion

    Latest template

    yea, the quality is kinda iffy, would be nice to see if you can make it look beautiful in a mainstream kind of way. although the positioning of the box's kinda annoy me, and the diagonal bars do as well... ;) keep playing with it to make it amazing. P.S. it took me many designs to land...
Top