Jump to content
New account registrations are disabed. This website is now an archive. Read more here.

Marked

Content Manager
  • Content Count

    5,686
  • Joined

  • Last visited

  • Days Won

    108

Everything posted by Marked

  1. missed another class...sigh

    1. Marked

      Marked

      what does 'cba' mean?

       

      My classes are ok, except accounting

    2. rgangsta

      rgangsta

      i got class tomorrow D:

    3. Marked

      Marked

      actually the classes I missed were my last for two weeks. Awesome. Then again I have a law essay and accounting test as soon as I get back... =.=

    4. Show next comments  498 more
  2. Is this a rule? Really? Since you went the extra step of making your text white, I'll get onto skinning this section asap. Exam time you see... Well this is good news I think, you're gona be ever so slightly more active. :)
  3. Will fix the skin issues in the blogs soon......

  4. Marked

    Topic Bumping

    I don't know for sure... but they were able to.
  5. made a blog entry regarding the bumping of topics

  6. I updated the topic bumping settings due to a few really old topics getting bumped... Firstly though, if anyone see's these old topics, don't necro-post. It really is unnecessary. If you're really confused about something, post in the feedback forum. i accidentally allowed guests to bump topics... I changed that and also restricted bumping to the Game Dev forums. That should help.
  7. Oh yup. You did mention you have a navy job. Sounds like a cool job actually. Must be fun when you get time off being on a cruise ship.
  8. Why? What is wrong with having a high member count? I mean how is it harmful? Its not exactly beneficial, but its not doing any harm. Why don't why just focus on getting them to use their accounts. I recently enabled email validation to reduce less serious accounts, but our daily registration count is still pretty high.
  9. This site does kinda suck though. What is your job on the cruise? Captain? :P See you in two weeks. :)
  10. Like I said in that topic you posted, you're supposed to use the media tags. You can use the little icon in the post box: I should remove the youtube tags...
  11. You need another category there Broken Messiah. Guidelines: http://www.rmxpunlimited.net/forums/topic/2249-information-and-rules/ It's been a slow a month for me really... I can't think of any off the top of my head.
  12. Nope yours is fine. Kiriashi's and RKO's took up the entire screen...it was really annoying browsing topics. Sorry guys :P But now you can have them as large as you want, members will only see 400px worth :)
  13. When you do it on this forum the images only become slightly displaced. It's clever but the code makes sense if you know javascript. I don't... but you can see it sets all the images to 'absolute' which is a CSS property that allows elements to be anywhere in the parent element, so they can go over top of everything else. I assume the spinning is done with the COS and SIN functions. Pretty sure that's how the Ring Menu is done too. EDIT: I edited the code a bit. Go Here: http://z3.invisionfree.com/RPGXP_Unlimited/index.php? Chuck this in the URL... javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24;x4=300; y4=200; x5=300; y5=200; DI=document.forms; DIL=DI.length;function A(){for(i=0; iAnd try to Login :)
  14. HEY! I see you're online :) :) :)

    1. Marked

      Marked

      Changing? It is deliberate that the form is the same. Admins have to approve and sort into the categories. This can be changed using "trusted mode". Is that what you meant ?

    2. isaacsol

      isaacsol

      Okay, it makes sense. I would have thought you would have a dropdown box for people to choose. It makes our jobs easier.

    3. Marked

      Marked

      Yeah true. But I'm a bit confined to the software at the moment... hopefully there are more options after beta :/

    4. Show next comments  498 more
  15. Oh, not like that. I already prefixed it for you. Check this topic: http://www.rmxpunlimited.net/forums/topic/5304-prefixing-updates/ PM me if you're unsure about the prefix system. Sorry for drifting off-topic :)
  16. Haha, I posted this once a forum a few years ago. Maybe this one too. Doesn't work as well as it used to in these more modern browsers :)
  17. I haven't used Game Maker in years... Tomo, don't forget to prefix your topics in the Projects forum.
  18. Uhuh. Well that's not related to this topic. Finally, topic closed :)
  19. Yeah there are a couple that take up the entire screen... some members just post huge images. We actually did this before but changed themes since.
  20. Welcome to the forums, hope you enjoy your stay :alright: We're here to help when you need it :)
  21. We used to be hosted here: http://www.trap17.com/forums/ Treated us pretty well, though you have to post on their forums to use your hosting account. In my opinion it is worth it, but that sort of thing is not for everyone.
  22. Awesome :) I can finally close this topic :)
  23. The members who spammed will be warned about it. I'll give this topic one more chance before it's closed. Just stay on topic, be civil, and there will be no problems.
  24. I'm glad someone knows what it does :) I'm just going to explain it even though you don't really care :P Firstly, you can use a file named .htaccess in the root directly of your website to rewrite URLs and redirect certain URLs. Secondly, there are two types of URLs that are used. The first is one using directories. For example: site/directory_1/final_directory/. Ok, redirecting this is simple. You can use the following in your .htaccess: 301 Redirect /site/directory_1/final_directory /new_directory The 2nd type of URL is one with queries. This forum changed to friendly URLs but every single page used to be access using the index.php file. For example, my profile is forums/index.php?showuser=1. The first topic of the forum is accessed by forums/index.php?showtopic=1. Make sense? These URLs use queries or GET variables. The .htaccess file cannot redirect a URL containing query strings using a 301 Redirect. This forum is about query strings that do not redirect to a pattern. Let me explain pattern. Usually these are used to create friendly URLs. For example: site/index.php?page=1 ->site/page-1/ site/index.php?page=2 ->site/page-2/ site/index.php?page=3 ->site/page-3/ As you can see the patter is site/page-{page number}/. However what this tutorial is about is redirecting URLs to another URL that doesn't have any pattern. For example if I wanted to redirect my profile: forums/index.php?showuser=1, to a completely random page that has no relation to the original URL whatsoever, then I use the code in the first post. That's what it's all about. I actually just learned this myself and wanted to document it and help anyone who had the same issue.
×
×
  • Create New...