Log In
Name:
Pass:
Online Members (0)
No members are currently online.
Current Interguild Time:
Mon Apr 29 2024 11:17 am
Member Chat Box  [click here to enlarge]
Recent Posts and Comments
Bugs still on the loose:

when you report messages, they get removed from your inbox but the count doesn't get updated No longer happens

Karma rating blog posts with multiple authors doesn't give everyone karma.

Green, bold "Currently Online" text next to posts doesn't always sync with the Online Members box.

http://www.interguild.org/members/privmsg.php - When you view a private message and it shows the users title there's a backslash before a single quote.

Trophies don't show up on Video pages

Sometimes topics aren't automatically created for video archive.

Adding comps for non-chosen games don't get automatically put in a forum board

non-chosen games don't have their comps show up on their game pages

Map Generator does not work well when you paste in a cave code without a terrain type and stuff (glitch or feature)

you can still rate levels multiple times?

'The PM page' said:
Error: Your message cannot be blank.

Here is the post you submitted:
[empty textbox]


You should be able to view your sent PMs and maybe edit them if they haven't been read.

When changing user profile settings, receiving multiple errors results in multiple interguilds


Bugs no longer on the loose:

The More Topics button

Background image does not transition well to black, which is viewable on super-widescreen monitors

In the "Other Videos" page of the archive, there's two spaces between other and videos, while in the title bar, there are zero.

The ? next to the word praise on cavelist pages goes nowhere.

last page of the chatbox is emtpy

news posts do not display multiple authors when displaying comp entries

email fail in the about us page

BBC code page error

The video archive's advanced search feature does not have an option to limit by game, however, type &game=# to the end of the URL does, in fact, succeed in filtering the results by game.

The massive username addition only allows 99 usernames instead of 100

The avatar section of the Account Preferences page says "You avatar"

Interguild Olympics results still not completely fixed(??)

Broken link to Log In page from logged-out version of account settings page.
« Forum Index < The Interguild Board
«Previous | 1, 2, 3, . . . 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 | Next»

Livio
[?] Karma: 0 | Quote - Link
Saturday, November 19 2011, 4:11 pm EST

Age: 31
Karma: 470
Posts: 9620
Gender: Male
Location: Arizona, USA
pm | email
'Silver' said:
Apparently censors/smilies aren't working in the chatbox or chatbox page.
everything seems to be working fine. I wonder what happened.
Thomas
[?] Karma: 0 | Quote - Link
Monday, November 28 2011, 11:30 pm EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
On both user profiles and the page that displays videos, there's a description of the video when you hover over the preview image and there are backslashes before single quotes.

By the way, I read a few weeks ago that if you see backslashes in phpMyAdmin then you are escaping incorrectly. You should not see any blackslashes in phpMyAdmin and there should be no need to use stripslashes() when you retrieve data from the db because the slashes are stripped after passing through the insert/update query. So what's causing the slashes to be added twice? Magic Quotes. The correct way to escape data is to use get_magic_quotes_gpc() and only escape if magic quotes are disabled. Or you could just disable magic quotes on your server and always escape data yourself... but fortunately magic quotes will be deprecated as of PHP 5.3.0.
Livio
[?] Karma: 0 | Quote - Link
Tuesday, November 29 2011, 12:39 am EST

Age: 31
Karma: 470
Posts: 9620
Gender: Male
Location: Arizona, USA
pm | email
Backslashes fixed.

I think I heard about magic quotes before. The concept doesn't make much sense to me. So, if  
get_magic_quotes_gpc()==true
, then it's as if all of the variables added to my query strings were filtered by  
mysql_real_escape_string()
?  
Thomas
[?] Karma: 0 | Quote - Link
Tuesday, November 29 2011, 12:55 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
Magic quotes is explained here: http://php.net/manual/en/security.magicquotes.php

It was made to help beginners write better, more secure code but apparently people are more educated on SQL injection now so it's deprecated in newer versions of PHP. Yeah, pretty much. All HTTP request data gets backslashes added. It is not good to rely on magic quotes, though.

Here's an example of checking for magic quotes:
Code:
<?php
$data = $_POST['data'];
if(!get_magic_quotes_gpc()) {
	$data = mysql_real_escape_string($data);
}
?>

That's how it should be at least if you're going to distribute scripts out because different servers have different settings.
Kooler
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 1:45 am EST
find me in your local trashcan

Age: 24
Karma: 25
Posts: 1432
Gender: Male
Location: California, USA.
pm | email
I found a bug that if you post this:
Spoiler:
in the chatbox, it hides it in the spoiler and makes in move in a marque, it's actually kinda funny.

EDIT: It has to be a link for it to work.


go drink some water
Thomas
[?] Karma: +1 | Quote - Link
Saturday, December 3 2011, 2:01 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
Yeah, the bug is that you're using internet explorer.
Kooler
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:03 am EST
find me in your local trashcan

Age: 24
Karma: 25
Posts: 1432
Gender: Male
Location: California, USA.
pm | email
'Thomas' said:
Yeah, the bug is that you're using internet explorer.
Nope, I'm using Firefox, I would never use internet explorer, and like I said, you have to put in a link.


go drink some water
Thomas
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:07 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
Okay, so where's the bug?
Kooler
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:08 am EST
find me in your local trashcan

Age: 24
Karma: 25
Posts: 1432
Gender: Male
Location: California, USA.
pm | email
'Thomas' said:
Okay, so where's the bug?
This is what I mean:
Thomas
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:22 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
Just put a space after the link.
Kooler
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:32 am EST
find me in your local trashcan

Age: 24
Karma: 25
Posts: 1432
Gender: Male
Location: California, USA.
pm | email
'Thomas' said:
Just put a space after the link.
I know, but I would like to have this fixed.


go drink some water
Darvince
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:34 am EST
sea level change

Age: 24
Karma: 107
Posts: 2043
Gender: Female
Location: The Nuclear Era
pm | email
'Kooler' said:
'Thomas' said:
Okay, so where's the bug?
This is what I mean:


It's hilarious.


"Time is a circuit, not a line; cybernetics instantiates templexity."

Kooler
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:35 am EST
find me in your local trashcan

Age: 24
Karma: 25
Posts: 1432
Gender: Male
Location: California, USA.
pm | email
'Darvince' said:
'Kooler' said:
'Thomas' said:
Okay, so where's the bug?
This is what I mean:
Spoiler:
Thomas
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:38 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
It's not really a bug. Trust me, Livio will post here "lol that's just the censors overriding." Fixing that would be pretty hard and marquee is for trolls, anyway.
Kooler
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 2:39 am EST
find me in your local trashcan

Age: 24
Karma: 25
Posts: 1432
Gender: Male
Location: California, USA.
pm | email
'Thomas' said:
It's not really a bug. Trust me, Livio will post here "lol that's just the censors overriding." Fixing that would be pretty hard and marquee is for trolls, anyway.
Well I just feel like saying : m : and : / m : in my posts to get peoples attention.


go drink some water
Yaya
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 9:34 am EST

Age: 29
Karma: 747
Posts: 5367
Location: Ohio (US)
pm | email
Why is the bottom page number selection of this thread italicized?



COMING SOON: A giant meteor. Please.
Give me +karma. Give me +karma.
jellsprout
[?] Karma: 0 | Quote - Link
Saturday, December 3 2011, 11:13 am EST
Lord of Sprout Tower

Karma: -2147482799
Posts: 6445
Gender: Male
pm | email
Probably because quoting a spoiler containing a link in a marquee tends to screw things up. The quote italicizes the text and either the spoiler or the marquee makes sure it doesn't stop.


Spoiler:
Thomas
[?] Karma: 0 | Quote - Link
Friday, December 23 2011, 9:53 pm EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
1. On the homepage, under "Competitions and Tournaments", if you click the name of a game that the comp is running for, it says "Error: Game does not exist."

2. I remember a long time ago I told you about a way to inject HTML into level codes and you fixed that. Well on that page where you enter levels for comps, it has the textarea, and that textarea can still have HTML injected into it so use htmlspecialchars() there.

3. If you run a search in the level database and you change the HATPC options to either only glitched caves or no glitched caves and change nothing else then you get a MySQL error when performing the search.

4. The "About the Interguild" page has a broken link to the Aeon Discussion Board.

5. That Interguild BBCode page has some errors.
Livio
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 3:33 am EST

Age: 31
Karma: 470
Posts: 9620
Gender: Male
Location: Arizona, USA
pm | email
1. Fixed

2. That's not much of a problem because you're the only one who would be able to see that. Unless maybe you collabed with someone...

3. Yeah that's been annoying me for some time now. Fixed.

4. Fixed.

5. I got rid of the duplicated Underline text, but I really don't feel like adding the latest bbcode tags....
Livio
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 3:34 am EST

Age: 31
Karma: 470
Posts: 9620
Gender: Male
Location: Arizona, USA
pm | email
You know how I like to complain about the Private Messages page to as the worst-coded page on the site? The level database is easily in second place...
Thomas
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 3:40 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
'Livio' said:
5. I got rid of the duplicated Underline text, but I really don't feel like adding the latest bbcode tags....
For the URL tag, you are closing it with [/size] when it should be [/url].

'Livio' said:
You know how I like to complain about the Private Messages page to as the worst-coded page on the site? The level database is easily in second place...
I concluded from random exploiting that the following must be terrible code: http://www.interguild.org/videos/viewcat.php?cat=search&show=results&vidtitle=&titlesearch=partial&category=&game=&sortby=time&sortorder=desc&page=10&author[]=canadianstickdeath&lengthsearch=&lengthmin=00&lengthsec=00&datetime=before&year=&month=&day=
Thomas
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 3:41 am EST
the clique shall prevail

Karma: 111
Posts: 2503
Gender: Female
Location: clique
pm | email
??? ^ That's a bug. Remember that CSS I sent you that would word wrap? Use it on the forums...
Livio
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 3:52 am EST

Age: 31
Karma: 470
Posts: 9620
Gender: Male
Location: Arizona, USA
pm | email
Wow Haily beats me again, with the video archive pages...

would that interfere with [code] blocks?
shos
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 10:57 am EST
~Jack of all trades~

Age: 31
Karma: 389
Posts: 8273
Gender: Male
Location: Israel
pm | email
is there a reason that the burrom of the page is in italics for me? MOD POWERS: etc, and the page number, and the forum index < the interguild board, and the post: BBCode? and the Folt color: etc. are all italics. why?


Yaya
[?] Karma: 0 | Quote - Link
Saturday, December 24 2011, 11:02 am EST

Age: 29
Karma: 747
Posts: 5367
Location: Ohio (US)
pm | email
'Yaya' said:
Why is the bottom page number selection of this thread italicized?
'jellsprout' said:
Probably because quoting a spoiler containing a link in a marquee tends to screw things up. The quote italicizes the text and either the spoiler or the marquee makes sure it doesn't stop.


Probably that.



COMING SOON: A giant meteor. Please.
Give me +karma. Give me +karma.

« Forum Index < The Interguild Board
«Previous | 1, 2, 3, . . . 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 | Next»

In order to post in the forums, you must be logged into your account.
Click here to login.

© 2024 The Interguild | About & Links | Contact: livio@interguild.org
All games copyrighted to their respective owners.