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

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.17 15:32:00 -
[301] - Quote
You might want to try this version out.
Temars Eve API auth for smf <- google drive link.
I believe it fixes the lack of caching and based on the last couple of days of testing it "MAY" have reduced the Runtime errors. I've also added some nasty hacks to manage any Runtime errors that it does get (who am I kidding ... All my changes are a bunch of nasty hacks )
For your added pleasure (if you run a board for an alliance) there is a new rule you can add that will match the CEO's of the specifed Alliance.
Disclaimer :- This all appears to work for me but it may not work for you ... backup your existing stuff first :) |

Troy Aihaken
Two Sided Mining
27
|
Posted - 2013.01.17 15:42:00 -
[302] - Quote
^^ Nice Work :) I like helping people with I.T in eve technology hit me up in game. You need a killboard, CMS or forums + plus other cool apps made by eve developers let me know we can work something out :) |

Troy Aihaken
Two Sided Mining
27
|
Posted - 2013.01.17 15:56:00 -
[303] - Quote
Shin i uploaded yours to my SUPER QUICK DOWNLOAD PAGE (LITERALLY NO CODE SO LOOKS RUBBISH xD) Just so it centralized. Added Credit for it on download button (FOR YOU) I like helping people with I.T in eve technology hit me up in game. You need a killboard, CMS or forums + plus other cool apps made by eve developers let me know we can work something out :) |

Nutbolt
Avalon Project Shadow Rock Alliance
70
|
Posted - 2013.01.17 16:32:00 -
[304] - Quote
Updated to this version and all hell broke loss :)
Ran the check all thing, and after quite a while it failed when it got to an API key which it stated as: API SCREWED
Runtime Error:
API System Screwed - Can't fetch Roles: string(3030) " Server Error in '/' Application.
|

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.17 16:40:00 -
[305] - Quote
Nutbolt wrote:Updated to this version and all hell broke loss :)
Ran the check all thing, and after quite a while it failed when it got to an API key which it stated as: API SCREWED
Runtime Error:
API System Screwed - Can't fetch Roles: string(3030) " Server Error in '/' Application.
Well that is both a good and a bad thing :)
Good in that it has worked out that the CCP servers returned a Server Error in '/' Application Runtime error instead of valid xml and isn't going to do the wrong thing with that persons groups - usually remove them all :) Now it should just abort for that account and leave the groups as they were.
Bad in that while I've not been experiencing these errors while running it as a cronjob and I'd hoped I'd found a cause of them in the code I was obviously wrong :) |

Nutbolt
Avalon Project Shadow Rock Alliance
70
|
Posted - 2013.01.17 16:56:00 -
[306] - Quote
Looking at the profile pages of users, those with SCREWED apis are still in groups (I don't have a rule for invalid apis yet, but this suggests screwed is different to invalid so rule wouldn't apply?). Users whos api key is ok the status says checked. whereas those who api key is screwed state the status as OK.
And on a side note, one of those persons keys worked fine this morning, but now says screwed.
|

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.17 17:07:00 -
[307] - Quote
Nutbolt wrote:Looking at the profile pages of users, those with SCREWED apis are still in groups (I don't have a rule for invalid apis yet, but this suggests screwed is different to invalid so rule wouldn't apply?). Users whos api key is ok the status says checked. whereas those who api key is screwed state the status as OK.
And on a side note, one of those persons keys worked fine this morning, but now says screwed.
Yeah that all makes sense. That error is when CCP's servers return stuff that isn't xml so it has nothing to do with the validity of the api details just the inability of CCP to return useful (to the script) information. I'm delibrately aborting further work with that api key at that point and leaving the user in whatever groups they were in before. Loosing access due to CCP API server muckups is a bad thing in my opinion.
invalid api rules may or may not apply as it depends on exactly which api call results in the Application error and where in your rule list the invalid rule is ... but assuming it can get far enough then an invalid api rule "should" work fine. |

Nutbolt
Avalon Project Shadow Rock Alliance
70
|
Posted - 2013.01.17 18:51:00 -
[308] - Quote
Next question(s) is in regards to cron jobs: Assuming I am not using the jabber or TS3 stuff (yet), do I only need to run the 1 cron job (TEA_Cron.php)? If so how often do you suggest? I see a few pages back it was suggested to run every minute, but that seems a bit excessive?
The output of the cron just gives me the login page for the forums. Assuming I am not logged in, it just directs me to login when trying to run the cron job. I assume this means its not being run. Any ideas? Thanks!
|

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.17 19:22:00 -
[309] - Quote
Nutbolt wrote:Next question(s) is in regards to cron jobs: Assuming I am not using the jabber or TS3 stuff (yet), do I only need to run the 1 cron job (TEA_Cron.php)? If so how often do you suggest? I see a few pages back it was suggested to run every minute, but that seems a bit excessive?
I run it every minute ... I believe that was the original authors directions.
Quote: The output of the cron just gives me the login page for the forums. Assuming I am not logged in, it just directs me to login when trying to run the cron job. I assume this means its not being run. Any ideas? Thanks!
Huh ?? The cron job shouldn't output anything unless there is a problem. Where are you running it ? How are you running it ? |

Nutbolt
Avalon Project Shadow Rock Alliance
70
|
Posted - 2013.01.17 19:35:00 -
[310] - Quote
As long as I am logged in it outputs nothing (and I guess works), but if I try and access the the cron job (running it from the browser) while not logged in it just directs me to the login page.
I am running the cron job from within cPanel using this command: curl --silent --compressed http://www.avalonproject.co.uk/forums/TEA/TEA_Cron.php >/dev/null 2>&1
(works for other cron jobs).
|

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.17 19:58:00 -
[311] - Quote
Nutbolt wrote:As long as I am logged in it outputs nothing (and I guess works), but if I try and access the the cron job (running it from the browser) while not logged in it just directs me to the login page. I am running the cron job from within cPanel using this command: curl --silent --compressed http://www.avalonproject.co.uk/forums/TEA/TEA_Cron.php >/dev/null 2>&1 (works for other cron jobs).
Hmmm interesting ... my understanding is that it is designed to run from a cron system ... at the command line absolutely no browser or curl should be involved. Obviously I may be wrong but at least this way you certainly don't need to be logged in :) |

Nutbolt
Avalon Project Shadow Rock Alliance
70
|
Posted - 2013.01.17 20:29:00 -
[312] - Quote
Shin Chogan wrote:Hmmm interesting ... my understanding is that it is designed to run from a cron system ... at the command line absolutely no browser or curl should be involved. Obviously I may be wrong but at least this way you certainly don't need to be logged in :)
Any suggestions on how I do this? :) I don't have access to shell, or whatever it is. I have never had a problem before with cron jobs, including our current forums (in the procces of moving from EVEBB to SMF).
|

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.17 20:43:00 -
[313] - Quote
Nutbolt wrote:Shin Chogan wrote:Hmmm interesting ... my understanding is that it is designed to run from a cron system ... at the command line absolutely no browser or curl should be involved. Obviously I may be wrong but at least this way you certainly don't need to be logged in :) Any suggestions on how I do this? :) I don't have access to shell, or whatever it is. I have never had a problem before with cron jobs, including our current forums (in the procces of moving from EVEBB to SMF).
I'm afraid I don't use cPanel ... at a guess how about trying :- php full path to forums/TEA/TEA_Cron.php |

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.21 09:49:00 -
[314] - Quote
Bah ... as this weekend has shown ... those Application Error 500's are still casusing chaos with peoples group memberships .... I thought I'd worked round them all, apparently not ... sorry. |

Jognu
French Kiss Singularity Astromechanica Federatis
24
|
Posted - 2013.01.21 17:14:00 -
[315] - Quote
Hi ! I try to install TEA today (with the last version from the google drive link) and I have now this error :
Quote:ERROR: relation -½ smf_tea_groups -+ doesn't exist LINE 3: FROM smf_tea_groups ^ Fichier: www/Sources/TEA.php Ligne: 3156 Any ideas ?
Thanks EveAI developper: https://forums.eveonline.com/default.aspx?g=posts&t=21803 YamlToSQL developper: https://forums.eveonline.com/default.aspx?g=posts&t=178572 |

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.21 17:36:00 -
[316] - Quote
Jognu wrote:Hi ! I try to install TEA today (with the last version from the google drive link) and I have now this error : Quote:ERROR: relation -½ smf_tea_groups -+ doesn't exist LINE 3: FROM smf_tea_groups ^ Fichier: www/Sources/TEA.php Ligne: 3156 Any ideas ? Thanks
Looks like the db wasn't updated ... have a look at your db tables ... do you see any tables with smf_tea_something ? |

EveBB
EVESpace Hosting
6
|
Posted - 2013.01.21 19:09:00 -
[317] - Quote
I've just installed the latest version from the google drive and get a number of errors when a person tries to register. This appears specifically when "Get Characters" is clicked....................
Quote:Strict Standards: Non-static method TEACN::get_xml() should not be called statically, assuming $this from incompatible context in /home/eveinfo/public_html/Sources/TEAC.php on line 15
Strict Standards: Non-static method TEACN::get_site() should not be called statically, assuming $this from incompatible context in /home/eveinfo/public_html/Sources/TEAC.php on line 20
There are more but I will not post them as I think the above may be enough.
Thanks
-EveBB-
EVESpace Hosting Web Hosting & Voice Servers for ISK -------------------------------------------------- |

Jognu
French Kiss Singularity Astromechanica Federatis
24
|
Posted - 2013.01.21 21:28:00 -
[318] - Quote
Shin Chogan wrote:Jognu wrote:Hi ! I try to install TEA today (with the last version from the google drive link) and I have now this error : Quote:ERROR: relation -½ smf_tea_groups -+ doesn't exist LINE 3: FROM smf_tea_groups ^ Fichier: www/Sources/TEA.php Ligne: 3156 Any ideas ? Thanks Looks like the db wasn't updated ... have a look at your db tables ... do you see any tables with smf_tea_ something ? Indeed, no tables with smf_tea_ ! This is possible to play a script or something to create the tables ? EveAI developper: https://forums.eveonline.com/default.aspx?g=posts&t=21803
YamlToSQL developper: https://forums.eveonline.com/default.aspx?g=posts&t=178572 |

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.22 09:23:00 -
[319] - Quote
EveBB wrote:I've just installed the latest version from the google drive and get a number of errors when a person tries to register. This appears specifically when "Get Characters" is clicked.................... Quote:Strict Standards: Non-static method TEACN::get_xml() should not be called statically, assuming $this from incompatible context in /home/eveinfo/public_html/Sources/TEAC.php on line 15
Strict Standards: Non-static method TEACN::get_site() should not be called statically, assuming $this from incompatible context in /home/eveinfo/public_html/Sources/TEAC.php on line 20 There are more but I will not post them as I think the above may be enough. Thanks -EveBB-
That isn't something I've changed ... I'm guessing you've got error_reporting = E_ALL | E_STRICT or something like that in your php.ini
your probably want to remove the E_STRICT.
|

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.22 09:41:00 -
[320] - Quote
Jognu wrote:Shin Chogan wrote:Jognu wrote:Hi ! I try to install TEA today (with the last version from the google drive link) and I have now this error : Quote:ERROR: relation -½ smf_tea_groups -+ doesn't exist LINE 3: FROM smf_tea_groups ^ Fichier: www/Sources/TEA.php Ligne: 3156 Any ideas ? Thanks Looks like the db wasn't updated ... have a look at your db tables ... do you see any tables with smf_tea_ something ? Indeed, no tables with smf_tea_ ! This is possible to play a script or something to create the tables ?
I didn't make the original installer just modified some of the files ... Do you have shell access to the system ?
if you do I "think" the following should work but no guarantees :
make a copy of the Packages/TEA_1_3_0.tgz file - put it in a new folder in your home director and decompress it.
Copy the files esam_upgrade.php and tables.php to your forum directory (where index.php is) then run : php tables.php
fingers crossed you should now have some xxx_tea_ tables |

Jognu
French Kiss Singularity Astromechanica Federatis
24
|
Posted - 2013.01.22 10:27:00 -
[321] - Quote
I try, and I receive a lot of :
Quote:No database selectedError: Database modifications failed!
Maybe no link with the problem but : this mod works with postgresql ? EveAI developper: https://forums.eveonline.com/default.aspx?g=posts&t=21803
YamlToSQL developper: https://forums.eveonline.com/default.aspx?g=posts&t=178572 |

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.22 10:40:00 -
[322] - Quote
Jognu wrote:I try, and I receive a lot of : Quote:No database selectedError: Database modifications failed! Maybe no link with the problem but : this mod works with postgresql ?
Ah ... there doesn't appear to be any mention of a db requirement in the original docs BUT .... The code uses mysql_query calls which would lead me to conclude that it DOESN'T work with postgresql.
|

Jognu
French Kiss Singularity Astromechanica Federatis
24
|
Posted - 2013.01.22 10:42:00 -
[323] - Quote
Shin Chogan wrote:Jognu wrote:I try, and I receive a lot of : Quote:No database selectedError: Database modifications failed! Maybe no link with the problem but : this mod works with postgresql ? Ah ... there doesn't appear to be any mention of a db requirement in the original docs BUT .... The code uses mysql_query calls which would lead me to conclude that it DOESN'T work with postgresql. Yes, I came to the same conclusion. I'll maybe take a look to see if it's easy or not to make it compatible with postgresql. EveAI developper: https://forums.eveonline.com/default.aspx?g=posts&t=21803
YamlToSQL developper: https://forums.eveonline.com/default.aspx?g=posts&t=178572 |

Troy Aihaken
Two Sided Mining
27
|
Posted - 2013.01.22 14:03:00 -
[324] - Quote
Hey guys, This time i come to you for help. Ive been looking at the code but im still baffuled. When i click run full members check i get this eroor:
Incorrect integer value: 'no error code' for column 'errorid' at row 1
Any suggestions? I like helping people with I.T in eve technology hit me up in game. You need a killboard, CMS or forums + plus other cool apps made by eve developers let me know we can work something out :) |

Shin Chogan
Blueprint Haus Get Off My Lawn
7
|
Posted - 2013.01.22 14:22:00 -
[325] - Quote
Troy Aihaken wrote:Hey guys, This time i come to you for help. Ive been looking at the code but im still baffuled. When i click run full members check i get this eroor:
Incorrect integer value: 'no error code' for column 'errorid' at row 1
Any suggestions?
anything showing in your apache error.log ... any more info regarding which file and line this shows up in ?
There looks to be 5 places in TEA.php where the column errorid shows up. |

Impudent Dragon
DarkDeadMeat corp Dragon Soul Alliance
2
|
Posted - 2013.01.24 12:05:00 -
[326] - Quote
What is the working version of TEA? Today have problems with "check all" function..... |

Jognu
French Kiss Singularity Astromechanica Federatis
24
|
Posted - 2013.01.24 12:37:00 -
[327] - Quote
I switched from postgresql to MySQL, it works great !
I have a request : could you add the ability to register an account without the need of fill the API ? I didn't tick the "Is a Valid Api required to Register?", but when I try to register I have the error : "The API needs to show All characters on the account" (the ID and the verification code are blank and I didn't click the "Get Characters" button).
Thanks ! EveAI developper: https://forums.eveonline.com/default.aspx?g=posts&t=21803 YamlToSQL developper: https://forums.eveonline.com/default.aspx?g=posts&t=178572 |

Nutbolt
Avalon Project Shadow Rock Alliance
77
|
Posted - 2013.01.24 13:27:00 -
[328] - Quote
On the subject of requests/suggestions: The link to the EVE API pages should really open up in a new tab, not in the same tab, as that's just silly :)
|

Shin Chogan
Blueprint Haus Get Off My Lawn
10
|
Posted - 2013.01.24 13:38:00 -
[329] - Quote
Nutbolt wrote:On the subject of requests/suggestions: The link to the EVE API pages should really open up in a new tab, not in the same tab, as that's just silly :)
Are you talking about the link at the bottom on the Profile pages ? or during registration ? if the former then the version I posted "should" do that ... at least it does it for me ... there is a target="_blank" in the href. |

Nutbolt
Avalon Project Shadow Rock Alliance
77
|
Posted - 2013.01.24 13:48:00 -
[330] - Quote
Shin Chogan wrote:Are you talking about the link at the bottom on the Profile pages ? or during registration ? if the former then the version I posted "should" do that ... at least it does it for me ... there is a target="_blank" in the href.
In both its not doing it, and I have the most recent version from a few posts up. Odd. I know I can edit the files myself, just suggesting its added for both pages in the 'official' release as I have had a few corpies complaining about it lol.
|
| |
|
| Pages: 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 .. 21 :: one page |
| First page | Previous page | Next page | Last page |