| Pages: 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 30 .. 30 :: one page |
| Author |
Thread Statistics | Show CCP posts - 26 post(s) |

Traveler
|
Posted - 2004.11.30 06:50:00 -
[211]
The ingame browser tag is hardcoded and can not be changed. I think you use something like a proxy which stores your requests. Just a guess though.
Traveler Polaris Bug Hunter Lead |

Karhig Duruckhai
|
Posted - 2004.11.30 11:01:00 -
[212]
Edited by: Karhig Duruckhai on 30/11/2004 11:43:08
Originally by: Lu Tze An excel (or csv) of typeID's and their real names might be useful. Like the solarsystem one that's available.
Also, is there any way to get information on a character, corp or alliance based on their name? I know the info on visitors contains their charID, but is there (or can there be) a way to get a graphic with only the name as input?
There is nothing quite so useful, but if you go here: Item Database it appears that the numbers used to identify items are the same as ingame and so can be gleaned from the url. Not pretty or perfect, but its a fairly simple solution.
|

Karhig Duruckhai
|
Posted - 2004.11.30 11:01:00 -
[213]
Edited by: Karhig Duruckhai on 30/11/2004 11:43:08
Originally by: Lu Tze An excel (or csv) of typeID's and their real names might be useful. Like the solarsystem one that's available.
Also, is there any way to get information on a character, corp or alliance based on their name? I know the info on visitors contains their charID, but is there (or can there be) a way to get a graphic with only the name as input?
There is nothing quite so useful, but if you go here: Item Database it appears that the numbers used to identify items are the same as ingame and so can be gleaned from the url. Not pretty or perfect, but its a fairly simple solution.
|

FlashBack
|
Posted - 2004.11.30 17:22:00 -
[214]
Edited by: FlashBack on 30/11/2004 17:28:24 Working on an IGW (InGame website) for my corp.
Doing a form now to store mining operations into a database. The form is pretty simple, just using a plain form with the following attributes
name="input_ore_mining" action="writedb_miningop.asp" method="post"
for the input fields i use the following
type="text" name="veldspar" value="0" (default value)
then when i use ASP to retrieve all the info that was filled in i get the following results (for the input field mentioned above).
veldspar 0, 0
The script i use is quite basic
for each item in request.Form response.write item response.write (request.Form(item)) next
I only get this extra 0 when using it in the ingame browser, IE or other browser only returns 1 zero. Also writing this into a database will give me 2 records 1 blank and 1 with the proper info) instead of just the 1 record i want to store. 
any workaround for this? the default value for my input fields is pretty important
thanx in advance...
|

FlashBack
|
Posted - 2004.11.30 17:22:00 -
[215]
Edited by: FlashBack on 30/11/2004 17:28:24 Working on an IGW (InGame website) for my corp.
Doing a form now to store mining operations into a database. The form is pretty simple, just using a plain form with the following attributes
name="input_ore_mining" action="writedb_miningop.asp" method="post"
for the input fields i use the following
type="text" name="veldspar" value="0" (default value)
then when i use ASP to retrieve all the info that was filled in i get the following results (for the input field mentioned above).
veldspar 0, 0
The script i use is quite basic
for each item in request.Form response.write item response.write (request.Form(item)) next
I only get this extra 0 when using it in the ingame browser, IE or other browser only returns 1 zero. Also writing this into a database will give me 2 records 1 blank and 1 with the proper info) instead of just the 1 record i want to store. 
any workaround for this? the default value for my input fields is pretty important
thanx in advance...
|

FlashBack
|
Posted - 2004.11.30 22:17:00 -
[216]
I think i have found the problem:
this form:
<html> <head> <title>testing forms</title> </head>
<body> <form action="test2.asp" method="post"> <table> <tr> <td> <input type="text" name="charname" value="flashback"> </td> </tr> <tr> <td> <input type="submit" value="submit"> </td> </tr> </table> </form> </body> </html>
Will not work since it is styled with a table. I've been looking at the different test pages and see no difference in the html code. For some strange reason when i try to retrieve the information that was sent by this page i get double data.
So the action <%=request.form("charname")%> would give me the result "flashback, flashback".
When i kick out the HTML code for the table i get what i want, just "flashback". But i want to give some layout to my forms so i want to be able to use the table.
What the **** am i doing wrong, or what the **** is wrong with the IGB.
|

FlashBack
|
Posted - 2004.11.30 22:17:00 -
[217]
I think i have found the problem:
this form:
<html> <head> <title>testing forms</title> </head>
<body> <form action="test2.asp" method="post"> <table> <tr> <td> <input type="text" name="charname" value="flashback"> </td> </tr> <tr> <td> <input type="submit" value="submit"> </td> </tr> </table> </form> </body> </html>
Will not work since it is styled with a table. I've been looking at the different test pages and see no difference in the html code. For some strange reason when i try to retrieve the information that was sent by this page i get double data.
So the action <%=request.form("charname")%> would give me the result "flashback, flashback".
When i kick out the HTML code for the table i get what i want, just "flashback". But i want to give some layout to my forms so i want to be able to use the table.
What the **** am i doing wrong, or what the **** is wrong with the IGB.
|

Sundace II
|
Posted - 2004.12.02 13:38:00 -
[218]
Originally by: FlashBack I think i have found the problem:
Will not work since it is styled with a table. I've been looking at the different test pages and see no difference in the html code. For some strange reason when i try to retrieve the information that was sent by this page i get double data.
So the action <%=request.form("charname")%> would give me the result "flashback, flashback".
When i kick out the HTML code for the table i get what i want, just "flashback". But i want to give some layout to my forms so i want to be able to use the table.
What the **** am i doing wrong, or what the **** is wrong with the IGB.
I have the same problem using ASP. Didn't test it without the table.. do not know for sure if it is the igb or a problem in asp. The problem only exist with an selectbox and textboxes, when i just textbox (without a predevined value) i get ", text" So i wrote code around it (when it is a bug in the igb and it is fixed, this code will not give problems). Going with your values:
charname=request("charname") if instr(charname,", ")<>0 then charname=replace(charname,",",".") lengte=len(charname) charname=right(charname,lengte-2) end if
When using selectionboxes, try this code (selectboxname = securityopt):
if instr(securityopt,",")<>0 then securityopt=right(securityopt, (len(securityopt)-instr(securityopt,",")))
hope you can do something with this...
-------------------------------- Agent Auto Locator for the IGB: New: http://eve.nexus-zone.com
|

Sundace II
|
Posted - 2004.12.02 13:38:00 -
[219]
Originally by: FlashBack I think i have found the problem:
Will not work since it is styled with a table. I've been looking at the different test pages and see no difference in the html code. For some strange reason when i try to retrieve the information that was sent by this page i get double data.
So the action <%=request.form("charname")%> would give me the result "flashback, flashback".
When i kick out the HTML code for the table i get what i want, just "flashback". But i want to give some layout to my forms so i want to be able to use the table.
What the **** am i doing wrong, or what the **** is wrong with the IGB.
I have the same problem using ASP. Didn't test it without the table.. do not know for sure if it is the igb or a problem in asp. The problem only exist with an selectbox and textboxes, when i just textbox (without a predevined value) i get ", text" So i wrote code around it (when it is a bug in the igb and it is fixed, this code will not give problems). Going with your values:
charname=request("charname") if instr(charname,", ")<>0 then charname=replace(charname,",",".") lengte=len(charname) charname=right(charname,lengte-2) end if
When using selectionboxes, try this code (selectboxname = securityopt):
if instr(securityopt,",")<>0 then securityopt=right(securityopt, (len(securityopt)-instr(securityopt,",")))
hope you can do something with this...
-------------------------------- Agent Auto Locator for the IGB: New: http://eve.nexus-zone.com
|

FlashBack
|
Posted - 2004.12.02 19:07:00 -
[220]
Great! thanx a lot.
this means i have to do that trick with every textbox i use though and with the mining form there are 48 different ore types. I'd rather have them tell me it's a problem with the ingame browser.
Then again i could try and replace the table with CSS, but would that work correctly in the igb? I'll try do do that .. if it doesn't work i'll try to make some automated version of your script.
Cheers,
Flash
|

FlashBack
|
Posted - 2004.12.02 19:07:00 -
[221]
Great! thanx a lot.
this means i have to do that trick with every textbox i use though and with the mining form there are 48 different ore types. I'd rather have them tell me it's a problem with the ingame browser.
Then again i could try and replace the table with CSS, but would that work correctly in the igb? I'll try do do that .. if it doesn't work i'll try to make some automated version of your script.
Cheers,
Flash
|

Cyberwizzard
|
Posted - 2004.12.04 15:02:00 -
[222]
I allready posted on the other thread and submitted a bug report:
Can we please get the meta reload tag in the next patch??? Or any other tag that allows the browser to auto-refresh the page?
|

Cyberwizzard
|
Posted - 2004.12.04 15:02:00 -
[223]
I allready posted on the other thread and submitted a bug report:
Can we please get the meta reload tag in the next patch??? Or any other tag that allows the browser to auto-refresh the page?
|

Cyberwizzard
|
Posted - 2004.12.05 02:03:00 -
[224]
Allright, I found out I'm running behind - using the HTTP headers we can auto reload a page :)
Now I'm also running into the table and forms stuff :(
I'll see if I can find a way around it...
|

Cyberwizzard
|
Posted - 2004.12.05 02:03:00 -
[225]
Allright, I found out I'm running behind - using the HTTP headers we can auto reload a page :)
Now I'm also running into the table and forms stuff :(
I'll see if I can find a way around it...
|

Nomispanco
|
Posted - 2004.12.06 11:51:00 -
[226]
Edited by: Nomispanco on 06/12/2004 11:57:59 - Checkboxes in tables don't return any value. - Textareas in tables don't show any text but if you write some text and submit them the result is correct. - Tables have some strange behavior sometimes (jumping around on resize) - HTTP_EVE_ALLIANCE: tag would be nice. - HTTP_EVE_CORPROLE: can we have one role for only CEO's? - links to dead stylsheets causes blank page - errors before <html><body> tags causes blank page
else keep up the good work
EDIT: - oh, and if you have form-actions to an "insertIntoDB.php" with a redirect in this file: header('Location: index.php'). clicking reload causes double entries in the db, even if you use unset['var'] (in php)
|

Nomispanco
|
Posted - 2004.12.06 11:51:00 -
[227]
Edited by: Nomispanco on 06/12/2004 11:57:59 - Checkboxes in tables don't return any value. - Textareas in tables don't show any text but if you write some text and submit them the result is correct. - Tables have some strange behavior sometimes (jumping around on resize) - HTTP_EVE_ALLIANCE: tag would be nice. - HTTP_EVE_CORPROLE: can we have one role for only CEO's? - links to dead stylsheets causes blank page - errors before <html><body> tags causes blank page
else keep up the good work
EDIT: - oh, and if you have form-actions to an "insertIntoDB.php" with a redirect in this file: header('Location: index.php'). clicking reload causes double entries in the db, even if you use unset['var'] (in php)
|

Traveler
|
Posted - 2004.12.07 11:06:00 -
[228]
Quote: - Checkboxes in tables don't return any value.
fixed.
Quote: - Textareas in tables don't show any text but if you write some text and submit them the result is correct.
fixed.
Quote: - Tables have some strange behavior sometimes (jumping around on resize)
investigating - maybe some low level stuff
Quote: - HTTP_EVE_ALLIANCE: tag would be nice.
will be added later.
Quote: - HTTP_EVE_CORPROLE: can we have one role for only CEO's?
game design - will not change
Quote: - links to dead stylsheets causes blank page
investigating
Quote: - errors before <html><body> tags causes blank page
which errors? server timeouts?
Traveler Polaris Bug Hunter Lead |

Traveler
|
Posted - 2004.12.07 11:06:00 -
[229]
Quote: - Checkboxes in tables don't return any value.
fixed.
Quote: - Textareas in tables don't show any text but if you write some text and submit them the result is correct.
fixed.
Quote: - Tables have some strange behavior sometimes (jumping around on resize)
investigating - maybe some low level stuff
Quote: - HTTP_EVE_ALLIANCE: tag would be nice.
will be added later.
Quote: - HTTP_EVE_CORPROLE: can we have one role for only CEO's?
game design - will not change
Quote: - links to dead stylsheets causes blank page
investigating
Quote: - errors before <html><body> tags causes blank page
which errors? server timeouts?
Traveler Polaris Bug Hunter Lead |

Nomispanco
|
Posted - 2004.12.07 12:38:00 -
[230]
Edited by: Nomispanco on 07/12/2004 12:44:27 Wow. Now this was a fast reply I'll check this today evening.
The problem occurs if we write something before the <html><body> tags. just a blank screen will appear.
Like if you have a: <?php init(); $users = mysql_query("SELECT * FROM users") or die(mysql_error()); <--- if error occurs here $row = mysql_fetch_assoc($users); echo "<html><body>" echo $row['users_id']; echo "</body></html>"; ?>
And because of the corprole. so we will have no chance to find out if someone is just a director or if he is a ceo? to bad 
|

Nomispanco
|
Posted - 2004.12.07 12:38:00 -
[231]
Edited by: Nomispanco on 07/12/2004 12:44:27 Wow. Now this was a fast reply I'll check this today evening.
The problem occurs if we write something before the <html><body> tags. just a blank screen will appear.
Like if you have a: <?php init(); $users = mysql_query("SELECT * FROM users") or die(mysql_error()); <--- if error occurs here $row = mysql_fetch_assoc($users); echo "<html><body>" echo $row['users_id']; echo "</body></html>"; ?>
And because of the corprole. so we will have no chance to find out if someone is just a director or if he is a ceo? to bad 
|

Sundace II
|
Posted - 2004.12.07 17:24:00 -
[232]
Originally by: Traveler [quote - Tables have some strange behavior sometimes (jumping around on resize)
investigating - maybe some low level stuff
This is something i already mentioned far earlier and also have bugreported in the beta. With large tables it jumps even without resizing while you only scroll down. Good example: eve.nexus-zone.com and ask an constellationlist. How bigger the table the more it happens when you scroll in the page.
Originally by: Traveler [quote - HTTP_EVE_ALLIANCE: tag would be nice.
will be added later.
This is already there.. i can see it on my testpage (eve.nexus-zone.com/test2.asp)
Originally by: Traveler [quote - errors before <html><body> tags causes blank page
which errors? server timeouts?
one of them i know off: 1ste line blank (also reported earlier)
-------------------------------- Agent Auto Locator for the IGB: New: http://eve.nexus-zone.com
|

Sundace II
|
Posted - 2004.12.07 17:24:00 -
[233]
Originally by: Traveler [quote - Tables have some strange behavior sometimes (jumping around on resize)
investigating - maybe some low level stuff
This is something i already mentioned far earlier and also have bugreported in the beta. With large tables it jumps even without resizing while you only scroll down. Good example: eve.nexus-zone.com and ask an constellationlist. How bigger the table the more it happens when you scroll in the page.
Originally by: Traveler [quote - HTTP_EVE_ALLIANCE: tag would be nice.
will be added later.
This is already there.. i can see it on my testpage (eve.nexus-zone.com/test2.asp)
Originally by: Traveler [quote - errors before <html><body> tags causes blank page
which errors? server timeouts?
one of them i know off: 1ste line blank (also reported earlier)
-------------------------------- Agent Auto Locator for the IGB: New: http://eve.nexus-zone.com
|

Arckame
|
Posted - 2004.12.08 03:05:00 -
[234]
Originally by: Traveler Well, the x,y,z bookmark function is exactly what we will never support because it introduces an easy way to exploit. You could simply do a triangulation of your enemy and create a bookmark to warp to him this way. Therefor this "feature" will not be available.
Why not offer the possibility to use only Ingame Created bookmarks ?? <a href="showbookmarkinfo:BookmardID">bookmark</a> ??
working like <a href="showinfo:TypeID//ItemID">item</a>
this methode prevent x,y,z exploit, and can help corps to deploy bookmark list.
|

Arckame
|
Posted - 2004.12.08 03:05:00 -
[235]
Originally by: Traveler Well, the x,y,z bookmark function is exactly what we will never support because it introduces an easy way to exploit. You could simply do a triangulation of your enemy and create a bookmark to warp to him this way. Therefor this "feature" will not be available.
Why not offer the possibility to use only Ingame Created bookmarks ?? <a href="showbookmarkinfo:BookmardID">bookmark</a> ??
working like <a href="showinfo:TypeID//ItemID">item</a>
this methode prevent x,y,z exploit, and can help corps to deploy bookmark list.
|

Nomispanco
|
Posted - 2004.12.08 08:36:00 -
[236]
Quote: - Checkboxes in tables don't return any value.
fixed. I can't verify that this is fixed. if the checkboxes returns a value like Yes if checked then it's "mostly" working. Just check your "http://bughunters.addix.net/igbtest/formtest3.php". but anyway it's possible to use the radio buttons atm.
Quote: - Textareas in tables don't show any text but if you write some text and submit them the result is correct.
fixed. I can't verify this too?http://bughunters.addix.net/igbtest/formtest3.php doesn't show any "Test"-text in the textareas ingame.
Quote: - Tables have some strange behavior sometimes (jumping around on resize)
investigating - maybe some low level stuff
Quote: - errors before <html><body> tags causes blank page
which errors? server timeouts?
With errors i meant also just echo some text before. in most cases this are errors. but this here shouldn't work, e.g. renders a blank screen. "Blank testpage <html><body></body></html>"
|

Nomispanco
|
Posted - 2004.12.08 08:36:00 -
[237]
Quote: - Checkboxes in tables don't return any value.
fixed. I can't verify that this is fixed. if the checkboxes returns a value like Yes if checked then it's "mostly" working. Just check your "http://bughunters.addix.net/igbtest/formtest3.php". but anyway it's possible to use the radio buttons atm.
Quote: - Textareas in tables don't show any text but if you write some text and submit them the result is correct.
fixed. I can't verify this too?http://bughunters.addix.net/igbtest/formtest3.php doesn't show any "Test"-text in the textareas ingame.
Quote: - Tables have some strange behavior sometimes (jumping around on resize)
investigating - maybe some low level stuff
Quote: - errors before <html><body> tags causes blank page
which errors? server timeouts?
With errors i meant also just echo some text before. in most cases this are errors. but this here shouldn't work, e.g. renders a blank screen. "Blank testpage <html><body></body></html>"
|

Traveler
|
Posted - 2004.12.08 14:31:00 -
[238]
Wait for the new client before testing. ;) Sisi will be updated with build 3102 today.
Traveler Polaris Bug Hunter Lead |

Traveler
|
Posted - 2004.12.08 14:31:00 -
[239]
Wait for the new client before testing. ;) Sisi will be updated with build 3102 today.
Traveler Polaris Bug Hunter Lead |

FlashBack
|
Posted - 2004.12.09 09:48:00 -
[240]
Any info on forms inside tables returning double values (using ASP)?
example:
<input name="charname" value="flashback">
would return the value: "flashback, flahback"
I've seen a workaround but no official confirmation that this is indeed bugged.
|
| |
|
| Pages: 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 30 .. 30 :: one page |
| First page | Previous page | Next page | Last page |