Jump to content

nine7ySix

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://fuzzicode.com

Profile Information

  • Gender
    Not Telling

nine7ySix's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. bump, there was an error on the server and I see that many users saw that blank page with random characters on it. It's back up now
  2. nyxIn 1.00 This is the first major release of nyxIn. nyxIn a gallery manager designed to integrate into your existing environment instead of being a site on its own. Requirements - PHP w/ SESSIONS started - An active MySQL connection Features: - Extremely easy set up - Blends right into your website (uses your existing CSS) - Auto thumbnail creation - Custom number of columns - Ability to change thumbnails - Simple menus - Easy gallery management - Password lock galleries - Batch moving of images Download here.
  3. There doesn't seem to be anything that looks wrong, but make sure you mysql_real_escape_string $name. Also $var doesn't seem have much use. Also might want to have $_SESSION["name"] equal something, if not, I would suggest just making a variable, instead of a $_SESSION, and you should try to use single quotes for these, instead of $_SESSION["name"], use $_SESSION['name'], it's best to try and be consistent. Also, you may get headers already sent errors because of your ?> <?php appearing everywhere. It would also be a good idea to check how many MySQL connections you're making.
  4. PHP Version 5.3.8. I'm not sure what went wrong, but make sure you have an active MySQL connection, sessions enabled and don't open the files directly, open it through <?php require("nyxIn/index.php");?>. - gallery.php -nyxIn (folder) -- index.php -- other files On gallery.php, or whatever file you want the gallery to be shown in, place <?php require("nyxIn/index.php");?> within those <div> tags Hope this works
  5. I've written an ASCII Art Generator/Converter with PHP. The code can be found here http://fuzzicode.com/scripts/asciiartgenerator. I was wondering if anyone could suggest a way to improve the accuracy of the images produced. I was hoping to see if anyone knew if they could make a list of 51 characters (or any relatively large number that 255 is divisible by) that go from: Take up most space -> Take up least space An example of a character that would take up a lot of space would be @ or #, a character that would take up very little space would be . or even a space. Here is the .txt file for verification http://fuzzicode.com/phpfreaks.txt Thanks a lot! Any other feedback or suggestions are appreciated!
  6. Can you please clarify your problem? I have no idea what you're trying to do.
  7. Escape the single quotes <?php $the_blab_form = ' <textarea id="add-status"class="status" onkeyup="limitText(this,350,\'.character-count\');detect_url(this.value);" onclick="limitText(this,350,\'.character-count\');detect_url(this.value);"></textarea><div><input class="button post" type="button" value="Post" id="'.$session.'" onClick="add_post(this.id)"/><div class="character-count">350</div> ';
  8. There are other single quote syntax errors on that line, and I would also check the variable $session to see if it's right.
  9. I tested this with CSS templates which I downloaded online, and they all look awesome and fit in well into the environment. I would recommended doing this if you do not currently have a good CSS template. Just place <?require("nyxIn/index.php");?> in the content div. I have provided 2 screens of nyxIn working on the Elegant Blue CSS Template I got from here http://www.freecsstemplates.org/preview/elegantblue/
  10. In PHP, the explode function is able to break a string into multiple array, it looks for a delimiter, in your case, the comma, and creates an array for each string inside the comma (<-- Badly worded :S) http://php.net/manual/en/function.explode.php So essentially, <?php $numbers = "1|20|30,20|10|5"; $numArray = explode("," $numbers); //$numArray[0] = "1|20|30"; //$numArray[1] = "20|10|5"; //To further break the array, you would do foreach($numArray as $numList) { $nums = explode("|", $numList); foreach($nums as $num) { //Validate each $num } }
  11. I created a new Gallery Manager, which I have named nyxIn. It is designed to integrate into your existing environment instead of being a site on its own, like how many other Gallery Managers are. It's still in Beta stage, but the main features work and install is really easy. The download is available here and there is a README that contains information about INSTALL and UNINSTALL etc. located in the .zip http://fuzzicode.com/scripts/nyxIn Here is the .txt file for verification http://fuzzicode.com/phpfreaks.txt I am unable to provide good screenshots at the moment because it depends on your current CSS, you'll see when you try it. Thank a lot! All feedback is appreciated!
  12. Why are you saving the in quantity as the name of an input? Why can't you save the quantity as a separate input, in that case, you don't have to worry about $_POST['item_name_'.$x] not working. It would be a lot easier to understand the situation if you posted all of your code here.
  13. I'm not exactly sure, but you might want to store $x in a hidden input and get the value of $x in checkout.php. Because right now, $_POST = ['item_name_' . $x . '']; which I presume is on checkout.php, is meaningless without the $x value.
  14. how hard is it do with debian linux 64bit? what i run also pikachu, the script alrdy does that.. but sum1's needs to view the lottery page for it run lol ! I'm not very familiar with Linux, but this article looks helpful. http://www.debian-administration.org/articles/56 Just know that .php files can be run with cron as well.
  15. i'm a fan of lists. I just think that, for an easy website like this, content will be easier managed with tables.
×
×
  • 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.