| 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) |

Simon Illian
|
Posted - 2005.11.14 12:50:00 -
[511]
nobody know a link to have the : showinfo:XX for : =>Agent =>Solarssytem =>Station =>Corporation =>Alliance ... ?
[Eve Tool for the mass] |

Gunther Hoosler
|
Posted - 2005.11.15 13:52:00 -
[512]
Originally by: Simon Illian nobody know a link to have the : showinfo:XX for : =>Agent =>Solarssytem =>Station =>Corporation =>Alliance ... ?
The data is all available Here. However, is all relies on your own lookups as there is generally no way to determine ID's of stuff from within the Eve client. I've managed to get the SystemID by looking up the system name in the SolarSystems table and from there you can insert the System ID for your showinfo links
There is also some information which you can get from the HTTP headers from within the Eve In-Game browser. Theres a link in the OP that will list the variables avlaible to you. you can get things like CharID, AllianceID, among others Gunther Hoosler ALi Director
|

Ryushe
|
Posted - 2005.11.15 21:25:00 -
[513]
Hi there,
I just checked out our extensive ingame corp support tool, which we've been using and upgrading/expanding on for over the last 1 1/2 years, in the IGB on test server, and lo and behold, something broke. The thing that broke works like a charm in the IGB on the live server. The bad thing is, what broke kinda makes the whole system unusable at this point.
To explain: In order to use this system, one must have a username and password. You'd open the site in the IGB, at for instance http://eve.domain.com/, and be presented with a login form. You'd log in, thus sending your credentials to a checkuser page which checks if you are allowed access, and if so, creates and assigns some session variables, updates a little thing in the database, and passes you along back to the main page. The login form lives on the index.php page, and is displayed if no valid session is active. If there is a valid session, which is the case after a successful login, the index.php will display the front page of the system. Both pages live in the document root of the site.
So: index.php (login) \_ POST -> checkuser.php \_ Valid? -> redirect to index.php and create session / display main page \_ Invalid? -> redirect to index.php and dsplay login form.
Code for the form looks like: <form action="./checkuser.php" method="POST" name="checkuser"> Username: <input type="text" name="username"><br /> Password: <input type="password" name="password"><br /><br /> <input type="submit" name="submit" value="enter the dragon"> </form>
Tech specs: PHP4/Apache2/MySQL on the webserver.
All of this works in the IGB on the live server at this moment. The reason for the action="./checkuser.php" is that I can remember that 1 1/2 years ago the IGB wouldn't accept action="checkuser.php" for some strange reason which I think has to do with the checkuser.php page redirecting the user almost at once when data is processed. On the test server however, after posting the form (which takes around 20 seconds now) I get: "Host not found". This of course sucks.
After checking this with another install of eve on the test server (different machine), and on the current live server, both times running Ethereal in the background, I've noticed that when I post the form on the live server, there is HTTP traffic coming from EVE and heading to the webserver. It returns data (doh) and the IGB displays it. On the testserver however, Ethtereal does't capture any data HTTP data being sent or recieved at all when I submit the form. I also think the "Host not found" message is due to an empty host request being done by Windows, which handles all domain requsts handled in the IGB, which is the result of the IGB not requesting ANY domain at all when I post that form (for reasons unknown).
Is this already a known issue? Did I do something wrong? Can a Dev confirm my idea that the IGB has been altered in the way it handles requests?
I will set up a test case now on another machine here, to test in the IGB of test server, and will update this post when I found out more about this... In the meantime, if anyone else can test something similar and post the results here, that would be great. |

Simon Illian
|
Posted - 2005.11.16 09:49:00 -
[514]
got the exact same bug, i've bug report it imemduitly.
For my type question i will look in the dev blog ,m aybve i've forgot a sheet, look @ my work : http://pelisset.webdynamit.net/eve/
[Eve Tool for the mass] |

Elberet
|
Posted - 2005.11.16 21:49:00 -
[515]
If the IGB has problems figuring out relative links, an obvious workaround would be to build fully qualified absolute URLs for the form's action property, e.g. http://your.domain.com/evestuff/checkuser.php.
What might have happened internally is that the IGB has problems remembering where it is browsing at the moment. To verify what's happening, you could install a local dnscache with extensive logging to check on which hostnames Eve is trying to resolve (and remove the localhost assignment from Windows' hosts file).
|

Simon Illian
|
Posted - 2005.11.16 23:33:00 -
[516]
it's not only forms, it's all the link...
[Eve Tool for the mass] |

Sirilonwe
|
Posted - 2005.12.02 08:28:00 -
[517]
could I have a show info sample? The ingametest4.html from bughunters.addix.net seems to be missing... _______________________ Forums DSU |

Kiarra
|
Posted - 2005.12.06 23:54:00 -
[518]
Ive been working with a full search for agents inside IGB and it works just great, not too bad with speed with tables and of course paged listings when you get hundreds of result.
Anyhow, I have been trying the href="showinfo:1//....." and although I get a link open up, the window just sits there forever trying to load something. Im using the agentID as supplied by CCP so I assume they are correct.
Can anyone give any pointers as to the typeID that I should be using for agents ?
Thanks
|

Sirilonwe
|
Posted - 2005.12.07 11:39:00 -
[519]
Another question: why, oh why, does the ingame browser not take account of any style for the A element? color, text-decoration, and so on, there is only the BODY ALINK VLINK option... is there something planned for this? _______________________ Forums DSU |

Kiarra
|
Posted - 2005.12.08 04:43:00 -
[520]
Originally by: Sirilonwe Another question: why, oh why, does the ingame browser not take account of any style for the A element? color, text-decoration, and so on, there is only the BODY ALINK VLINK option... is there something planned for this?
Well it does kind of 
If you specify an anchor and use a fully qualified URI then the CSSP style definition is recognised. Relative paths come up in the usual orange colour. For a demo, see http://www.home-castle.co.uk while inside Eve. Same address in a normal browser and a totally different website ! Still working on a lot of stuff. It was started in Beta lol
Fully qualified links will show as cyan, whereas others in orange. Unsure what happens when specifying the anchor styles withing a body though. Time to move to stylesheets 
|

Sirilonwe
|
Posted - 2005.12.08 12:16:00 -
[521]
Edited by: Sirilonwe on 08/12/2005 12:19:23 Oh yes thanks, it's working! may I give you a hug? 
erhmm another question: could you make disappear the underline style of the link? _______________________ Forums DSU |

Gunther Hoosler
|
Posted - 2005.12.10 17:28:00 -
[522]
Originally by: Cybu There also seems to be a bug with the email:/emailto: thing. I only get to send mass messages to 'corp'.
This seems to happen if corp was the last tab you opened up in your inbox. if alliance was the last tab you looked at, then it will send an alliance mail
Gunther Hoosler ALi Director
|

Murton
|
Posted - 2005.12.11 10:43:00 -
[523]
Originally by: Kiarra Anyhow, I have been trying the href="showinfo:1//....." and although I get a link open up, the window just sits there forever trying to load something. Im using the agentID as supplied by CCP so I assume they are correct.
I am getting the exact same problem.
What I would really like though is some way of having a list of characters and an easy way to add them to my friends without having to do a manual search on their name.
|

Brannigan McCormick
|
Posted - 2005.12.11 11:42:00 -
[524]
Originally by: Ryushe Code for the form looks like: <form action="./checkuser.php" method="POST" name="checkuser"> Username: <input type="text" name="username"><br /> Password: <input type="password" name="password"><br /><br /> <input type="submit" name="submit" value="enter the dragon"> </form>
I'm seeing this as well, can't get a form to submit, no matter what I try.
/Bran - Its good for you |
|

Traveler

|
Posted - 2005.12.13 08:55:00 -
[525]
Hi,
sorry for not replying for such a long time. The relative path bugs should be fixed, please test. To make showinfo: work on a character, your need to supply 1373 not 1 now.
Traveler UI programmer |
|

Murton
|
Posted - 2005.12.13 16:05:00 -
[526]
Originally by: Traveler Hi,
To make showinfo: work on a character, your need to supply 1373 not 1 now.
Thanks that works great. Now I can have an ingame website listing our war targets so we can just right click on them to add them to our addressbook
|

Dedith Brightstar
|
Posted - 2005.12.14 01:15:00 -
[527]
I have yet to be able to test this on Sisi, but on TQ there is a bug with the textarea tag. If you have any html coding within the text area, such as the default value, the text is not placed within the text box, but rendered before it.
I made an update system for the news page of my corporation's website and this just renders horribly within Eve's browser. I tried seeing if there's anything like this in this thread, but this thing is massive and I could not find it.
Thanks, Dedith Brightstar
|

Ryushe
|
Posted - 2005.12.16 21:02:00 -
[528]
Edited by: Ryushe on 16/12/2005 21:07:17
Originally by: Traveler The relative path bugs should be fixed, please test.
Nope, still not working for me ;( I made a test with relative paths, and one with the form action hardcoded, and the redirect URL in the check script hardcoded as well: The last one works, the first one returns:
"Method Not Implemented
G to /index.html not supported."
Any ideas?
----------------------- Ryushe / CoCEO JubaCorp http://www.jubacorp.com/
|

Guybrush Med
|
Posted - 2005.12.17 04:51:00 -
[529]
2005.03.11 06:57:00 Originally by: Traveler CCP is working on an centralized export DB funtion. This means you will be able to download a list of all known item types, solar systems, agents, and so on. I expect it to appear about 2 weeks after the next patch. I will ask for permission to give you a list that only contains the item name and the item typeID.
This information is 9 Month old... so i would like to ask if the data is published now, and where i can get it. Thanks...
|

Simon Illian
|
Posted - 2005.12.17 11:38:00 -
[530]
devblog from t20 for cw, now we wait for the RMR export :p [Eve Tool for the mass]
Maximum signature image filesize is 24000 bytes - Udat |

Jaka
|
Posted - 2005.12.18 09:40:00 -
[531]
Does anyone know how I can put newlines/line breaks in evemails generated by the evemail: link ?
|

Gunther Hoosler
|
Posted - 2005.12.18 13:43:00 -
[532]
My Forms are completley broken as far as I can tell. Forms that worked before the patch no longer work, hardcoding the full URL as an action doesn't help, relative pathing does not work either. in fact, the FQDN method seems to end up with a relative path by the time it hits the IGB anyway
No use in having a form that you can't submit, and without this feature I'm unable to collect any data.
Anyone have any pointers? My kill site is downed until this is resolved :¼( I know it must be something I'm doing as the eve-extra site does still submit Gunther Hoosler ALi Director
|

Cybu
|
Posted - 2005.12.18 16:33:00 -
[533]
I have found some weird bugs when working with tables that I think should be fixed ASAP.
I've made some examples here: Table bugs
|

SmeaGoG
|
Posted - 2005.12.18 18:49:00 -
[534]
Hi mates,
Have read every post in this thread, but resources seem out of date (PHP 4) or unavailable. Is there a recent page with the IGB variables and showinfo: stuff somewhere?
Gr, GoG
|

Jaka
|
Posted - 2005.12.18 19:48:00 -
[535]
http://bughunters.addix.net/igbtest/IGB-commands.html
|

SmeaGoG
|
Posted - 2005.12.18 21:30:00 -
[536]
Edited by: SmeaGoG on 18/12/2005 21:53:22 Edited by: SmeaGoG on 18/12/2005 21:45:34 Yes, saw that one. Also noticed it's a bit 'dated'. eg.: <br> and $HTTP_SERVER_VARS Therefore I don't know what might not work or has been added since.
I'm not sure how to get itemID's, corpID's and the like.
For instance, I'd like corpmembers to be able to be able to let other corpmembers know what BPC's they are willing to share. I can get the name in the database, but I'd like the typeID's as well. That way I can easily generate a list with showinfo:'s Is this at all possible?
Can someone shed a light on this?
Gr, GoG
|

SmeaGoG
|
Posted - 2005.12.19 09:01:00 -
[537]
Ah, I see. It just saves the whole <a href="showinfo:xxx//xxxx">Link</a> part. Very nice.
|

Jaka
|
Posted - 2005.12.19 14:26:00 -
[538]
What saves the whole <a..> part ?
|

SmeaGoG
|
Posted - 2005.12.19 15:24:00 -
[539]
Edited by: SmeaGoG on 19/12/2005 15:24:46 Understand it was a bit cryptic. By dragging a eve character to a input field in the IGB I'm able to get their charID in the database by running the above <a href=""></a> through a regex and store it.
That way corpmembers don't have to use corpmail..
|

Gunther Hoosler
|
Posted - 2005.12.19 16:40:00 -
[540]
Originally by: Gunther Hoosler My Forms are completley broken as far as I can tell. Forms that worked before the patch no longer work, hardcoding the full URL as an action doesn't help, relative pathing does not work either. in fact, the FQDN method seems to end up with a relative path by the time it hits the IGB anyway
No use in having a form that you can't submit, and without this feature I'm unable to collect any data.
Anyone have any pointers? My kill site is downed until this is resolved :¼( I know it must be something I'm doing as the eve-extra site does still submit
EDIT : I got a form to submit now, but it doesn't work if any return characters are in string. anyone else having similar issues?
K, sussed this thanks to PreTender @ Eve-Extra
Seems the IGB now inserts <br> instead of \r\n. My site runs on IIS which tries to validate the request and it was throwing a wobbly with this as it looks a bit like an HTML attack so was complaining about security. I turned the validation off for this one page and it now accepts the <br> and i just split on that instead
problem solved :¼)
Gunther Hoosler ALi Director
|
| |
|
| 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 |