Pages: 1 2 3 4 5 6 7 8 :: [one page] |
|
Author |
Thread Statistics | Show CCP posts - 1 post(s) |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
2
|
Posted - 2014.04.13 15:33:00 -
[1] - Quote
Greetings!
Introducing SeAT! A simple (or stupid) EVE API Tool. SeAT attempts to be a Corporation Management Tool written in PHP using the Laravel 4 Framework.
The SeAT backend is highly influenced by YAPEAL. SeAT itself is the result of a rewrite of the original Corporation Management Tool that I wrote for our corp and figured there may be others out there that may need similar tools.
With SeAT, you are able to: - Store member APIs along with the data that is made available via the EVE Online API. This includes wallet journals, mail etc. - Check member skills and assets - Monitor Corporation Starbases and Wallets
The above is just a small snippet of what is actually exposed via the web front end, however there is a lot more information available in the database with SeAT having implemented over 55 API endpoints at the time of this post. Of course as the project matures, more information will be available via the frontend.
Requirements: Basically, a web server capable of serving PHP pages, a MySQL database and the Redis cache. Details are available in the projects docs.
Project Page: https://github.com/eve-seat/seat
As always, feedback is welcome. |
|

CCP FoxFour
C C P C C P Alliance
3025

|
Posted - 2014.04.14 08:16:00 -
[2] - Quote
thank you very much for sharing! :D Love seeing amazing projects like this open sourced. CCP FoxFour // Game Designer // @regnerba
|
|

Kivorno
Myanapa Corsica
44
|
Posted - 2014.04.14 14:17:00 -
[3] - Quote
Very much like the tool, will have a good play around with it. Proud creator and developer of EVE-Merchant |

wariora
The Warp Core Stabilizers Tactical Narcotics Team
19
|
Posted - 2014.04.14 17:00:00 -
[4] - Quote
Borrow me 2bil? |

Korporaal Paling
The Warp Core Stabilizers Tactical Narcotics Team
2
|
Posted - 2014.04.14 19:16:00 -
[5] - Quote
wariora wrote:Borrow me 2bil?
Looking at your wallet data, I would say you need to play less Somer Blink...  |

Ramirez Dora
Snuff Box
90
|
Posted - 2014.04.15 08:18:00 -
[6] - Quote
Is the DB separable from the front-end layer, and would you be ok with people utilising the DB storage solution for other purposes than the front-end dashboard you've designed? Hoping to have a dig into the code later today as well. I've been working with PhealNG a lot for API calling and caching, but this seems to go a step beyond that. Does it use PhealNG or similar under the hood or have you implemented the API call mechanism from scratch? |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
4
|
Posted - 2014.04.15 11:41:00 -
[7] - Quote
Ramirez Dora wrote:Is the DB separable from the front-end layer, and would you be ok with people utilising the DB storage solution for other purposes than the front-end dashboard you've designed? Hoping to have a dig into the code later today as well. I've been working with PhealNG a lot for API calling and caching, but this seems to go a step beyond that. Does it use PhealNG or similar under the hood or have you implemented the API call mechanism from scratch?
They are most definitely separable. The only requirement really would be for you to populate the 'seat_keys' table somehow with actual keys, and then have the workers process the jobs as normal to update the DB. In the next release I'll probably have have a cli util added to add keys too that you could potentially reference off.
As far as API calls go, all of the calls eventually get handed down to pheal-ng to call and return workable results for. Bearing in mind pheal-ng also has a layer of caching added that you just have to keep in mind.
If you don't want to use the web front end, just don't set that part up :) |

Kivorno
Myanapa Corsica
44
|
Posted - 2014.04.16 16:55:00 -
[8] - Quote
Hi qu1ckkkk,
Seem to be running into a problem, I have the server all setup and pulled correctly, however when adding a new API it just seems to spin round without continuing.
The line is seems to be failing on is line 113 in app/controllers/ApiKeyController
$key_info = $pheal->accountScope->APIKeyInfo();
If I place a break point in front of it the output is:
API Key Check Results Pheal\Pheal Object ( [userid:Pheal\Pheal:private] => *USERID* [key:Pheal\Pheal:private] => *APIKEY* [keyType:Pheal\Pheal:private] => [accessMask:Pheal\Pheal:private] => [scope] => account [xml] => )
As mentioned before however, if the break point isn't there then the $key_info is not populated and so hangs.
Any help would be appreciated. Proud creator and developer of EVE-Merchant |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
5
|
Posted - 2014.04.16 17:16:00 -
[9] - Quote
Kivorno wrote: The line is seems to be failing on is line 113 in app/controllers/ApiKeyController
$key_info = $pheal->accountScope->APIKeyInfo();
If I place a break point in front of it the output is:
API Key Check Results Pheal\Pheal Object ( [userid:Pheal\Pheal:private] => *USERID* [key:Pheal\Pheal:private] => *APIKEY* [keyType:Pheal\Pheal:private] => [accessMask:Pheal\Pheal:private] => [scope] => account [xml] => )
As mentioned before however, if the break point isn't there then the $key_info is not populated and so hangs.
Would it be possible to eve-mail me the last bit of output in your laravel.log that can be found in app/storage/logs? Also, you may need to check that the user the webserver is running as has the required permissions to write to app/storage/ as pheal will attempt to cache the received XML from the server to disk for later retrieval if the cached_untill timer has not yet been passed.
Lemme know if this helps. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
5
|
Posted - 2014.04.16 17:50:00 -
[10] - Quote
qu1ckkkk wrote:Kivorno wrote: The line is seems to be failing on is line 113 in app/controllers/ApiKeyController
$key_info = $pheal->accountScope->APIKeyInfo();
If I place a break point in front of it the output is:
Would it be possible to eve-mail me the last bit of output in your laravel.log that can be found in app/storage/logs?
Got this resolved by ensuring that the OS in use has php-curl and curl itself installed and up to date. Will add to install docs soonGäó |
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
5
|
Posted - 2014.04.16 18:57:00 -
[11] - Quote
Just pushed a small release (v0.2) with some small backend & frontend fixes, including a corporation ledger. Version 0.2 Changelog
If you have a older version running, refer to the UPGRADING doc as per "docs/UPGRADING.md" or link here |

Roberta Chikita
Les bourses ou la vie Goonswarm Federation
0
|
Posted - 2014.04.17 01:20:00 -
[12] - Quote
Hi!
Just fresh install Seat on debian 7. All fine with some install command modification but (yes there is but)...
When I go to the base url, it's a directory page. For show the app, I have to go on /server.php
In /server.php I don't have any style (css and JS) because the public folder is not used is url.
I think my vhost and/or rewritemod/rules are involved but I don't show where is the problem..
for my vhostfiles:
Quote:[VirtualHost *:80] ServerAdmin webmaster@localhost DocumentRoot /var/www/seat ServerName seat.myserver.com #DirectoryIndex server.php [Directory /] Options FollowSymLinks AllowOverride None [/Directory] [Directory /var/www/seat] Options Indexes FollowSymLinks AllowOverride All Order allow,deny allow from all
[/Directory]
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ [Directory "/usr/lib/cgi-bin"] Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all [/Directory]
ErrorLog ${APACHE_LOG_DIR}/errorlog.log
# Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined [/VirtualHost] * Replace [] with <> (forum believes it's html :p ) Any ideas?
thank you ! |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
5
|
Posted - 2014.04.17 04:08:00 -
[13] - Quote
Roberta Chikita wrote: DocumentRoot /var/www/seat
Assuming you have SeAT setup in the above directory, you need to configure the document root as /var/www/seat/public. This directory contains a index.php which handles all of the request routing, assuming the .htaccess rules allowed (which seem like the case in your example).
In a typical deployment, you will configure your web server to only expose the public directory, and the rest will not be available for browsing etc. In your case, you could browse all of the SeAT directories if you have directory browsing enabled, which could reveal log files and or other sensitive information that you may not want.
Lemme know if this helps |

Meritsa
Koskenlaskijat
8137
|
Posted - 2014.04.17 08:44:00 -
[14] - Quote
Hello,
This looks really promising. I must install this and play around with it. I am myself a PHP+Jquery developer and so is few of my friends that play Eve here, might just contribute to this project if it seems that we start using this 
Thumbs up for now  :P |

Roberta Chikita
Les bourses ou la vie Goonswarm Federation
0
|
Posted - 2014.04.17 10:32:00 -
[15] - Quote
qu1ckkkk wrote: Assuming you have SeAT setup in the above directory, you need to configure the document root as /var/www/seat/public. This directory contains a index.php which handles all of the request routing, assuming the .htaccess rules allowed (which seem like the case in your example).
Perfect! Work fine but (yeah but again...)
When I try to put a full corp api (for view starbase list and other stuff), the api don't load, the API Key Check Results turn without end!
In my fire bug I had a 500 error with "Whoops, looks like something went wrong" in response.
It seem to fire error when try to pull AccountStatus. In cache folder/phealcache/keyID/vCode/account/AccountStatus/ The request.xml:
Quote:[?xml version='1.0' encoding='UTF-8'?] [eveapi version="2"] [currentTime]2014-04-17 09:20:26[/currentTime] [error code="221"]Illegal page request! Please verify the access granted by the key you are using![/error] [cachedUntil]2014-04-18 09:20:26[/cachedUntil] [/eveapi]
Any idea again? :)
Thank!
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.17 10:48:00 -
[16] - Quote
Roberta Chikita wrote: In my fire bug I had a 500 error with "Whoops, looks like something went wrong" in response.
Ok this is a bug I need to fix. Thanks for the report! I've added the issue to the projects bug tracker here for this to be fixed. If everything works out as planned I can hopefully push a fixed release later tonight. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.17 19:51:00 -
[17] - Quote
qu1ckkkk wrote:Roberta Chikita wrote: In my fire bug I had a 500 error with "Whoops, looks like something went wrong" in response.
Ok this is a bug I need to fix. Thanks for the report! I've added the issue to the projects bug tracker here for this to be fixed. If everything works out as planned I can hopefully push a fixed release later tonight.
Find this fixed in v0.3 here. Following the update guide found hereshould get your sorted out :) |

Wafflehead
Hurricane Research
90
|
Posted - 2014.04.17 21:27:00 -
[18] - Quote
Looks good!, going to try it out tomorrow! |

Euthanasia Anneto
Embers Children TOHA Conglomerate
29
|
Posted - 2014.04.18 08:29:00 -
[19] - Quote
Well, if you could create a converter from the ecm db to the seat db I might give it a try.
.EC.. of [TOHA], Industrialists with guns. We're overe there, some where and no where... Contacting go through ingame convo's .EC.. and [TOHA] are recruiting, get in contact with us |

Roberta Chikita
Les bourses ou la vie Goonswarm Federation
0
|
Posted - 2014.04.18 16:47:00 -
[20] - Quote
qu1ckkkk wrote:Find this fixed in v0.3 here. Following the update guide found hereshould get your sorted out :)
Work's fine thank you !
Just little fix for your UPGRADING.md.
At the end the command "php artisan down" must be "up" to online app :)
|
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.18 17:04:00 -
[21] - Quote
Roberta Chikita wrote:qu1ckkkk wrote:Find this fixed in v0.3 here. Following the update guide found hereshould get your sorted out :) Work's fine thank you ! Just little fix for your UPGRADING.md. At the end the command "php artisan down" must be "up" to online app :)
Fixed here thanks :D Late night typos :P This will be part of the next release. |

Go0fBall
Pwn 'N Play Nulli Secunda
4
|
Posted - 2014.04.20 10:18:00 -
[22] - Quote
Congrats on the amazing job, looks like a wonderful project from all I've seen and read. I wish there was a way to get it to work on a Windows machine . |

Vasant Heft
Victorious Secret.
0
|
Posted - 2014.04.21 23:15:00 -
[23] - Quote
Firstly, I would like to show my appreciation for the software you have written. It is truly a marvelous piece of software.
However, installation can be somewhat cumbersome, so I have gathered the problems that occurred to me while I installed SeAT and the solutions I found to those.
Apache server not finding the requested URL for anything other than the index To solve this, make sure your Apache sites-available file is set to allow overrides and run the command a2enmod rewrite, then restart Apache. This will enable the rewrite module in Apache, which is required to run SeAT.
Error in exception handler when making API calls SeAT requires php5-curl to be installed in order to fetch things from the API server. Install that using your favorite package manager.
I know these two issues are rather obsure and most systems will come preinstalled with this fixed, but I wanted to leave this here anyway. Hope it helps! |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.22 11:56:00 -
[24] - Quote
Vasant Heft wrote:Firstly, I would like to show my appreciation for the software you have written. It is truly a marvelous piece of software.
However, installation can be somewhat cumbersome, so I have gathered the problems that occurred to me while I installed SeAT and the solutions I found to those.
Apache server not finding the requested URL for anything other than the index To solve this, make sure your Apache sites-available file is set to allow overrides and run the command a2enmod rewrite, then restart Apache. This will enable the rewrite module in Apache, which is required to run SeAT.
Error in exception handler when making API calls SeAT requires php5-curl to be installed in order to fetch things from the API server. Install that using your favorite package manager.
I know these two issues are rather obsure and most systems will come preinstalled with this fixed, but I wanted to leave this here anyway. Hope it helps!
Thanks for your tips! :D
I have spent the morning doing a full tutorial on asciinema for the CentOS installation, as well as getting the documentation for it sorted here .
Next on my list is documentation for the Ubuntu/Debian folk after I have completed a install myself.  |

Meritsa
Koskenlaskijat
8137
|
Posted - 2014.04.22 12:11:00 -
[25] - Quote
qu1ckkkk wrote:Vasant Heft wrote:Firstly, I would like to show my appreciation for the software you have written. It is truly a marvelous piece of software.
However, installation can be somewhat cumbersome, so I have gathered the problems that occurred to me while I installed SeAT and the solutions I found to those.
Apache server not finding the requested URL for anything other than the index To solve this, make sure your Apache sites-available file is set to allow overrides and run the command a2enmod rewrite, then restart Apache. This will enable the rewrite module in Apache, which is required to run SeAT.
Error in exception handler when making API calls SeAT requires php5-curl to be installed in order to fetch things from the API server. Install that using your favorite package manager.
I know these two issues are rather obsure and most systems will come preinstalled with this fixed, but I wanted to leave this here anyway. Hope it helps! Thanks for your tips! :D I have spent the morning doing a full tutorial on asciinema for the CentOS installation, as well as getting the documentation for it sorted here . Next on my list is documentation for the Ubuntu/Debian folk after I have completed a install myself. 
I have completed Debian installation and everything is running perfectly now. (Debian 7.4 aka stable wheezy)
On debian and for Apache2 users in general I could make some advanced tutorials like using suphp and custom user rights to run this website on. :P |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.22 12:17:00 -
[26] - Quote
Meritsa wrote: I have completed Debian installation and everything is running perfectly now. (Debian 7.4 aka stable wheezy)
On debian and for Apache2 users in general I could make some advanced tutorials like using suphp and custom user rights to run this website on.
Great - Want to contribute some docs to the repo? For now I believe all that is really needed is to just get it going. Custom enhancements could be something we can doc as extras? |

Meritsa
Koskenlaskijat
8138
|
Posted - 2014.04.22 12:49:00 -
[27] - Quote
qu1ckkkk wrote: Great - Want to contribute some docs to the repo? For now I believe all that is really needed is to just get it going. Custom enhancements could be something we can doc as extras?
I will try to contribute extra docs for Debian/Apache2 environments soonGäó 
I use nickname Tumeski @Github. I just gotta setup a development environment on my own PC so it's easier to push etc... :P |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.22 13:02:00 -
[28] - Quote
Meritsa wrote:
I use nickname Tumeski @Github. I just gotta setup a development environment on my own PC so it's easier to push etc...
Excellent, I am starting a doc up as we speak which will git the dev branch probably today then we have something to start working with. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.22 17:05:00 -
[29] - Quote
Meritsa wrote:qu1ckkkk wrote: Great - Want to contribute some docs to the repo? For now I believe all that is really needed is to just get it going. Custom enhancements could be something we can doc as extras?
I will try to contribute extra docs for Debian/Apache2 environments soonGäó  I use nickname Tumeski @Github. I just gotta setup a development environment on my own PC so it's easier to push etc...
Ok put up a first Ubuntu guide here. Feel free to PR any fixes :) |

Lady Willow
de Kore Ltd.
0
|
Posted - 2014.04.25 10:37:00 -
[30] - Quote
Your script for downloading the DB into the tmp folder doesnt work!
update_sde.sh is brocken i think |
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.25 14:24:00 -
[31] - Quote
Lady Willow wrote:Your script for downloading the DB into the tmp folder doesnt work!
update_sde.sh is brocken i think
Could you please give some more details as to what exactly doesn't work? Also, v0.6 will have a updated version of the sde_updator which is already available in the dev branch here. Feel free to test it out! |

Calthia
Dragon Clan Nulli Secunda
0
|
Posted - 2014.04.28 08:31:00 -
[32] - Quote
The Script cant download the database, he dont find the right name. So it create the directory but this says empty.
have the next problem now.
After starting php artisan migrate i get a warning:
PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/module.so' cannot open shared object fie: No such fie or directory in Unknow on line 0 Mcryp PHP extesion required
I have installed mcrypt-5.3.3-1.e16.rf.x86_64 |

Lady Willow
de Kore Ltd.
0
|
Posted - 2014.04.28 08:56:00 -
[33] - Quote
The Script cant download the database, he dont find the right name. So it create the directory but this says empty.
have the next problem now.
After starting php artisan migrate i get a warning:
PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/module.so' cannot open shared object fie: No such fie or directory in Unknow on line 0 Mcryp PHP extesion required
I have installed mcrypt-5.3.3-1.e16.rf.x86_64 |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.29 03:45:00 -
[34] - Quote
Lady Willow wrote:The Script cant download the database, he dont find the right name. So it create the directory but this says empty.
Ok if I understand you correctly, make sure you are currently in the evesde folder, and are invoking the script with:
Quote: $ cd /var/www/seat/evesde $ sh update_sde.sh Automatically import required SQL files? [y/N]
Lady Willow wrote: have the next problem now.
After starting php artisan migrate i get a warning:
PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/module.so' cannot open shared object fie: No such fie or directory in Unknow on line 0 Mcryp PHP extesion required
I have installed mcrypt-5.3.3-1.e16.rf.x86_64
Ensure that you have mcrypt support enabled. You can check this with:
Quote: $ php -i | grep mcrypt Registered Stream Filters => zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.* mcrypt mcrypt support => enabled <= The important line mcrypt_filter support => enabled mcrypt.algorithms_dir => no value => no value mcrypt.modes_dir => no value => no value
If it does not show this, ensure the module is loading via your php.ini. Your looking for a line that is similar to:
Quote:extension=mcrypt.so
HTH |

Lady Willow
de Kore Ltd.
0
|
Posted - 2014.04.29 08:52:00 -
[35] - Quote
I have it running but, after i login i get the follow message:
Whoops, looks like something went wrong.
What is the standard user? Hov can i create new users? |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.04.29 09:43:00 -
[36] - Quote
Lady Willow wrote:I have it running but, after i login i get the follow message:
Whoops, looks like something went wrong.
Please pastebin an extract from your laravel.log. Chances are you will probably see whats up there 
Lady Willow wrote: What is the standard user? Hov can i create new users?
As for the users, the default is admin and the password should ideally be set with php artisan seat:reset. In a future release SeAT will have a form of multi tenancy. |

Tarlson
sleep Deprivation INC. LLC Brothers of Tangra
4
|
Posted - 2014.05.01 05:04:00 -
[37] - Quote
qu1ckkkk wrote:Lady Willow wrote:Your script for downloading the DB into the tmp folder doesnt work!
update_sde.sh is brocken i think Could you please give some more details as to what exactly doesn't work? Also, v0.6 will have a updated version of the sde_updator which is already available in the dev branch here. Feel free to test it out!
Using v0.6 I had to run the following command on a Ubuntu 14.04 LTS Server install
update-alternatives --install /bin/sh sh /bin/bash 1
If I didn't run the above it would give me the "Function not Found" error, this is due to Ubuntu using Dash instead of Bash..... |

Lady Willow
de Kore Ltd.
0
|
Posted - 2014.05.07 15:01:00 -
[38] - Quote
Need pls help with tis error:
[2014-05-07 14:58:00] production.ERROR: exception 'Predis\Connection\ConnectionException' with message 'Connection refused [tcp://127.0.0.1:6379]' in /var/www/html/seat/vendor/predis/predis/lib/Predis/Connection/AbstractConnection.php:141 |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.05.07 18:02:00 -
[39] - Quote
Lady Willow wrote:Need pls help with tis error:
[2014-05-07 14:58:00] production.ERROR: exception 'Predis\Connection\ConnectionException' with message 'Connection refused [tcp://127.0.0.1:6379]' in /var/www/html/seat/vendor/predis/predis/lib/Predis/Connection/AbstractConnection.php:141
Make sure that Redis is running and if you are running on CentOS, some docs about SELinux were recently added in the dev branch that could cause the error you are experiencing. Read about it here in the security -> SELinux section |

RJander
Federal Navy Academy Gallente Federation
1
|
Posted - 2014.05.14 18:28:00 -
[40] - Quote
hi,
noob here..
I have follow your tuto with ubuntu, so far so good, everything works.. except the data base install with your script.. but i installed the entire rubicon database from fuzzwork (i need them).. so.. I have acces to the front end, and the admin part (no css tough??) My probleme (off course^^) come when i want to put a apikey.. i just have a page "Not Found
The requested URL /seat/public/api-key/new-key was not found on this server."
so.. i don't know what i doing wrong..
if i can pass you log or something.. just tell me where i can find them.. |
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.05.14 18:42:00 -
[41] - Quote
RJander wrote:hi,
noob here..
I have follow your tuto with ubuntu, so far so good, everything works.. except the data base install with your script.. but i installed the entire rubicon database from fuzzwork (i need them).. so..
Having all of the tables there is perfectly fine :) Would be great if you could elaborate what exactly went wrong with the SDE updater so that it could be fixed. If possible, log a issue on the projects github page.
RJander wrote: I have acces to the front end, and the admin part (no css tough??) My probleme (off course^^) come when i want to put a apikey.. i just have a page "Not Found
The requested URL /seat/public/api-key/new-key was not found on this server."
so.. i don't know what i doing wrong..
if i can pass you log or something.. just tell me where i can find them..
This sounds like something related to web server setup if I have to think about it really quickly. Especially the mention of no CSS. Double check your virtual hosts configuration file and that the webserver paths are correct. If you still can't figure it out, feel free to come hop by the IRC channel and when I'm around I'll try help you out. |

RJander
Federal Navy Academy Gallente Federation
1
|
Posted - 2014.05.14 22:38:00 -
[42] - Quote
i will try to repet the process with the SDE updater..
I don't use a virtual host. I put the site on "/var/www/html/seat" Do i have to config app.php?? because i try whitout touching it, and with " 'url' => 'http///localhost/seat', ", but nothing change.. When i make change in this file, do i have to restart something?? I also check chmod et chown, put all acces to everyone and make www-data the owner.. no change.. I use a VM VirtualBox with ubuntu 14.04 and apache 2.4.7
I have install wordpress for testing, and all works without probleme..
I will try to find out by digging the net, but so far i don't find anything related
(sorry for my bad english) |

DaveTheGreat
Enlightened Industries Goonswarm Federation
6
|
Posted - 2014.05.16 10:43:00 -
[43] - Quote
Great web app. I will be looking forward to see where you go with it.
I powered up a new VPS, and got it working in about an hour or so following your great Video guide.
I will be mainly using it for the api pulls and recoding my pos monitoring application around it.
|

Denavit
We are not bad. Just unlucky Goonswarm Federation
5
|
Posted - 2014.05.21 17:53:00 -
[44] - Quote
Hi, im stuck, after typing
sh update_sde.sh
i got a command not found and an error in the file not expected or somethign --> "}"
si i searched and found that using this
update-alternatives --install /bin/sh sh /bin/bash 1
would solve that problem, and it did, but now, after using sh update.sde.sh it does start after asking for database usar, password, host and name, but..
at the end i dont get any .sql file, it says getting dump /tmp/seat-xxxxxx and then extracting, at the end it says
Importing the Sql fiels into MySQl... and it quits
so when i try to populate it says no such file or directory it ask for password and thats all
can you help me? thank you in advance. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.05.22 04:15:00 -
[45] - Quote
Denavit wrote: so when i try to populate it says no such file or directory it ask for password and thats all
can you help me? thank you in advance.
Have you checked your db if the imports did not complete? A successful import will have no output, and you should at least see a table called invTypes. Simple Corporation Management: http://eve-seat.github.io/seat/ |

CivilWars
Rolled Out
84
|
Posted - 2014.06.04 15:36:00 -
[46] - Quote
Hello,
Big fan of SeAT. We recently updated to 0.8, and every time I try to add an API key I get the "Whoops" error message. It does actually add the API, but instead of it taking me to a success page it says it fails. Is there something we need to check on our end? Thanks. |

Nutbolt
Avalon Project Shadow Rock Alliance
89
|
Posted - 2014.06.04 16:51:00 -
[47] - Quote
CivilWars wrote:Hello,
Big fan of SeAT. We recently updated to 0.8, and every time I try to add an API key I get the "Whoops" error message. It does actually add the API, but instead of it taking me to a success page it says it fails. Is there something we need to check on our end? Thanks.
I believe this was fixed in this issue: https://github.com/eve-seat/seat/issues/97
So you should see a fix for this in 0.9 when this comes out.
|

CivilWars
Rolled Out
84
|
Posted - 2014.06.04 17:00:00 -
[48] - Quote
Much thanks. |

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
0
|
Posted - 2014.06.09 01:06:00 -
[49] - Quote
Just did a successful install on my Raspberry Pi. Works great so far, thanks! |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.06.22 14:49:00 -
[50] - Quote
So SeAT v0.9 just landed, with the much awaited multi user support. You can now create more users, have members in your corporation register and grant them access to certain parts of the corporation information available in the frontend.
It should be noted that this is the very first iteration of the multi user support and and such, any bugs or potential errors should be reported asap so we can fix it !
Enjoy :) Simple Corporation Management: http://eve-seat.github.io/seat/ |
|

DaveTheGreat
Enlightened Industries Goonswarm Federation
6
|
Posted - 2014.06.23 15:17:00 -
[51] - Quote
qu1ckkkk wrote:So SeAT v0.9 just landed,
Enjoy :) That was a quick and easy upgrade. 
|

DaveTheGreat
Enlightened Industries Goonswarm Federation
6
|
Posted - 2014.06.27 17:43:00 -
[52] - Quote
Will the new industry api's Industry API's be included in the next release after the Cruis release. |

Solarais
Wardogs. The Predictables
9
|
Posted - 2014.06.30 01:40:00 -
[53] - Quote
Working great!!
amazing app, would recommend |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.06.30 11:07:00 -
[54] - Quote
DaveTheGreat wrote:Will the new industry api's Industry API's be included in the next release after the Cruis release.
Definitely. The current Industry API's never really got much love due to the soon incoming API changes so it never made sense to spend much time on them. Post-Cruis will ofc be a different story :) Simple Corporation Management: http://eve-seat.github.io/seat/ |

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
4
|
Posted - 2014.06.30 22:52:00 -
[55] - Quote
Getting an error since yesterday. Seems that SeAT is stuck, even after rebooting the server. I have 1 job queued (ServerStatus), 1 job Working (AllianceList Update) and one job failed (Jumps Update), website error log here, laravel.log here. All jobs at least 1 day old. Anything i can do?
Best Regards |

DaveTheGreat
Enlightened Industries Goonswarm Federation
6
|
Posted - 2014.07.02 09:29:00 -
[56] - Quote
Arkumord Churhee wrote:Getting an error since yesterday. Seems that SeAT is stuck, even after rebooting the server. I have 1 job queued (ServerStatus), 1 job Working (AllianceList Update) and one job failed (Jumps Update), website error log here, laravel.log here. All jobs at least 1 day old. Anything i can do? Best Regards I had a similar problem, my solution was just to change the status of the line in queue_information table in the seat database from Working to Done. It cleared the job. The api pull worked ok the next time round.
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.07.02 12:06:00 -
[57] - Quote
Arkumord Churhee wrote:Getting an error since yesterday. Seems that SeAT is stuck, even after rebooting the server. I have 1 job queued (ServerStatus), 1 job Working (AllianceList Update) and one job failed (Jumps Update), website error log here, laravel.log here. All jobs at least 1 day old. Anything i can do? Best Regards
Sorry for the late reply.
If the job is still queued you can just delete it using the cross icon "X" next to the job. As for the working job not finishing, there may be a need to just update the status to Done to get it out of the way. As for the error you gave, sadly its missing the stack trace at the end which can help ID the problem.
If you still stuck, feel free to hop onto the IRC as per the docs and lets see if we can help you out. Simple Corporation Management: http://eve-seat.github.io/seat/ |

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
4
|
Posted - 2014.07.06 15:39:00 -
[58] - Quote
Hi there,
thanks for the response, it worked! Also, thanks for all the updates that are coming :) just finished installing v0.9.1!
Best regards |

Lan Wang
Coreli Corporation Ineluctable.
26
|
Posted - 2014.07.07 15:04:00 -
[59] - Quote
can this system be incorporated into wordpress? |

Nutbolt
Avalon Project Shadow Rock Alliance
90
|
Posted - 2014.07.07 15:26:00 -
[60] - Quote
Lan Wang wrote:can this system be incorporated into wordpress?
How do you mean? Do you have a bunch of API keys in wordpress you would like to import to SeAT, or would you like to simply display SeAT within a wordpress page on your website, or something else?
|
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.07.08 09:13:00 -
[61] - Quote
Lan Wang wrote:can this system be incorporated into wordpress?
I have to admit this is a little bit vague. Could you clarify what exactly you have in mind?
FWIW, almost all of the SeAT components can be used independently. The web front-end is actually optional too. Inserting API keys can be done with a simple insert into the correct table, and the next time the workers come by they will simply pick them up and start processing. So you could for example only make use of the backend stuff, using the tables it populates for your own tools etc. Simple Corporation Management: http://eve-seat.github.io/seat/ |

Lan Wang
Coreli Corporation Ineluctable.
27
|
Posted - 2014.07.08 09:41:00 -
[62] - Quote
Sort of just incorporating the system with a wordpress theme instead of using your system so you are just using a website instead, not sure how to approach it as im new to api stuff |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.07.09 08:08:00 -
[63] - Quote
Lan Wang wrote:Sort of just incorporating the system with a wordpress theme instead of using your system (front end) so you are just using a website instead, not sure how to approach it as im new to api stuff
So if i wanted to create my own wordpress theme and just have your backend functionality and the wordpress cms funtionality working alongside
Yeah at the end of the day you can do whatever you like. You probably need to study the code a little to understand how the components fit together, and pick out what you want. Understanding Laravel would be of great value too.
Good luck! Simple Corporation Management: http://eve-seat.github.io/seat/ |

Lan Wang
Coreli Corporation Ineluctable.
28
|
Posted - 2014.07.09 09:16:00 -
[64] - Quote
qu1ckkkk wrote:Lan Wang wrote:Sort of just incorporating the system with a wordpress theme instead of using your system (front end) so you are just using a website instead, not sure how to approach it as im new to api stuff
So if i wanted to create my own wordpress theme and just have your backend functionality and the wordpress cms funtionality working alongside Yeah at the end of the day you can do whatever you like. You probably need to study the code a little to understand how the components fit together, and pick out what you want. Understanding Laravel would be of great value too. Good luck!
Thanks ill give it a try :)
|

Jeronica
Tackled In Belt xXPlease Pandemic Citizens Reloaded Alliance.Xx
344
|
Posted - 2014.07.10 19:50:00 -
[65] - Quote
Another laravel project! Great! I see you're using Sentry as well.
Nice UI as well. EVE-Mogul: https://www.eve-mogul.com CEO/Programmer Trade Profit Tracking Service |

TeamSpeak Holding
TS Hosting Holding Corp
3
|
Posted - 2014.07.30 06:01:00 -
[66] - Quote
question i have can this be installed on a cpanel account with jailed ssh rights?? |

DaveTheGreat
Enlightened Industries Goonswarm Federation
6
|
Posted - 2014.07.30 09:36:00 -
[67] - Quote
TeamSpeak Holding wrote:question i have can this be installed on a cpanel account with jailed ssh rights?? No I tried and failed with a cpanel account, even with ssh rights you need install rights which you will not have.
I just bought a vps from https://crissic.net/openvz_vps I searched and found a discount code for them and it only costs me $11:25 per year. There is lots of budget VPS providers out there.
I doesn't take much time to get setup and a budget VPS seems ok for my use. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
6
|
Posted - 2014.07.30 10:27:00 -
[68] - Quote
TeamSpeak Holding wrote:question i have can this be installed on a cpanel account with jailed ssh rights??
Technically Laravel apps can run on CPanel installs. However I have seen a few failed attempts at getting SeAT going on CPanel environments. Unfortunately, the only supported installation method at the moment is a dedicated server (or VPS/VM of some sort) where you have full root. Like already mentioned, take a look at a few of the maaaany VPS providers out there. Some are actually dirt cheap and you may even decide to ditch Cpanel ;) Simple Corporation Management: http://eve-seat.github.io/seat/ |

DaveTheGreat
Enlightened Industries Goonswarm Federation
6
|
Posted - 2014.07.30 13:23:00 -
[69] - Quote
Would it be possible to get in the next release the
IndustryJobsHistory.xml.aspx
api endpoint added in for both Corp and character calls
As I like to look back at success rates of old jobs for invention etc. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.07.30 15:46:00 -
[70] - Quote
DaveTheGreat wrote:Would it be possible to get in the next release the
IndustryJobsHistory.xml.aspx
api endpoint added in for both Corp and character calls
As I like to look back at success rates of old jobs for invention etc.
Definitely :) Simple Corporation Management: http://eve-seat.github.io/seat/ |
|

Shinjo Bajahnhosuu
Outer Ring Sleeper Collective Illusion of Solitude
19
|
Posted - 2014.07.30 17:21:00 -
[71] - Quote
Hi. Am looking at your app but the demo site (eveseat.com) appears to be down.
Any way of giving it a swift kick in the behind? |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.07.31 07:25:00 -
[72] - Quote
Shinjo Bajahnhosuu wrote:Hi. Am looking at your app but the demo site (eveseat.com) appears to be down.
Any way of giving it a swift kick in the behind?
Looks like its up again let us know. Simple Corporation Management: http://eve-seat.github.io/seat/ |

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
5
|
Posted - 2014.07.31 15:25:00 -
[73] - Quote
Hey buddy,
thanks for the Crius update. Love it! Updated without flaw. Keep up the good work! Let me know if there's any way to support you. |

Nay Stigma
That Escalated Quickly Nerfed Alliance Go Away
796
|
Posted - 2014.08.03 19:26:00 -
[74] - Quote
Been using your website for the good 3 months I love it. Is there a way to make multiple instance of the website so every corp in my alliance can have there own.
Keep up the good work. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.08.04 08:20:00 -
[75] - Quote
Nay Stigma wrote:Been using your website for the good 3 months I love it. Is there a way to make multiple instance of the website so every corp in my alliance can have there own.
Keep up the good work.
You can simply add another corporation API. You can only see information for corporations (and assuming you have the correct roles) for API's (and the respective characters) you own.
HTH Simple Corporation Management: http://eve-seat.github.io/seat/ |

Nay Stigma
That Escalated Quickly Nerfed Alliance Go Away
796
|
Posted - 2014.08.04 17:38:00 -
[76] - Quote
qu1ckkkk wrote:Nay Stigma wrote:Been using your website for the good 3 months I love it. Is there a way to make multiple instance of the website so every corp in my alliance can have there own.
Keep up the good work. You can simply add another corporation API. You can only see information for corporations (and assuming you have the correct roles) for API's (and the respective characters) you own. HTH
Got it now, I feel dumb now lol
Thanks again |

Nay Stigma
That Escalated Quickly Nerfed Alliance Go Away
796
|
Posted - 2014.08.04 21:09:00 -
[77] - Quote
When people try to register on the site i get this. I think I may have forgot a step somewhere.
Error Whoops, looks like something went wrong.
If you could point me where to look would be great.
Thanks again |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.08.05 07:05:00 -
[78] - Quote
Nay Stigma wrote:When people try to register on the site i get this. I think I may have forgot a step somewhere.
Error Whoops, looks like something went wrong.
If you could point me where to look would be great.
Thanks again
For any Whoops you have 2 options. Have a look at app/storage/logs/laravel.log, or flip the debug mode on in app/config/app.php . Just keep in mind that this debug mode is very verbose, and you should put it off again once you are done testing as it reveals a lot about your server & install. Simple Corporation Management: http://eve-seat.github.io/seat/ |

Haseo Yikari
0
|
Posted - 2014.08.26 19:58:00 -
[79] - Quote
I have a strange bug when i try to insert a Corp api evryting is good : A Job will be queued to update all key information Adding this key will queue a job to update its information immediately
But when i click on the button : Add this key.
A new windows open and it writed: Error in exception handler.
Any idea why? |

Cylin Rath
17
|
Posted - 2014.08.26 20:10:00 -
[80] - Quote
Haseo Yikari wrote:I have a strange bug when i try to insert a Corp api evryting is good : A Job will be queued to update all key information Adding this key will queue a job to update its information immediately
But when i click on the button : Add this key.
A new windows open and it writed: Error in exception handler.
Any idea why?
I had this problem as well. It turned out to be that root owned one of the log files not the user running SeAT. My install is on Ubuntu so /var/www/seat/app/storage/logs/laravel.log needed to be owned/writable to www-data instead of root. |
|

In Spirit
Federal Navy Academy Gallente Federation
7
|
Posted - 2014.09.08 10:12:00 -
[81] - Quote
Successfully got this up and running, but when trying to add an API key it throws an error 77, with no description. Is there any information as to what this error is referring to?
Thanks! |

In Spirit
Federal Navy Academy Gallente Federation
7
|
Posted - 2014.09.08 10:12:44 -
[82] - Quote
Successfully got this up and running, but when trying to add an API key it throws an error 77, with no description. Is there any information as to what this error is referring to?
Thanks! |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.09.10 13:27:00 -
[83] - Quote
In Spirit wrote:Successfully got this up and running, but when trying to add an API key it throws an error 77, with no description. Is there any information as to what this error is referring to?
Thanks!
Can't say right out of my head what the problem may be. Could you come hop onto IRC and detail the problem and give some log extracts so that we could help? Simple Corporation Management: http://eve-seat.github.io/seat/ |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.09.10 13:27:41 -
[84] - Quote
In Spirit wrote:Successfully got this up and running, but when trying to add an API key it throws an error 77, with no description. Is there any information as to what this error is referring to?
Thanks!
Can't say right out of my head what the problem may be. Could you come hop onto IRC and detail the problem and give some log extracts so that we could help?
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

Janon Shimaya
Mahal Mining and Transport Ltd.
0
|
Posted - 2014.09.20 18:01:00 -
[85] - Quote
I've got a amateur question to this topics. Is it possible to install seat without access to the root server? I've got some webspace, so I like to install it their, but so far as I can see, I need acces to the server command line. |

Janon Shimaya
Mahal Mining and Transport Ltd.
0
|
Posted - 2014.09.20 18:01:45 -
[86] - Quote
I've got a amateur question to this topics. Is it possible to install seat without access to the root server? I've got some webspace, so I like to install it their, but so far as I can see, I need acces to the server command line. |

Nutbolt
Avalon Project Shadow Rock Alliance
90
|
Posted - 2014.09.20 22:31:00 -
[87] - Quote
Janon Shimaya wrote:I've got a amateur question to this topics. Is it possible to install seat without access to the root server? I've got some webspace, so I like to install it their, but so far as I can see, I need acces to the server command line.
Unfortunately if it is just your basic web hosting then no you cannot run SeAT on it, as it requires programs to be running etc...
You can rent VPS's for relatively low costs, however it is obviously a little more advanced, although the install guide for SeAT is very good.
|

Nutbolt
Avalon Project Shadow Rock Alliance
91
|
Posted - 2014.09.20 22:31:44 -
[88] - Quote
Janon Shimaya wrote:I've got a amateur question to this topics. Is it possible to install seat without access to the root server? I've got some webspace, so I like to install it their, but so far as I can see, I need acces to the server command line.
Unfortunately if it is just your basic web hosting then no you cannot run SeAT on it, as it requires programs to be running etc...
You can rent VPS's for relatively low costs, however it is obviously a little more advanced, although the install guide for SeAT is very good.
[center]Join Avalon Project Today! | Capital Component BPC Shop[/center]
|

Critical Mind
Deep Core Mining Inc. Caldari State
0
|
Posted - 2014.09.27 07:51:00 -
[89] - Quote
Hello,
tried to register on demo website twice, never received any email to confirm account... |

Critical Mind
FDTN F O N D A T I O N
0
|
Posted - 2014.09.27 07:51:41 -
[90] - Quote
Hello,
Got a Corporation API Job error on fresh install from Git source :
Quote:
View Job Error SeAT v0.9.2
Job Details for Job 5:
If this is not a error that you understand, or a developer would like to see the stack trace, please copy the full content of the below block, paste it in Pastebin and send the link along.
JobID: yhTE32GLs7ydYQOBC6YB OwnerID: 3468932 API: Corporation Scope: Eve Status: Error Created At: 2014-09-27 13:09:29 (7 minutes ago) Last Updated At: 2014-09-27 13:12:30 (4 minutes ago)
Last status: Started WalletJournal Update Error: 0: Undefined variable: wallet_journal File: /var/www/html/seat/app/eveapi/corporation/CorporationWalletJournal.php:142 Trace: #0 /var/www/html/seat/app/eveapi/corporation/CorporationWalletJournal.php(142): Illuminate\Exception\Handler->handleError(8, 'Undefined varia...', '/var/www/html/s...', 142, Array) #1 /var/www/html/seat/app/queues/full/EveCorporation.php(103): Seat\EveApi\Corporation\WalletJournal::Update('3468932', '8nOItlOjMYYNIWk...') #2 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(96): Seat\EveQueues\Full\Corporation->fire(Object(Illuminate\Queue\Jobs\RedisJob), Array) #3 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Queue/Jobs/RedisJob.php(46): Illuminate\Queue\Jobs\Job->resolveAndFire(Array) #4 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(119): Illuminate\Queue\Jobs\RedisJob->fire() #5 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(71): Illuminate\Queue\Worker->process('redis', Object(Illuminate\Queue\Jobs\RedisJob), '1', '0') #6 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(64): Illuminate\Queue\Worker->pop(NULL, 'default', '0', '128', '3', '1') #7 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Console/Command.php(108): Illuminate\Queue\Console\WorkCommand->fire() #8 /var/www/html/seat/vendor/symfony/console/Symfony/Component/Console/Command/Command.php(241): Illuminate\Console\Command->execute(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #9 /var/www/html/seat/vendor/laravel/framework/src/Illuminate/Console/Command.php(96): Symfony\Component\Console\Command\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #10 /var/www/html/seat/vendor/symfony/console/Symfony/Component/Console/Application.php(887): Illuminate\Console\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #11 /var/www/html/seat/vendor/symfony/console/Symfony/Component/Console/Application.php(191): Symfony\Component\Console\Application->doRunCommand(Object(Illuminate\Queue\Console\WorkCommand), Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #12 /var/www/html/seat/vendor/symfony/console/Symfony/Component/Console/Application.php(121): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #13 /var/www/html/seat/artisan(59): Symfony\Component\Console\Application->run() #14 {main} Previous:
If it's possible to get some help ?
Thanks. |
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.09.28 08:51:00 -
[91] - Quote
Critical Mind wrote:Hello,
Got a Corporation API Job error on fresh install from Git source :
Hey,
Currently this is a known issue with some fresh installs. There is a Git issue open too: https://github.com/eve-seat/seat/issues/96
For now you can just give it some time and it will just "go away". Its a crappy answer I know but it will be fixed soon :) Simple Corporation Management: http://eve-seat.github.io/seat/ |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.09.28 08:51:03 -
[92] - Quote
Critical Mind wrote:Hello,
Got a Corporation API Job error on fresh install from Git source :
Hey,
Currently this is a known issue with some fresh installs. There is a Git issue open too: https://github.com/eve-seat/seat/issues/96
For now you can just give it some time and it will just "go away". Its a crappy answer I know but it will be fixed soon :)
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.12.03 18:19:32 -
[93] - Quote
Small bump. Lots work has been going in to fix bugs and add some new things. You should be seeing a next release soon. Feel free to watch the project's dev branch here https://github.com/eve-seat/seat/commits/dev :)
A small note to those that use SeAT as a backend only. Due to API response changes in char/CharacterSheet with the jump clones and implants, some model changes had to be made too. Be sure to check them out and sorry for any inconvenience.
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

Lilu Egnald
Hostess Industries
0
|
Posted - 2014.12.03 23:38:34 -
[94] - Quote
looks awesome. The git faq says mail isn't implemented yet tho? Is this still the case?
Kinda need mail to do a halfway decent api check |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.12.04 03:53:28 -
[95] - Quote
Lilu Egnald wrote:looks awesome. The git faq says mail isn't implemented yet tho? Is this still the case?
Kinda need mail to do a halfway decent api check
Could you elaborate a little more?
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

Lilu Egnald
Hostess Industries
0
|
Posted - 2014.12.04 10:00:38 -
[96] - Quote
qu1ckkkk wrote:Lilu Egnald wrote:looks awesome. The git faq says mail isn't implemented yet tho? Is this still the case?
Kinda need mail to do a halfway decent api check Could you elaborate a little more?
on github it lists mail as a feature not yet added |

Nutbolt
Avalon Project Shadow Rock Alliance
91
|
Posted - 2014.12.04 10:52:43 -
[97] - Quote
Lilu Egnald wrote:qu1ckkkk wrote:Lilu Egnald wrote:looks awesome. The git faq says mail isn't implemented yet tho? Is this still the case?
Kinda need mail to do a halfway decent api check Could you elaborate a little more? on github it lists mail as a feature not yet added
Do you mean mail as in e-mail for say a password reset, or mail as in in-game EVE mail?
[center]Join Avalon Project Today! | Capital Component BPC Shop[/center]
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.12.06 12:42:10 -
[98] - Quote
v0.10.0 just landed :)
https://github.com/eve-seat/seat/releases/tag/v0.10.0
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

Franky Saken
Hard Knocks Inc.
51
|
Posted - 2014.12.06 13:21:31 -
[99] - Quote
Thank you for an awesome tool with an easy setup that looks pretty as **** :) |

DaveTheGreat
Enlightened Industries Goonswarm Federation
7
|
Posted - 2014.12.06 16:05:36 -
[100] - Quote
Is there any way to turn off some api pulls, to reduce the load on the server.
Like the killmails . Other than changing the api key itself.
|
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.12.06 17:50:16 -
[101] - Quote
DaveTheGreat wrote:Is there any way to turn off some api pulls, to reduce the load on the server.
Like the killmails . Other than changing the api key itself.
Unfortunately not at the moment no. But, it is definitely something I have thought about before.
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
24
|
Posted - 2014.12.15 18:54:30 -
[102] - Quote
And v0.11 has also landed, thank you so much! I love it! |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
8
|
Posted - 2014.12.20 20:43:59 -
[103] - Quote
A quick update.
v0.12.0 has been an explosive release! Many, many new features have been added like a new installer as well as the beginnings of a API for integration purposes. Quite a number of people have been working very hard on this release so thanks to all : D
Go check it out and let us know :) https://github.com/eve-seat/seat/releases/tag/v0.12.0
Simple Corporation Management:
http://eve-seat.github.io/seat/
|

Xsyn
Tactical Terror Tactical Terror Alliance
2
|
Posted - 2014.12.29 07:25:22 -
[104] - Quote
Wow, was about to add something like this for our site but I thought I would just do a quick search and expected to find out of date, several year old dead projects like many others. Surprised to see a very nice looking API management with easy installation.
I went through the demo and plan on including this as a front-end to our user dashboard for management users.
Nice work!  |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
9
|
Posted - 2015.01.03 13:12:48 -
[105] - Quote
Just slapped together a small feature page with updated screenshots etc. http://eve-seat.github.io/
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
24
|
Posted - 2015.01.17 17:04:10 -
[106] - Quote
Great to see that 0.13.0 is out! |

Arthmer
Cascading Failure Un.Bound
0
|
Posted - 2015.01.27 17:49:22 -
[107] - Quote
I wrote a quick tool to link Alliance Auth ( https://forums.eveonline.com/default.aspx?g=posts&t=383030&find=unread ) API keys to the SeAT API keys. Might be useful to others.
https://github.com/awerries/allianceauth_to_seat |

Mr Twinkie
Black Serpent Technologies Black Legion.
7
|
Posted - 2015.02.01 08:21:31 -
[108] - Quote
any doc detailing group permissions? |

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.02.01 09:01:40 -
[109] - Quote
Not currently, it is fairly self explanatory, but yes some docs would be useful! Feel free to write some :)
Join us in the IRC channel where someone who actually knows can probably detail the group permissions.
[center]Join Avalon Project Today! | Capital Component BPC Shop[/center]
|

Mr Twinkie
Black Serpent Technologies Black Legion.
7
|
Posted - 2015.02.01 09:45:19 -
[110] - Quote
Also an idea, some kind of front end for recruits to enter there api info so all the recruiters needs to do is look up the character |
|

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.02.01 11:52:25 -
[111] - Quote
Mr Twinkie wrote:Also an idea, some kind of front end for recruits to enter there api info so all the recruiters needs to do is look up the character
This exists, but isn't officially supported or anything: https://github.com/eve-seat/seat-recruitment
I have some ideas as well for recruitment, but they are very low down on the to do list sadly, as other important things which need to be done first.
Join Avalon Project Today!
|

Mr Twinkie
Black Serpent Technologies Black Legion.
7
|
Posted - 2015.02.02 06:47:18 -
[112] - Quote
Nutbolt wrote:Mr Twinkie wrote:Also an idea, some kind of front end for recruits to enter there api info so all the recruiters needs to do is look up the character This exists, but isn't officially supported or anything: https://github.com/eve-seat/seat-recruitment I have some ideas as well for recruitment, but they are very low down on the to do list sadly, as other important things which need to be done first.
not officialy supported but is there any guiidance on how to install that? |

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.02.02 18:51:14 -
[113] - Quote
Not really I'm afraid. My suggestion would be to join the IRC channel (detailed in the OP) and ask quckkkk as he is the one who made it.
Join Avalon Project Today!
|

Aribeth Thiesant
Fluffy Inquisition
0
|
Posted - 2015.02.23 22:31:44 -
[114] - Quote
I'm not getting any corp options or dropdowns in the menu even though I've successfully registered the corp API with full access. |

Adrienne Rousseau
Renegade Collective The Volition Cult
0
|
Posted - 2015.02.27 22:45:17 -
[115] - Quote
I have followed the installation guide and video for Ubuntu 14.04 five times, each on a fresh install of the OS. Each time I end up with "Firefox can't find the server at www.seat.local." after clicking on the link at the end of the guide. I'm sure you need more information than that to give me some tips, but I don't have a clue what you'd need. |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
10
|
Posted - 2015.02.28 11:26:58 -
[116] - Quote
Adrienne Rousseau wrote:I have followed the installation guide and video for Ubuntu 14.04 five times, each on a fresh install of the OS. Each time I end up with "Firefox can't find the server at www.seat.local." after clicking on the link at the end of the guide. I'm sure you need more information than that to give me some tips, but I don't have a clue what you'd need.
Ill suggest you come hop onto the IRC channel so we can help diagnose whats up. Does www.seat.local resolve to the correct IP?
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Hatshepsut IV
Cascading Failure Un.Bound
343
|
Posted - 2015.03.03 02:42:18 -
[117] - Quote
Ok so a minor issue that kinda drives me bonkers.
http://puu.sh/gk84l/5818433230.jpg
Some of the corp keys input into SeAT have icons for the corp tabs while some doesn't.
Any idea of why this is?
You too can start failing today!
Reddit ad | Cascading Failure
Public Channel | Aspiring Failure
|

Arthmer
Cascading Failure Un.Bound
1
|
Posted - 2015.03.03 03:36:01 -
[118] - Quote
Hatshepsut IV wrote:Ok so a minor issue that kinda drives me bonkers. http://puu.sh/gk84l/5818433230.jpg
Some of the corp keys input into SeAT have icons for the corp tabs while some doesn't. Any idea of why this is?
We fixed this in seat/app/services/helpers/helpers.php for the generateEveImage() function. Our corp violates your assumptions of ID ranges. I have hardcoded a horrifying fix until a better solution exists. :) http://puu.sh/gkbqV/40b374745d.png |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
10
|
Posted - 2015.03.03 04:25:28 -
[119] - Quote
The current dev branch has an almost completely refactored image generation logic with the primary focus to support lazy loading. I'd be curious to see the corporation ID's affected here so that I could have a closer look. At best, hop onto IRC so we could try and debug.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Arthmer
Cascading Failure Un.Bound
1
|
Posted - 2015.03.03 21:46:49 -
[120] - Quote
qu1ckkkk wrote:The current dev branch has an almost completely refactored image generation logic with the primary focus to support lazy loading. I'd be curious to see the corporation ID's affected here so that I could have a closer look. At best, hop onto IRC so we could try and debug.
The corp ID is in the puush link, but it's 1499024719 for Cascading Failure. I'll hop on IRC when I get a chance. |
|

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.03.06 06:50:31 -
[121] - Quote
Wishlist
- a better way to sort corp wallet entries (to catch people siphoning isk) - Filter/flagging tools for mail (sender/receiver, keywords, etc..)
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
10
|
Posted - 2015.03.07 05:09:13 -
[122] - Quote
Mr Twinkie wrote:Wishlist
- a better way to sort corp wallet entries (to catch people siphoning isk) - Filter/flagging tools for mail (sender/receiver, keywords, etc..)
The wallet filtering thing is on the TODO. As for filter/flagging, tried using the search on the top left?
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.03.07 05:55:30 -
[123] - Quote
qu1ckkkk wrote:Mr Twinkie wrote:Wishlist
- a better way to sort corp wallet entries (to catch people siphoning isk) - Filter/flagging tools for mail (sender/receiver, keywords, etc..)
The wallet filtering thing is on the TODO. As for filter/flagging, tried using the search on the top left?
I have, I'm talking more a list of filters you add that turn a standing/mail a shade of red or something along those lines |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
10
|
Posted - 2015.03.07 07:17:12 -
[124] - Quote
Ah I see. Cool :)
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Robbern Deninard
BOVRIL bOREers Mining CO-OP Brave Collective
0
|
Posted - 2015.03.27 09:48:54 -
[125] - Quote
I've just started using this in my corp. Are there any plans to be able to send e-mails using seat? |

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.03.27 11:03:30 -
[126] - Quote
Robbern Deninard wrote:I've just started using this in my corp. Are there any plans to be able to send e-mails using seat?
How do you mean send e-mails? SeAT sends out notifications to those with the correct permissions for things like low POS fuel or inactive members. If you mean send eve mails, that is currently not possible from CCPs end. If you mean send e-mails, like a newsletter? Then no.
Join Avalon Project Today!
|

AzAkiR NaLDa
Lone Star Warriors Yulai Federation
51
|
Posted - 2015.04.10 15:24:20 -
[127] - Quote
Hey I have a small issue. I followed your install guide for Ubuntu. And whenever I try to access the tool I get the following: The requested URL /seat/account/login/sign-in was not found on this server.
I Will try to do another reinstall to see if that fixes it. But any idea what could cause this?
Lone Star Warrior
|

Tessa Saissore
The Scope Gallente Federation
0
|
Posted - 2015.04.10 16:38:42 -
[128] - Quote
Any chance you forgot to symlink var/www/seat/public over to var/www/html/seat/ ? |

AzAkiR NaLDa
Lone Star Warriors Yulai Federation
51
|
Posted - 2015.04.10 19:17:27 -
[129] - Quote
it appears so yeah. fixed the issue :)
Lone Star Warrior
|

Tessa Saissore
The Scope Gallente Federation
0
|
Posted - 2015.04.11 15:48:53 -
[130] - Quote
Awesome stuff :)
Enjoy! |
|

Sooner Jetta
Bottle Distribution Ops Center ArK Alliance
2
|
Posted - 2015.04.13 02:51:08 -
[131] - Quote
Would this be possible to host on a go-daddy hosted site? |

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.04.13 05:33:02 -
[132] - Quote
Sooner Jetta wrote:Would this be possible to host on a go-daddy hosted site?
As far as I am aware, no. This is due to the fact you need Redis and composer for it to work, and you do not have this level of access with GoDaddy to start installing things like that. A VPS would be best for SeAT; you can get some cheap ones, but it does require slightly more knowledge of unix commands etc...
Join Avalon Project Today!
|

Sooner Jetta
Bottle Distribution Ops Center ArK Alliance
2
|
Posted - 2015.04.13 21:13:25 -
[133] - Quote
Nutbolt wrote:Sooner Jetta wrote:Would this be possible to host on a go-daddy hosted site? As far as I am aware, no. This is due to the fact you need Redis and composer for it to work, and you do not have this level of access with GoDaddy to start installing things like that. A VPS would be best for SeAT; you can get some cheap ones, but it does require slightly more knowledge of unix commands etc...
Thanks for the quick answers. I have no trouble with commands and unix but can't afford a VPS. I might roll a copy on my linux server at home and go about it that way. |

Robbern Deninard
BOVRIL bOREers Mining CO-OP Brave Collective
0
|
Posted - 2015.04.16 06:48:32 -
[134] - Quote
Are there any plans to integrate mumble auth into seat? |

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.04.16 08:13:39 -
[135] - Quote
Robbern Deninard wrote:Are there any plans to integrate mumble auth into seat?
The long term plan I believe is to allow plugins of a sort. Such as Jabber and TS3/Mumble auth systems, SRS, etc...
However before this happens SeAT needs to move to version 1.0 (i.e. happy how it is, move out of beta). Currently the permissions are being completely redone, which will be some of the major groundwork needed for any kind of integrated plugin thingy.
SeAT is all opensource and if you or a corp mate feels like helping out and writing a 'plugin' or whatever, feel free. There are people on IRC to chat to as well.
Join Avalon Project Today!
|

Hatshepsut IV
Un.Reasonable Un.Bound
370
|
Posted - 2015.04.23 17:07:07 -
[136] - Quote
I recently started getting the following error off of corp keys from the starbase permission.
http://pastebin.com/6TvA1NPG
Deleting and regening keys doesn't seem to correct it.
You too can start failing today!
Reddit ad | Un.Bound
Public Channel | Un.Welcome
|

AzAkiR NaLDa
Lone Star Warriors Yulai Federation
51
|
Posted - 2015.04.24 15:46:24 -
[137] - Quote
some people have found out that in the starbase section, the tower's or the tool doesn't keep sov mechanics in mind. So the fuel usage is off by a bit due to most of the corp towers being in sov owned space.
Lone Star Warrior
|

Soolarize
The Icarian Oath Utopian Society
3
|
Posted - 2015.04.27 08:18:55 -
[138] - Quote
Hello everyone,
First of all thanks a million qu1ckkkk for SeAT, what a great corporation management tool! I've successfully installed it on my VPS and everything is working perfectly!
Quick question: how can I change the api request frequency? At the moment it seems to be calling the API very often, around 20 seconds, and I would like to have it around 1 minute as to ensure I am not hurting my server nor the API :)
Thanks a lot
CEO @ The Icarian Oath Utopian Society
IcarianOath.com
|

Nutbolt
Avalon Project Shadow Rock Alliance
93
|
Posted - 2015.04.27 08:33:53 -
[139] - Quote
Soolarize wrote:Hello everyone,
First of all thanks a million qu1ckkkk for SeAT, what a great corporation management tool! I've successfully installed it on my VPS and everything is working perfectly!
Quick question: how can I change the api request frequency? At the moment it seems to be calling the API very often, around 20 seconds, and I would like to have it around 1 minute as to ensure I am not hurting my server nor the API :)
Thanks a lot
SeAT obeys all the cache timers set by CCPs API, and can even be over zealous when banning keys if they cause too many errors. So don't worry, you are not hurting CCPs API.
What you are likely seeing is that SeAT displays calls for every character. So for example if you have 100 toons in there, updating each toon is a call. It is not checking every toon with each call.
That all said, if you would like to see the schedule on the VPS navigate to where you installed SeAT and use the following command: php artisan scheduled:summary
As for where you would edit it, I am not sure lol. Join the IRC channel (#wcs-pub) and someone can help you out :)
Join Avalon Project Today!
|

Soolarize
The Icarian Oath Utopian Society
3
|
Posted - 2015.04.27 08:37:06 -
[140] - Quote
Nutbolt wrote:Soolarize wrote:Hello everyone,
First of all thanks a million qu1ckkkk for SeAT, what a great corporation management tool! I've successfully installed it on my VPS and everything is working perfectly!
Quick question: how can I change the api request frequency? At the moment it seems to be calling the API very often, around 20 seconds, and I would like to have it around 1 minute as to ensure I am not hurting my server nor the API :)
Thanks a lot SeAT obeys all the cache timers set by CCPs API, and can even be over zealous when banning keys if they cause too many errors. So don't worry, you are not hurting CCPs API. What you are likely seeing is that SeAT displays calls for every character. So for example if you have 100 toons in there, updating each toon is a call. It is not checking every toon with each call. That all said, if you would like to see the schedule on the VPS navigate to where you installed SeAT and use the following command: php artisan scheduled:summary As for where you would edit it, I am not sure lol. Join the IRC channel (#wcs-pub) and someone can help you out :)
wow that was fast, thanks for this! I'm at work now (browsing on eve forums, no shame at all :) but should be able to join the IRC later today. Truth is, I am far from being a dev and had to ask for my housemate help to set everything up haha
CEO @ The Icarian Oath Utopian Society
IcarianOath.com
|
|

John A Galt
Interstellar Reposession Company
0
|
Posted - 2015.05.13 04:32:55 -
[141] - Quote
HI,
I just completed an install on an Ubuntu Amazon Cloud server and it appears to work. However the registration email is never sent to my email address. Is there a way to manually create an account?
John
John A Galt
Director
Interstellar Reposession Company
|

Tessa Saissore
The Scope Gallente Federation
0
|
Posted - 2015.05.16 11:42:14 -
[142] - Quote
If you can log into SeAT, you can certainly add a user manually - left hand tabs, go down to config then users and add user.
Failing that if you go into the database I imagine you can manually add and verify users |

barje Ormand
The Scope Gallente Federation
0
|
Posted - 2015.05.18 16:26:29 -
[143] - Quote
followed your video tutorial to the letter.
but it seems apache will not connect to adress http://www.seat.local/
any ideas ? |

Michael Mach
Arx One Arx Alliance
38
|
Posted - 2015.05.18 22:20:52 -
[144] - Quote
barje Ormand wrote:followed your video tutorial to the letter. but it seems apache will not connect to adress http://www.seat.local/
any ideas ?
From the docs:
"Everywhere you see seat.local, it needs to be substituted to your actual domain" |

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.06.01 13:05:16 -
[145] - Quote
Any ideas on how to jury rig jabber authentication with this? |

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.06.01 13:34:19 -
[146] - Quote
Mr Twinkie wrote:Any ideas on how to jury rig jabber authentication with this?
There are two options with this. 1.) Use the SeAT API, however I don't think there is currently enough information provided by it to use it for Jabber auth? Look into it.
2.) Wait until, or help with, the major permission changes coming up soon (tm), then the next task/project I believe will likely be modules etc... you could stick into SeAT, such as a Jabber auth.
Join Avalon Project Today!
|

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.06.01 23:33:21 -
[147] - Quote
Nutbolt wrote:Mr Twinkie wrote:Any ideas on how to jury rig jabber authentication with this? There are two options with this. 1.) Use the SeAT API, however I don't think there is currently enough information provided by it to use it for Jabber auth? Look into it. 2.) Wait until, or help with, the major permission changes coming up soon (tm), then the next task/project I believe will likely be modules etc... you could stick into SeAT, such as a Jabber auth.
Don't think the API would work in it's current form. |

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.06.05 09:07:18 -
[148] - Quote
looking to make the all characters screen sortable by column any ideas? |

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.06.05 09:19:27 -
[149] - Quote
Mr Twinkie wrote:looking to make the all characters screen sortable by column any ideas?
Click on the column heading...? It is all sortable.
I would also suggest joining the IRC channel (deets in the OP), will get much faster answers to your questions :)
Join Avalon Project Today!
|

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.06.05 09:55:17 -
[150] - Quote
Nutbolt wrote:Mr Twinkie wrote:looking to make the all characters screen sortable by column any ideas? Click on the column heading...? It is all sortable. I would also suggest joining the IRC channel (deets in the OP), will get much faster answers to your questions :)
they're not sortable tho http://gyazo.com/3b23c6c6122fa4df683dcf8d26ea5b41 |
|

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.06.05 10:54:11 -
[151] - Quote
Thanks for the intel :D
But nah, seriously, they really are :) What browser are you using? And version? On the latest version of chrome (and most older ones) it works.
Join Avalon Project Today!
|

Mr Twinkie
Black Serpent Technologies Black Legion.
10
|
Posted - 2015.06.05 17:47:43 -
[152] - Quote
latest version of chrome
Every other list has the sort ability just not the characters -> all characters |

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.06.05 18:21:32 -
[153] - Quote
IN latest version of chrome: http://i.nutbolt.eu/2015-06-05_19-21-05.png
Interesting and no idea why its not showing up for you. Join IRC :)
Join Avalon Project Today!
|

Michael Mach
Arx One Arx Alliance
38
|
Posted - 2015.06.10 22:02:21 -
[154] - Quote
qu1ckkkk wrote:Nay Stigma wrote:Been using your website for the good 3 months I love it. Is there a way to make multiple instance of the website so every corp in my alliance can have there own.
Keep up the good work. You can simply add another corporation API. You can only see information for corporations (and assuming you have the correct roles) for API's (and the respective characters) you own. HTH
I've got a working SEAT install that was use for our alliance; the way we would like to have it set up is that each corporation gets their own account, which is then shared between that corp's CEO and his directors. Unfortunately, crucial functions like corporate member tracking and the like are tied to the "Recruiter" permission, which also enables the ability to view all apis and information for all accounts on the SEAT instance.
Is there something I'm missing with the permissions? Are docs relating to permissions available? If not, is it possible we'll see more flexible permissions in an upcoming release? |

Arkumord Churhee
Bavarian Unstressed Mining Mob Synergy of Steel
29
|
Posted - 2015.06.13 08:07:09 -
[155] - Quote
Michael Mach wrote: [...]
I've got a working SEAT install that was use for our alliance; the way we would like to have it set up is that each corporation gets their own account, which is then shared between that corp's CEO and his directors. Unfortunately, crucial functions like corporate member tracking and the like are tied to the "Recruiter" permission, which also enables the ability to view all apis and information for all accounts on the SEAT instance.
Basically, I'm looking for a master switch that gives full-access to all that SEAT has to offer, while limiting the scope of that power to APIs the SEAT account has ownership of.
Is there something I'm missing with the permissions? Are docs relating to permissions available? If not, is it possible we'll see more flexible permissions in an upcoming release?
Permissions are being actively reworked at the moment.
|

grizzlemethis
Circle Mercs The Bastion
22
|
Posted - 2015.06.25 13:45:39 -
[156] - Quote
Has anyone got a quick guide on how to install the recruitment add on located here https://github.com/eve-seat/seat-recruitment |

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.06.25 17:24:21 -
[157] - Quote
The recruitment addon is not official and as such there is technically no support or documentation. This 'addon' simply enters in someones details into the SeAT DB, to be picked up on the next update. It is very much a custom tool with custom graphics for a certain corp etc...
However if you are still interested in setting it up I suggest joining the IRC channel (details in the OP) and asking for help.
Join Avalon Project Today!
|

Mr Twinkie
Black Serpent Technologies Black Legion.
12
|
Posted - 2015.06.26 04:10:56 -
[158] - Quote
If you're just looking for a page where recruits can enter their API message me ingame and I can help you with one. |

Alendriana
Trojan Legion Fidelas Constans
4
|
Posted - 2015.07.14 00:51:47 -
[159] - Quote
/seat/account/login/sign-in getting this..
Yes I have symlinked /var/www/seat/public to /var/www/html/seat
Searching thru /seat I cannot find an account folder anywhere. Is it a symlink to another folder?
|

Alendriana
Trojan Legion Fidelas Constans
4
|
Posted - 2015.07.14 19:37:25 -
[160] - Quote
However double post
Is there a way to mass import API's? |
|

Mr Twinkie
Black Serpent Technologies Black Legion.
12
|
Posted - 2015.07.15 15:07:04 -
[161] - Quote
Alendriana wrote:However double post
Is there a way to mass import API's?
Easiest way is a db query. |

Duncan McClain
Jolly Codgers Get Off My Lawn
8
|
Posted - 2015.07.17 03:12:49 -
[162] - Quote
I'm attempting to setup SEAT on a ubuntu vps server
It looks like I'm running into an issue at the Virtual Host level when attempting to navigate to xyz.com/seat I receive "The requested URL /seat/ was not found on this server."
When using the command apachectl -t -D DUMP_VHOSTS I only receive VirtualHost configuration:
nothing follows.
suggestions |

Bill Ramen
PH0ENIX COMPANY Phoenix Company Alliance
2
|
Posted - 2015.08.05 08:10:10 -
[163] - Quote
Has anyone else had issues on ubuntu with enabling mcrypt? I can't get it to enable. Suggestions? |

Vivien Meally
Des-Meisters-Lakaien Phoenix Company Alliance
90
|
Posted - 2015.08.05 09:00:24 -
[164] - Quote
@bill Have you trying this?
http://askubuntu.com/questions/460837/mcrypt-extension-is-missing-in-14-04-server-for-mysql |

Mr Twinkie
Black Serpent Technologies Black Legion.
12
|
Posted - 2015.08.08 09:13:31 -
[165] - Quote
It's been months since the standard branch has seen an update.. what's the word? |

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.08.08 09:43:07 -
[166] - Quote
Mr Twinkie wrote:It's been months since the standard branch has seen an update.. what's the word?
Things have been busy for the developers lately and some larger code changes in the background, if you look at the dev branch. It is still being worked on, have no fear. Just been a bit slow lately, as with most of EVE, due to the sun appearing for its semi annual visit.
Join Avalon Project Today!
|

Morgan Johnstone
No Refunds. SpaceMonkey's Alliance
0
|
Posted - 2015.08.10 16:29:32 -
[167] - Quote
Folks,
I absolutely LOVE SeAT. I've set it up for one corp and now I've got an alliance after me to set it up for them. I love it!
Have a question though. I'm learning to create Android Apps and I thought it'd be cool to have an app to interface with the website...
aka.. An asset viewer, contract viewer, etc etc etc.
WOULD this be interesting to work on? I've forked the SeAT Git repository and greated a seat-android repository of my own to play around with things, but I'd love to get some input on this idea.
Sqt. Morgan Johnstone
No Refunds. IT Team Head
|

Morgan Johnstone
No Refunds. SpaceMonkey's Alliance
0
|
Posted - 2015.08.10 16:30:47 -
[168] - Quote
Morgan Johnstone wrote:Folks,
I absolutely LOVE SeAT. I've set it up for one corp and now I've got an alliance after me to set it up for them. I love it!
Have a question though. I'm learning to create Android Apps and I thought it'd be cool to have an app to interface with the website...
aka.. An asset viewer, contract viewer, etc etc etc.
WOULD this be interesting to work on? I've forked the SeAT Git repository and greated a seat-android repository of my own to play around with things, but I'd love to get some input on this idea.
... And NO It's not SMA.... :p
Sqt. Morgan Johnstone
No Refunds. IT Team Head
|

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.08.10 17:25:00 -
[169] - Quote
Morgan Johnstone wrote:Folks,
I absolutely LOVE SeAT. I've set it up for one corp and now I've got an alliance after me to set it up for them. I love it!
Have a question though. I'm learning to create Android Apps and I thought it'd be cool to have an app to interface with the website...
aka.. An asset viewer, contract viewer, etc etc etc.
WOULD this be interesting to work on? I've forked the SeAT Git repository and greated a seat-android repository of my own to play around with things, but I'd love to get some input on this idea.
I personally would be very interested in this. I would suggest joining IRC (in the OP) to chat with people.
Remember, SeAT was originally designed as a tool to collect all the information as a backend, with people ideally making their own front ends.
Join Avalon Project Today!
|

Morgan Johnstone
No Refunds. SpaceMonkey's Alliance
0
|
Posted - 2015.08.10 19:05:13 -
[170] - Quote
Nutbolt wrote:Morgan Johnstone wrote:Folks,
I absolutely LOVE SeAT. I've set it up for one corp and now I've got an alliance after me to set it up for them. I love it!
Have a question though. I'm learning to create Android Apps and I thought it'd be cool to have an app to interface with the website...
aka.. An asset viewer, contract viewer, etc etc etc.
WOULD this be interesting to work on? I've forked the SeAT Git repository and greated a seat-android repository of my own to play around with things, but I'd love to get some input on this idea.
I personally would be very interested in this. I would suggest joining IRC (in the OP) to chat with people. Remember, SeAT was originally designed as a tool to collect all the information as a backend, with people ideally making their own front ends.
Ok Great!
Sorry for being an idiot here, what do you mean (in the OP)?
Sqt. Morgan Johnstone
No Refunds. IT Team Head
|
|

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.08.10 19:36:51 -
[171] - Quote
Morgan Johnstone wrote:Nutbolt wrote:Morgan Johnstone wrote:Folks,
I absolutely LOVE SeAT. I've set it up for one corp and now I've got an alliance after me to set it up for them. I love it!
Have a question though. I'm learning to create Android Apps and I thought it'd be cool to have an app to interface with the website...
aka.. An asset viewer, contract viewer, etc etc etc.
WOULD this be interesting to work on? I've forked the SeAT Git repository and greated a seat-android repository of my own to play around with things, but I'd love to get some input on this idea.
I personally would be very interested in this. I would suggest joining IRC (in the OP) to chat with people. Remember, SeAT was originally designed as a tool to collect all the information as a backend, with people ideally making their own front ends. Ok Great! Sorry for being an idiot here, what do you mean (in the OP)?
OP = original post.
However just noticed it doesnt actually say in it.
Anyway, use this link: https://kiwiirc.com/client/irc.coldfront.net/?nick=seat_user%7C?#wcs-pub
Join Avalon Project Today!
|

Morgan Johnstone
No Refunds. SpaceMonkey's Alliance
0
|
Posted - 2015.08.10 21:22:16 -
[172] - Quote
Nutbolt wrote:Morgan Johnstone wrote:Nutbolt wrote:Morgan Johnstone wrote:Folks,
I absolutely LOVE SeAT. I've set it up for one corp and now I've got an alliance after me to set it up for them. I love it!
Have a question though. I'm learning to create Android Apps and I thought it'd be cool to have an app to interface with the website...
aka.. An asset viewer, contract viewer, etc etc etc.
WOULD this be interesting to work on? I've forked the SeAT Git repository and greated a seat-android repository of my own to play around with things, but I'd love to get some input on this idea.
I personally would be very interested in this. I would suggest joining IRC (in the OP) to chat with people. Remember, SeAT was originally designed as a tool to collect all the information as a backend, with people ideally making their own front ends. Ok Great! Sorry for being an idiot here, what do you mean (in the OP)? OP = original post. However just noticed it doesnt actually say in it. Anyway, use this link: https://kiwiirc.com/client/irc.coldfront.net/?nick=seat_user%7C?#wcs-pub
Thanks! Much appreciated.
Sqt. Morgan Johnstone
No Refunds. IT Team Head
|

Trista Sharvas
Caldari Provisions Caldari State
0
|
Posted - 2015.08.19 12:14:27 -
[173] - Quote
I'm a complete Noob at VPS's and Websites :)
I followed your instructions for an Unduntu server I'm upto the point of setting up workers
Quote:We now have to configure the actual workers that `supervisord` will manage. We do this by adding a new configuration file to `/etc/supervisor/conf.d/` called `seat.conf` A sample configuration for this file is located in `docs/` and at the end of this paragraph. Note that the number of workers that we want to start is set by the `numprocs` settings
Like I said I'm a noob How do I go about doing this I'm lost lol
|

Mr Twinkie
Black Serpent Technologies Black Legion.
13
|
Posted - 2015.08.19 13:14:06 -
[174] - Quote
Trista Sharvas wrote:I'm a complete Noob at VPS's and Websites :) I followed your instructions for an Unduntu server I'm upto the point of setting up workers Quote:We now have to configure the actual workers that `supervisord` will manage. We do this by adding a new configuration file to `/etc/supervisor/conf.d/` called `seat.conf` A sample configuration for this file is located in `docs/` and at the end of this paragraph. Note that the number of workers that we want to start is set by the `numprocs` settings Like I said I'm a noob How do I go about doing this I'm lost lol
#sudo nano /etc/supervisor/conf.d/seat.conf
and paste
[program:seat1] command=/usr/bin/php /var/www/seat/artisan queue:listen --timeout=3600 --tries=1 directory=/var/www/seat stopwaitsecs=600 user=apache stdout_logfile=/var/log/seat_out.log stdout_logfile_maxbytes=100MB stdout_logfile_backups=10 stderr_logfile=/var/log/seat_err.log stderr_logfile_maxbytes=100MB stderr_logfile_backups=5
(Update the destinations if you installed seat elsewhere)
ctrl + o ctrl + x |

Trista Sharvas
Caldari Provisions Caldari State
0
|
Posted - 2015.08.19 13:55:54 -
[175] - Quote
Morgan Johnstone do you offer an Installation service for a fee |

Mike Vandenberg
Time Lord Academy Vanguard of the Phoenix
29
|
Posted - 2015.08.21 05:17:39 -
[176] - Quote
Trista Sharvas wrote:Morgan Johnstone do you offer an Installation service for a fee
We can provide install services and post install support for SEAT and other 3rd party software if you can't/don't want to do it yourself.
Forum Post
Website
EVEServers.info - One stop API Solution for Corps/Alliances
|

Shisuka
Rear Window Society Brave Collective
16
|
Posted - 2015.08.28 00:41:59 -
[177] - Quote
So is this still being actively worked on? Looking at the commits on github it doesn't appear to be or maybe I am looking in the wrong place. |

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.08.28 05:46:48 -
[178] - Quote
Shisuka wrote:So is this still being actively worked on? Looking at the commits on github it doesn't appear to be or maybe I am looking in the wrong place.
It is somewhat. A mixture of it being summer and so people have been busy with other things, and a larger code update in the background means it doesn't look very active, but work is taking place.
Join Avalon Project Today!
|

Captain Glumbo
Prision Break Inc. Gentlemen's.Parlor
9
|
Posted - 2015.08.28 08:44:21 -
[179] - Quote
Congrats on this tool looks amazing...Im really interested to use this to manage one corp, but i lack the skills to setup this...
Is there any way to contract the installation service ?
Thanks for your time.
BR.
CGlumbo.
|

Mike Vandenberg
Time Lord Academy Vanguard of the Phoenix
29
|
Posted - 2015.08.28 20:53:50 -
[180] - Quote
Captain Glumbo wrote:Congrats on this tool looks amazing...Im really interested to use this to manage one corp, but i lack the skills to setup this...
Is there any way to contract the installation service ?
Thanks for your time.
BR.
CGlumbo.
We can provide install services and post install support for SEAT and other 3rd party software if you can't/don't want to do it yourself.
Forum Post
Website
EVEServers.info - One stop API Solution for Corps/Alliances
|
|

Shisuka
Rear Window Society Brave Collective
16
|
Posted - 2015.08.29 07:14:01 -
[181] - Quote
Nutbolt wrote:Shisuka wrote:So is this still being actively worked on? Looking at the commits on github it doesn't appear to be or maybe I am looking in the wrong place. It is somewhat. A mixture of it being summer and so people have been busy with other things, and a larger code update in the background means it doesn't look very active, but work is taking place.
Thank you Nutbolt! I guess I will have to start working on my own system that creates mumble users. (If someone has something that will do this based on seat information I am willing to pay a reasonable amount for it. ) |

Basilisk Reign
Lazerhawks
3
|
Posted - 2015.09.20 00:55:24 -
[182] - Quote
So my question. Is there an ability to share keys between groups?
Ex. RO1 adds a key, RO2 who logins can't view it. If RO2 adds the same key, RO1 isn't able to see it anymore. Superusers are still able to see the key, but is it possible to share the keys between groups? |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
12
|
Posted - 2015.09.20 14:50:55 -
[183] - Quote
Basilisk Reign wrote:So my question. Is there an ability to share keys between groups?
Ex. RO1 adds a key, RO2 who logins can't view it. If RO2 adds the same key, RO1 isn't able to see it anymore. Superusers are still able to see the key, but is it possible to share the keys between groups?
The current permissions system in the UI is a little... lacking for a lack of a better word. I am currently in the process of writing 1.x basically from the group up. One of the key goals is to have a lot more focus put on the permissions system in the UI, and will hopefully make scenarios such as yours actually work as expected.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Xordu
Caldari Provisions Caldari State
2
|
Posted - 2015.09.22 11:19:33 -
[184] - Quote
Good morning. Ive got this all up and running. However since the last release, a full api isnt a full api anymore. Where can I go to update the FULL api url.
Id like to update the FULL URL and remove the minimum recommended all together.
Thanks |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
12
|
Posted - 2015.09.22 13:44:48 -
[185] - Quote
Xordu wrote:Good morning. Ive got this all up and running. However since the last release, a full api isnt a full api anymore. Where can I go to update the FULL api url.
Id like to update the FULL URL and remove the minimum recommended all together.
Thanks
Try Configuration -> SeAT Settings -> Required API Mask
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Nutbolt
Avalon Project Shadow Rock Alliance
94
|
Posted - 2015.09.27 08:55:24 -
[186] - Quote
Case Study
A few days ago one of our offices was closed and all the assets vanished. While it wasn't much, we obviously don't want to let people get away with theft, however small. Thankfully, because SeAT is always running and updating on a server, the chances were, it had already updated everyones assets and I could find out who did it.
To start with I needed to narrow down the list of suspects because I didn't want to spend all day searching everyones assets. For this I used the Security audit tools in SeAT. These include a list of current permissions members have, and a change log so I could see if a director was granting access to an alt or something. With these tools in SeAT I now had a short list of suspects who had permission to close an office and/or access to the particular hanger with most of the assets.
The next step was to find the assets to pin point who actually did it. I knew we had some items in the office which aren't too common (random meta level modules, not something shiny :p), so using the generic search feature in SeAT I had a list of toons with that item in seconds. This narrowed down the list even more. From the search results I could then simply view each character and their assets, grouped by station.
Once I found the toon (an alt), SeAT straight away told me all the associated characters and I could determine their main toon.
TL;DR: Used SeAT to track down stupid corp thief and collect all the evidence you would ever need. All in under 20 minutes.
Join Avalon Project Today!
|

Randomazor
Three Stars Association
0
|
Posted - 2015.11.13 02:58:00 -
[187] - Quote
Hello
Thank you very much for this very very usefull tool qu1ckkkk !!
I'm stuck after I complete the instalation formular (with the sql info and such), the script try to download some dumps from the fuzzwork domain name and I get :
stream_socket_client(): unable to connect to ssl://www.fuzzwork.co.uk:443 (Connection timed out)
GÇï[8:29] "Warning: stream_socket_client(): unable to connect to"
Would you have any idea of where this is coming from ? I think that the server is behind a firewall or something or that the 443 port is closed but I don't know how to check that.
Flysafe, Randomazor
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
16
|
Posted - 2015.11.16 04:12:34 -
[188] - Quote
Randomazor wrote:Hello
Thank you very much for this very very usefull tool qu1ckkkk !!
I'm stuck after I complete the instalation formular (with the sql info and such), the script try to download some dumps from the fuzzwork domain name and I get :
stream_socket_client(): unable to connect to ssl://www.fuzzwork.co.uk:443 (Connection timed out)
GÇï[8:29] "Warning: stream_socket_client(): unable to connect to"
Would you have any idea of where this is coming from ? I think that the server is behind a firewall or something or that the 443 port is closed but I don't know how to check that.
Flysafe, Randomazor
For some reason your server cant connect to www.fuzzwork.co.uk on port 443. I'd try debug that first.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

TheNurseUK
907 Gamers Tactical Narcotics Team
1
|
Posted - 2015.11.19 00:47:41 -
[189] - Quote
I got SeAT running on CentOS 6
The issue i`m having is when i sign up an account the activation e-mail is not sent out, and when i change the maildriver in the .env.php to sendmail from mail i get this message come up when i register a new account "Error in exception handler."
|

Emrys Alf
Seagull Fleet Alternate Allegiance
3
|
Posted - 2015.11.28 16:14:08 -
[190] - Quote
I have been living in SeAT for the past month.. It is fantastic!!!!
I tried with CentOS a bunch of times and just kept running into error after error in the install process which at the end I chose to put seat on it's own UMBUNTU server and the problems fell away.
It is now stable solid and happy...
I am wondering about access for people.. The CEO of a corp can see a lot but not their members unless the permission of "Recruiters" is given.. but then they can see everything of all the other corps... can "Recruiters" be limited to just the corp and not give access to all in the alliance....
Cheers!!!!!
|
|

Morgan Johnstone
The New Gallentean Combine Brave Collective
36
|
Posted - 2015.11.29 06:28:13 -
[191] - Quote
So, I love SeAT.
A word of caution to new users.
You're going to want to have ample disk space for this. When I created the AWS EC2 instance for my SeAT server I used the 8GiB of space. Now, nearly four months later, I just worked all day to get the server back up. All it was is that I ran out of disk space. ;)
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Mr Twinkie
Black Serpent Technologies The-Culture
29
|
Posted - 2015.11.29 07:15:15 -
[192] - Quote
Morgan Johnstone wrote:So, I love SeAT.
A word of caution to new users.
You're going to want to have ample disk space for this. When I created the AWS EC2 instance for my SeAT server I used the 8GiB of space. Now, nearly four months later, I just worked all day to get the server back up. All it was is that I ran out of disk space. ;)
That's likely less to do with SeAT and more to do with your mysql server making annoying amounts of huge log files.
MAMBA Head of IT
|

Mike Vandenberg
Time Lord Academy Vanguard of the Phoenix
30
|
Posted - 2015.11.29 16:13:31 -
[193] - Quote
Morgan Johnstone wrote:So, I love SeAT.
A word of caution to new users.
You're going to want to have ample disk space for this. When I created the AWS EC2 instance for my SeAT server I used the 8GiB of space. Now, nearly four months later, I just worked all day to get the server back up. All it was is that I ran out of disk space. ;)
SEAT can sometimes run away with the logs. Pretty important to have logrotate setup. You might check your settings to see if that is configured.
EVEServers.info - One stop API Solution for Corps/Alliances
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
16
|
Posted - 2015.11.30 14:33:48 -
[194] - Quote
Emrys Alf wrote: I am wondering about access for people.. The CEO of a corp can see a lot but not their members unless the permission of "Recruiters" is given.. but then they can see everything of all the other corps... can "Recruiters" be limited to just the corp and not give access to all in the alliance....
Pretty sure you will love the permissions system coming in v1.0.0...
=)
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Morgan Johnstone
The New Gallentean Combine Brave Collective
36
|
Posted - 2015.11.30 21:36:24 -
[195] - Quote
Mike Vandenberg wrote:Morgan Johnstone wrote:So, I love SeAT.
A word of caution to new users.
You're going to want to have ample disk space for this. When I created the AWS EC2 instance for my SeAT server I used the 8GiB of space. Now, nearly four months later, I just worked all day to get the server back up. All it was is that I ran out of disk space. ;) SEAT can sometimes run away with the logs. Pretty important to have logrotate setup. You might check your settings to see if that is configured.
Thanks! :)
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Louis Vitton
Viziam Amarr Empire
82
|
Posted - 2015.12.01 01:36:35 -
[196] - Quote
Hey qu1ckkkk,
Are you thinking of moving to laravel 5.1 for LTS on patching?
Ahead of time i am sorry i have not read though the whole thread to see. |

Morgan Johnstone
The New Gallentean Combine Brave Collective
36
|
Posted - 2015.12.01 02:06:36 -
[197] - Quote
Louis Vitton wrote:Hey qu1ckkkk,
Are you thinking of moving to laravel 5.1 for LTS on patching?
Ahead of time i am sorry i have not read though the whole thread to see.
Not in direct response to this post, but how often is SeAT patched/updated?
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Mr Twinkie
Black Serpent Technologies The-Culture
29
|
Posted - 2015.12.01 05:28:04 -
[198] - Quote
Morgan Johnstone wrote:Louis Vitton wrote:Hey qu1ckkkk,
Are you thinking of moving to laravel 5.1 for LTS on patching?
Ahead of time i am sorry i have not read though the whole thread to see. Not in direct response to this post, but how often is SeAT patched/updated?
It has been quite awhile since the last update. Its in a very stable state right now.
MAMBA Head of IT
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
16
|
Posted - 2015.12.01 05:29:20 -
[199] - Quote
Louis Vitton wrote:Hey qu1ckkkk,
Are you thinking of moving to laravel 5.1 for LTS on patching?
Ahead of time i am sorry i have not read though the whole thread to see.
Yes, SeAT 1.x uses Laravel 5.1
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
16
|
Posted - 2015.12.01 05:30:36 -
[200] - Quote
Morgan Johnstone wrote:Louis Vitton wrote:Hey qu1ckkkk,
Are you thinking of moving to laravel 5.1 for LTS on patching?
Ahead of time i am sorry i have not read though the whole thread to see. Not in direct response to this post, but how often is SeAT patched/updated?
The 0.x branch is pretty much feature freeze. All the effort is going into getting 1.x ready for prime time!
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|
|

Louis Vitton
Viziam Amarr Empire
83
|
Posted - 2015.12.01 06:14:47 -
[201] - Quote
With 1.X are you building it solo atm or is it on github to allow other to contribute? |

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
16
|
Posted - 2015.12.01 06:23:22 -
[202] - Quote
Louis Vitton wrote:With 1.X are you building it solo atm or is it on github to allow other to contribute?
Code is on Github here: https://github.com/eveseat
The main repository has a wiki with some information to clear things up. Architecturally its very different from 0.x though.
I plan on making a completely new forum thread once 1.x is ready (which will be very soonGäó)
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Morgan Johnstone
The New Gallentean Combine Brave Collective
36
|
Posted - 2015.12.01 06:36:12 -
[203] - Quote
qu1ckkkk wrote:Louis Vitton wrote:With 1.X are you building it solo atm or is it on github to allow other to contribute? Code is on Github here: https://github.com/eveseat
The main repository has a wiki with some information to clear things up. Architecturally its very different from 0.x though. I plan on making a completely new forum thread once 1.x is ready (which will be very soonGäó)
Beautiful!!!
I'm excited to see the release happen, but quite a bit anxious about upgrading the SeAT installation I have in place. I am still very new and big things like this tend to make me paranoid. :)
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Louis Vitton
Viziam Amarr Empire
83
|
Posted - 2015.12.01 06:41:55 -
[204] - Quote
Morgan Johnstone wrote: I'm excited to see the release happen, but quite a bit anxious about upgrading the SeAT installation I have in place. I am still very new and big things like this tend to make me paranoid. :)
If you run into issues hit me up. It may also be easier to start with a new instance for the new version depending on the upgrades / changes. |

Morgan Johnstone
The New Gallentean Combine Brave Collective
36
|
Posted - 2015.12.01 09:25:10 -
[205] - Quote
Have any of you devs been able to integrate SeAT into WordPress? I'd love to know how you did it. Like I said in a earlier post, I'm pretty new and still learning.
Maybe a SeAT plugin would work? I'm not sure how though.
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Louis Vitton
Viziam Amarr Empire
83
|
Posted - 2015.12.01 09:39:43 -
[206] - Quote
Is there a reason you want to create a wordpress plugin or use it on wordpress? |

Morgan Johnstone
The New Gallentean Combine Brave Collective
36
|
Posted - 2015.12.02 12:57:53 -
[207] - Quote
Louis Vitton wrote:Is there a reason you want to create a wordpress plugin or use it on wordpress?
Yeah, I use WordPress as my main platform. I use it for recruitment, forums, information, and etc. I'd love to be able to have users use WP + SeAT for all auth services.
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Adarnof
Super Secret Spaceship Syndicate You Are Being Monitored
108
|
Posted - 2015.12.02 21:39:53 -
[208] - Quote
Taking a gander at the SeAT 1.x codebase, is that a new user API endpoint I see? If so that'll make me a real happy coder. |

Nutbolt
Avalon Project Shadow Rock Alliance
95
|
Posted - 2015.12.02 22:35:38 -
[209] - Quote
Adarnof wrote:Taking a gander at the SeAT 1.x codebase, is that a new user API endpoint I see? If so that'll make me a real happy coder.
SeAT 1.0 will contain a few more API endpoints... :)
https://github.com/eveseat/seat/wiki/SeAT-API-Reference
Join Avalon Project Today!
|

Adarnof
Super Secret Spaceship Syndicate You Are Being Monitored
108
|
Posted - 2015.12.02 23:32:13 -
[210] - Quote
My body is not ready.
Is 1.x stable enough to whip up a dev deployment so I can start work on integrating it into AllianceAuth? |
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
16
|
Posted - 2015.12.03 02:55:51 -
[211] - Quote
Adarnof wrote:My body is not ready. Is 1.x stable enough to whip up a dev deployment so I can start work on integrating it into AllianceAuth?
The current code base is definitely close to the final idea yes. Obviously, as its not released yet, breaking changes may be introduced until actual release. If you can, hop onto IRC if you have any questions. I may be able to help.
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
17
|
Posted - 2015.12.07 15:02:30 -
[212] - Quote
Small PSA. The SeAT 1.x code is very close to an official release. If you can, hold off from deploying the 0.x code until 1.x is out soonGäó
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Morgan Johnstone
No Refunds. SpaceMonkey's Alliance
37
|
Posted - 2015.12.07 17:21:57 -
[213] - Quote
qu1ckkkk wrote:Small PSA. The SeAT 1.x code is very close to an official release. If you can, hold off from deploying the 0.x code until 1.x is out soonGäó Looking forward to it. :)
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

bomb1911
AGM Incorporated Fidelas Constans
4
|
Posted - 2015.12.11 01:58:01 -
[214] - Quote
oooo I can't wait!! |

Morgan Johnstone
House of the Dead Monkey SpaceMonkey's Alliance
37
|
Posted - 2015.12.14 05:04:43 -
[215] - Quote
Noticed the SeAT GitHub project is marked as Depricated. Is V1.0 out?
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

qu1ckkkk
The Warp Core Stabilizers Tactical Narcotics Team
17
|
Posted - 2015.12.14 13:25:30 -
[216] - Quote
Morgan Johnstone wrote:Noticed the SeAT GitHub project is marked as Depricated. Is V1.0 out? Almost Gäó
Proud developer of SeAT: A Simple Eve API & Corporation Management Tool
http://eve-seat.github.io
|

Morgan Johnstone
House of the Dead Monkey SpaceMonkey's Alliance
37
|
Posted - 2015.12.15 09:48:57 -
[217] - Quote
qu1ckkkk wrote:Morgan Johnstone wrote:Noticed the SeAT GitHub project is marked as Depricated. Is V1.0 out? Almost Gäó
Thanks, I have people telling me that the API's are auto-updating in SeAT. I told them we'll have a fresh install when V1.0 comes out. :)
A question about that:
Would it be best to start with a fresh server? I mean, like re-install all of it to make a fresh start? :)
o7
Morgan Johnstone
> "Strive to be more and do more than others say you are and can."
|

Faldal Dartan
Cruel Behaviour
8
|
Posted - 2015.12.21 10:50:48 -
[218] - Quote
When I open the URL, I am getting the error message "No input file specified." |
|
|
|
Pages: 1 2 3 4 5 6 7 8 :: [one page] |