Jump to content
xisto Community

Feelay

Members
  • Content Count

    275
  • Joined

  • Last visited

Everything posted by Feelay

  1. Feelay

    Heyo!

    Haha, yeah, about that... I think I'd have to spend the rest of my life looking at all the posts I've missed, haha! Yeah, I'll try and be available some more, Edit: Oh, apparently there's no new content found Sounds great!
  2. Feelay

    Heyo!

    I also just noticed you've got a responsive template. I like that since I use my phone a lot, :DHey Yordan! It's good to see you're still here! How's life?
  3. Feelay

    Heyo!

    The forum is so much easier to navigate now compared to the last time I visisted here. Great job!Now I just need to find a page where I can see unanswered posts in topics, haha. How come I can't use the buttons in the shoutbox? Seems I can't shout, nor refresh, clear or change my preferences.Hey by the way!(very) Long time no see! How's everyone?
  4. Update 2: Let's change the date to Saturday, June 9th 2012. That's tomorrow.
  5. Update: Let's say that Sunday, June 10th 2012 is the last date. That's three days from now. I'll probably decide in the evening. If no one has replied, I'll figure out something to do.
  6. I'm sort of bored (like the title said before I removed the bored part)! Therefore, let's start a project. The idea is... Well, yeah.. What is the idea? The one that comes with the funniest/ best idea until.. No set date yet, but let's not make it more than a few weeks.. will get the chance to join the project. I'll probably solo-code it, if the person who "wins" this "competition" isn't interested in coding. We will also try to find someone that can design it. Of course, if more people are interested in coding this project other than the "winner" of this "competition", you are welcome. My only demand is that you listen, and that you know how to code, following an MVC-structure. So, what is it you'll do if you ain't coding it? Well, for starters, you'll be the one writing all the ideas. If you're not good at coding, just enjoy watching your ideas come to life. Also, your name will be in the credits and you'll be a part-owner of the project. A demand is that the project will later be shared with Xisto, if that's possible (Which means Xisto moderators and administrators (If the owner is interested) will be able to modify and moderate the other site as well). So what you should think about is the following; what is Xisto? What kind of people would be interested in a site like Xisto? What can we do to attract those people to our site and from there make them go to Xisto? And so on. Another demand is that the person who wants to join the project knows proper English, so that we can communicate. A qualification that I prefer is that the person isn't too afraid/ shy to talk on Skype either, but that's not anything I can't live without, so don't worry if you're shy and don't want to talk on Skype (If that's ever needed). The true goal of the project will be to show the world what members of Xisto can really do; my personal goal will be.. Well.. I just want to have some fun. Now show me what you got folks! Write your ideas in as much detail as you can. I'm not sure if it's still possible to host your websites here (Since I've not been on here for ages, ), but if you can, we will host the website here on Xisto! Let the fun begin Regards, /Nanashi PS. I'm not really sure if this is the right forum-part for this kind of idea. If it's not, I apologize.
  7. Hunter, are you sure that you do have entries in your members-table?If yes, how many entries do you have?Man, I really should update my tutorials, haha..
  8. Velma, sounds like a plan! :unsure:Starscream, well yeah, but what I meant was... What are we supposed to post about? xDTo make this forum alive I mean, (:Posts need to have life in them!
  9. The thing is, if you make it so that it's collapsed from the beginning, new users might have a really hard time finding it.My opinion is that they save the value in a database for each account. That way, it won't reset each time you reset your browser if you automatically remove your cookies, (:Off-Topic: I didn't even know there was a side-bar, DxHow can it be so disturbing? .w. It's so small, D:
  10. Hahahaha, I just saw the movie "The Mask" with Jim Carrey, xDWhen I was a kid, the cartoon was always on TV, but suddenly it stopped, and I forgot about my favorite superhero, The Mask.But a few weeks ago I heard about him again, and figured I'd look it up, and to my surprise, there was an old movie about The Mask!It was the most wicked humor ever, but I loved it! xDI seriously recommend everyone with a wicked humor to see it! :unsure:By the way, these forums ain't got no category for movies, but they do have a category for music! ):So I posted it here!/Feelay
  11. I never close my tabs, unless I'm certain that I don't need them anymore, (: (Could take weeks before I make that decision).And yes, I make Firefox save my session each time I close it, (:
  12. Hey folks!How about we put our great minds together, and figure out some ways to make this forum alive again?I know it's possible! I once loved these forums, and every time I get back here after being away for some time, I realize how empty it is here!So, let's brainstorm until we figure out some ways to get more people to join this forum and become more active, and then let's force the administrators and moderators to fulfill our plan, 8DI know we can do it!Regards,/Feelay
  13. I've recently discovered the huge advantage of being able to group tabs in Firefox. I'm not quite sure when this new function got implemented, but I have to say that I love it. I usually have about 50 tabs open, and when they are all in the same window, I have to say I can hardly find anything. With groups, I can name every group and easily switch from a group to another. In my case , I have one group for communities, while I have another group for web development, a group for Grooveshark (I like it when I don't have any other tabs open other than the music player so that I can easily switch to it, and then I have 5 other groups. I have to say that this has made my life so much easier. The only thing that I'm actually missing (I don't even know, maybe it's possible, I haven't looked into it), is the possibility to switch groups with given keyboard macros. What's your opinion about this grouping function in Firefox? Does it make life easier for you? Share your opinions! (For those of you who don't know what I'm talking about, check this link: Mozilla support: What are Tab Groups? Regards, /Feelay
  14. Well, of course it's possible, (: But I'm afraid I don't have the time to revive old scripts and add functions to them. It'd be better if you tried to do it yourself! (: Regards, /Feelay
  15. Are you sure that you've named the session "session_name"? $userfinal=$_SESSION['session_name']; When the user logs in I mean.
  16. Try adding or die(mysql_error()); to the mysql_query, so that it looks like this: $message = mysql_query("SELECT * FROM messages WHERE message_id = '$message_id' AND to_user = '$userfinal'") or die(mysql_error());
  17. If you look closer at this one here: $messageid = $_GET['message']; $message = mysql_query("SELECT * FROM messages WHERE message_id = '$message_id' AND to_user = '$userfinal'"); You can see the the variable "$messageid" is used as "$message_id" in the SQL-query. If you try to change it to "$messageid" in your query, so that it looks like this: WHERE message_id = '$messageid' It should work. The final code should look like this: $messageid = $_GET['message']; $message = mysql_query("SELECT * FROM messages WHERE message_id = '$messageid' AND to_user = '$userfinal'"); Regards, /Feelay
  18. @Rita: It's possible, but I'm afraid I don't have time to do that right now, :/@spawN-eD: Could you please paste the code for your read_message.php? (If you have any passwords or anything like that provided in the file, don't remember to replace them with ### or *** or something like that so that no one sees them, :PRegards/Feelay.
  19. I just wanted you guys to know, Removing something from Google, doesn't always remove them from other search engines like Yahoo and Bing!. Even if you do add the required code to block search engine bots, there are still malicious bots that doesn't follow rules that will index your information. Publishing your information on the Internet is a risk, Sources: robotstxt.org - How do I prevent robots from scanning my site? robotstxt.org - Can I block just bad robots?
  20. It all started today, seems like something triggered it.. I want to know what, D:
  21. Gosh! What's with all the spam today!?Third mail I receive that's a notification of someone spamming in this thread..
  22. Haven't gotten that far yet I'm afraid, :/I don't play the game a lot since I'm too busy with school and web development at the moment, :/
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.