Page 4 of 8

Re: Page Andor's Trail Directory is complete

Posted: Mon Sep 30, 2013 1:52 pm
by fiernaq
You're not using a database? Throw everything into MySQL and pull it out with PHP. That'll give you much faster page loads and sort times. JS is great for manipulating data on a client after the client already has the data but it's no better than HTML at actually loading the data to the client.

Re: Page Andor's Trail Directory is complete

Posted: Tue Oct 01, 2013 2:10 am
by Pyrizzle
One thing i noticed: The ELYR doesn't have the Adds 2 to your max AP listed in the gear list.

Re: Page Andor's Trail Directory is complete

Posted: Thu Oct 03, 2013 4:04 pm
by Richard Faila
Pyrizzle wrote:One thing i noticed: The ELYR doesn't have the Adds 2 to your max AP listed in the gear list.
Good point ... I have it in my database, but I don't show Max AP in table. I change it, because it is the same with Shadow of the slayer.

Re: Page Andor's Trail Directory is complete

Posted: Thu Oct 03, 2013 4:27 pm
by Richard Faila
fiernaq wrote:You're not using a database? Throw everything into MySQL and pull it out with PHP. That'll give you much faster page loads and sort times. JS is great for manipulating data on a client after the client already has the data but it's no better than HTML at actually loading the data to the client.
As I write in my page, I am using database. Actually, there is i powerful cache system, who ensure that data from database is pulled only if source code is changed, otherwise it send pure HTML page (witch has been rendered before) to the client.

Javascript on my page didn't download any more data, it only work with HTML. Only tho things that it do, is sorting and "opening" table row. Even then it take JS some time to make it possible. No wonder, if monster page has almost 1MB (and that is just HTML code).

But yes, you have to wait, (more that I would like) and I am little bit disappointed with performance of some (mobile mainly, you don't have problem in desktop) browsers. But there is little I can do with that.

Re: Page Andor's Trail Directory is complete

Posted: Fri Oct 04, 2013 6:44 pm
by missypearls
Thank you so much for such a great resource page. I refer to it often. I can virtually check out the map and what kind of monsters I will be facing before I ever go there.

Re: Page Andor's Trail Directory is complete

Posted: Fri Oct 04, 2013 7:17 pm
by Ian
Thanks for the page! Really helpful! :D

Re: Page Andor's Trail Directory is complete

Posted: Sat Oct 05, 2013 12:45 am
by Pyrizzle
Richard Faila wrote:
Pyrizzle wrote:One thing i noticed: The ELYR doesn't have the Adds 2 to your max AP listed in the gear list.
Good point ... I have it in my database, but I don't show Max AP in table. I change it, because it is the same with Shadow of the slayer.
Thanks Richard!

I seriously reference this page all the time. =) Thank you for such an awesome fanpage!

Re: Page Andor's Trail Directory is complete

Posted: Thu Jan 30, 2014 1:44 pm
by roebert
a huge thank you for this great website, i love how everything is working hand an hand.
One Question: do you pull the information from the source or do you have to input the information all by yourself?

Re: Page Andor's Trail Directory is complete

Posted: Wed Feb 12, 2014 10:01 pm
by rijackson741
RoL and ShaF add 5 HP to you health when equipped, but this is not shown in your equipment table.

Re: Page Andor's Trail Directory is complete

Posted: Thu Feb 13, 2014 12:05 am
by Richard Faila
roebert wrote:a huge thank you for this great website, i love how everything is working hand an hand.
One Question: do you pull the information from the source or do you have to input the information all by yourself?
I extract almost everything (99.99%) from source data files (*.json), of course... It will be, well not impossible, but really, really long, boring and stupid stuff to do it manually.
rijackson741 wrote:RoL and ShaF add 5 HP to you health when equipped, but this is not shown in your equipment table.
Good point, it is in the database, it just doesn't show up in table. I fix it as soon as I have same time.