These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

Corp Site Templates

Author
Gurran Wecri
Viziam
Amarr Empire
#1 - 2013-02-07 17:39:27 UTC
I am looking for a corp site template in PHP/MySQL. I found something on google code called EMPA that was perfect, however it has not been updated since 2010 and is no longer functional. I also found a non-functional Joomla plugin. Any ideas are appreciated.

Thanks,
Timberwolf Programmers

Sincerely, Patrick Thomas (Timberwolf) Timberwolf Programmers Owner & Founder

Louis Vitton
Viziam
Amarr Empire
#2 - 2013-02-07 20:34:06 UTC
"A Corp Site Template".
care to norrow this down to features that you want?
Do you want to pull api info?
Do you want to have a forum?
Do you want it to register users via API for teamspeak?

just a couple of things that i though of.
Gurran Wecri
Viziam
Amarr Empire
#3 - 2013-02-07 23:38:23 UTC

  1. register via eve browser
  2. character sheet as profile
  3. training queue in profile
  4. isk donation
  5. event calendar
  6. news
  7. recruit section
  8. corp chat channel joiner button


Any other features such as kill board would be nice, but is not necessary.

Sincerely, Patrick Thomas (Timberwolf) Timberwolf Programmers Owner & Founder

NickyYo
modro
The Initiative.
#4 - 2013-02-08 01:15:09 UTC
Gurran Wecri wrote:

  1. register via eve browser
  2. character sheet as profile
  3. training queue in profile
  4. isk donation
  5. event calendar
  6. news
  7. recruit section
  8. corp chat channel joiner button


Any other features such as kill board would be nice, but is not necessary.


Not a lot then, why don't you make one?

..

Gurran Wecri
Viziam
Amarr Empire
#5 - 2013-02-08 01:20:00 UTC
NickyYo wrote:
Gurran Wecri wrote:

  1. register via eve browser
  2. character sheet as profile
  3. training queue in profile
  4. isk donation
  5. event calendar
  6. news
  7. recruit section
  8. corp chat channel joiner button


Any other features such as kill board would be nice, but is not necessary.


Not a lot then, why don't you make one?


I have the skills in PHP and MySQL, but I have not been able to figure out how the EVE API works... Not a lot of documentation on it, at least none that I can understand. So unless you direct me in the path of figuring out how the heck to use the EVE API and the EVE browser js libraries, its not possible for me.

Sincerely, Patrick Thomas (Timberwolf) Timberwolf Programmers Owner & Founder

Kosmoto Gothwen
Frenemy Logicians
#6 - 2013-02-08 04:43:24 UTC
A few useful links to help you:
Evelopedia CCP JS: http://wiki.eveonline.com/en/wiki/IGB_Javascript_Methods
Eve Wiki CCP JS: http://wiki.eveonline.com/en/wiki/IGB_Javascript_Methods
EveDev API stuff: http://wiki.eve-id.net/APIv2_Page_Index

Some samples of headers I threw together: http://igb.frenemylogicians.com/testing/

To me it sounds like you should use smf, with the temars plugin. This will get you 1) Forums 2) Calender 3) TS3 Management 4) News Letter 5) Recruit organization (this is just the organization of it, not the character sheet and all the goodies that go with recruiting, but you can make custom pages to handle what you want, if you want/need help with that I can go into more detail.)

Kill boards definitely separate from everything else on a site imo. They have different db's and auth then what ever your main site turns out to be.

If you want to write your own instead, I would NOT recommend using the IGB for user auth to any page of importance. CCP headers are not digitally signed so they can be spoofed and you would never know the difference. Now i suppose you could have non corp critical stuff use headers for auth, but imo if they aren't that important why have an auth that's what corp bulletins are for.
Gurran Wecri
Viziam
Amarr Empire
#7 - 2013-02-08 05:31:53 UTC
Kosmoto Gothwen wrote:
A few useful links to help you:
Evelopedia CCP JS: http://wiki.eveonline.com/en/wiki/IGB_Javascript_Methods
Eve Wiki CCP JS: http://wiki.eveonline.com/en/wiki/IGB_Javascript_Methods
EveDev API stuff: http://wiki.eve-id.net/APIv2_Page_Index

Some samples of headers I threw together: http://igb.frenemylogicians.com/testing/

To me it sounds like you should use smf, with the temars plugin. This will get you 1) Forums 2) Calender 3) TS3 Management 4) News Letter 5) Recruit organization (this is just the organization of it, not the character sheet and all the goodies that go with recruiting, but you can make custom pages to handle what you want, if you want/need help with that I can go into more detail.)

Kill boards definitely separate from everything else on a site imo. They have different db's and auth then what ever your main site turns out to be.

If you want to write your own instead, I would NOT recommend using the IGB for user auth to any page of importance. CCP headers are not digitally signed so they can be spoofed and you would never know the difference. Now i suppose you could have non corp critical stuff use headers for auth, but imo if they aren't that important why have an auth that's what corp bulletins are for.

Thank you for the sites, I am only using IGB for registration.

Sincerely, Patrick Thomas (Timberwolf) Timberwolf Programmers Owner & Founder

Louis Vitton
Viziam
Amarr Empire
#8 - 2013-02-08 09:30:33 UTC
Plus on one of the newer versions of apache it doesnt support headers with " _ " in them like all the eve ones have.
Peter Powers
Terrorists of Dimensions
#9 - 2013-02-08 16:52:23 UTC
Gurran Wecri wrote:
Thank you for the sites, I am only using IGB for registration.

that is a BAD IDEA.
Ingame Browser can be faked!

3rdPartyEve.net - your catalogue for 3rd party applications

Gurran Wecri
Viziam
Amarr Empire
#10 - 2013-02-08 19:45:11 UTC
Peter Powers wrote:
Gurran Wecri wrote:
Thank you for the sites, I am only using IGB for registration.

that is a BAD IDEA.
Ingame Browser can be faked!

It is only for convenience sake, you won't have to register with the browser.

Sincerely, Patrick Thomas (Timberwolf) Timberwolf Programmers Owner & Founder

Gurran Wecri
Viziam
Amarr Empire
#11 - 2013-02-08 19:47:44 UTC
Louis Vitton wrote:
Plus on one of the newer versions of apache it doesnt support headers with " _ " in them like all the eve ones have.

I have Apache/2.2.22 (Ubuntu), does it support underscores?

Sincerely, Patrick Thomas (Timberwolf) Timberwolf Programmers Owner & Founder

Louis Vitton
Viziam
Amarr Empire
#12 - 2013-02-08 20:09:12 UTC
your version should be fine its the next version up thats the issue
here is some info from this forum about it.
https://forums.eveonline.com/default.aspx?g=posts&m=2169408#post2169408