Pages: 1 [2] 3 4 5 6 7 8 :: one page |
|
Author |
Thread Statistics | Show CCP posts - 1 post(s) |
snipereagle1
Killer Koalas
0
|
Posted - 2011.10.05 00:21:00 -
[31] - Quote
Fred Eto wrote:I am getting a bug, it is saying that "You are not allowed to register on this server." but I've made sure that the public $ourname = "XXX"; is correct, where XXX is my main's corporation. Am I missing something? Anything else that can be causing this bug?
/Fred
You'll get more details if you go in to the config file and enable dev / verbose (I don't remember the exact verbage) mode, it will give you a more detailed error message. Once you get that, post it here and we'll help you out! |
Fred Eto
The Eloria Corporation
0
|
Posted - 2011.10.05 00:32:00 -
[32] - Quote
snipereagle1 wrote:Fred Eto wrote:I am getting a bug, it is saying that "You are not allowed to register on this server." but I've made sure that the public $ourname = "XXX"; is correct, where XXX is my main's corporation. Am I missing something? Anything else that can be causing this bug?
/Fred You'll get more details if you go in to the config file and enable dev / verbose (I don't remember the exact verbage) mode, it will give you a more detailed error message. Once you get that, post it here and we'll help you out!
I have, and all I get is the above still:
Checking... Character: Character1 Debug: User ID: XXX Debug: API Key: XXX
Debug: Character ID: XXXXX
Debug: Character List: Debug: XXX Debug: Character1
Debug: API verified.
You are not allowed to register on this server. |
Morgenholt Blue
RED.Legion
1
|
Posted - 2011.10.05 06:46:00 -
[33] - Quote
MJ Maverick wrote:If you strip slashes the SQL query will break and registration will go FUBAR. If it does work then they won't be in the database and so won't be checked to see if they have left the alliance. Which is bad.
Don't strip slashes. It also opens you up to SQL injections. (hacking)
Also line 118: $inputName = trim($_POST["inputName"]); Hasn't had slashes added anyway. inputName doesn't get slashed, it is only used to get the CharacterID which is used to get the exact (case sensitive) characters name. The exact characters name is what is slashed.
Best bet, get him to try again and tell me exactly what the Step 2 page says (all of it) and what the error on Step 3 is. The slash itself shouldn't be a problem tbh, I just forgot to hide it in the error message to save people getting confused.
This behavior is caused by PHP magic quotes which you will find the majority of shared hosts have switched on. It automatically add's a \ before any ' which is what is breaking EVEOTS for a large amount of people and we aren't directly using the inputName var in any SQL queries. |
MJ Maverick
IronPig Sev3rance
13
|
Posted - 2011.10.05 15:21:00 -
[34] - Quote
Fred Eto wrote:
I have, and all I get is the above still:
Checking... Character: Character1 Debug: User ID: XXX Debug: API Key: XXX
Debug: Character ID: XXXXX
Debug: Character List: Debug: XXX Debug: Character1
Debug: API verified.
You are not allowed to register on this server.
Hey Fred, if you are running version 1.5 then the white list isn't in the config.php. That just tells the system who your guys are. You need to make a white list in .../eveots/admin. Take a look at the readme.html if you get stuck setting up a root admin.
@Morgenholt, cheers for looking into that, when I find out where they are breaking it I'll see if stripslashes gets it working... Pesky hosts and their silly settings! |
Fred Eto
The Eloria Corporation
0
|
Posted - 2011.10.05 15:27:00 -
[35] - Quote
MJ Maverick wrote:Fred Eto wrote:
I have, and all I get is the above still:
Checking... Character: Character1 Debug: User ID: XXX Debug: API Key: XXX
Debug: Character ID: XXXXX
Debug: Character List: Debug: XXX Debug: Character1
Debug: API verified.
You are not allowed to register on this server.
Hey Fred, if you are running version 1.5 then the white list isn't in the config.php. That just tells the system who your guys are. You need to make a white list in .../eveots/admin. Take a look at the readme.html if you get stuck setting up a root admin. @Morgenholt, cheers for looking into that, when I find out where they are breaking it I'll see if stripslashes gets it working... Pesky hosts and their silly settings!
Fixed it, gracias =)
|
Jimmy06
Paramount Commerce Masters of Flying Objects
0
|
Posted - 2011.10.11 19:56:00 -
[36] - Quote
MJ Maverick wrote:That quick connect link is already in the next version :) it's been tested on Sev3rance's and seems to work fine.
I suppose this API is APIv3 :P but yeah I will be reworking it all. I currently have no internet access at home which makes things pretty difficult :/
I'll be back online on the 7th October.
Sorry MJ lol didnt realise you had released the quick link does it even look like mine ? lol.
Also if you need any testing done with APIv3 send some code my way :) |
MJ Maverick
IronPig Sev3rance
13
|
Posted - 2011.10.12 15:55:00 -
[37] - Quote
Update v1.7 YOU MUST DELETE ALL REGISTRATIONS FROM TEAMSPEAK MANUALLY if upgrading. See readme "Customizable key upgrade"! Implemented new customizable API keys! Yay :D (Run "customizable keys update.sql"). Stage 2 of registration now provides a link that will connect you to TS and bookmark it. Idiot proof! Right? Added the "Audit Members" to the admin panel that was left out of v1.5. Made more compatible with PHP 5.3, depreciated functions have been updated. Added more security to the admin panel. Lots of files tweaked.
lol I just saw your post as I went to edit this thread Jimmy.
Thank you all for the support so far it really is appreciated. It really lets me know all this work is doing some good and makes me want to improve it. |
snipereagle1
Killer Koalas GIANTSBANE.
0
|
Posted - 2011.10.13 23:31:00 -
[38] - Quote
Using version 1.7, I get the following error when adding an alliance to the whitelist: "An error occured: API Date could not be read / parsed, original exception: Operation timed out after 10000 milliseconds with 682998 bytes received"
|
king curt
The Maverick Navy Against ALL Authorities
0
|
Posted - 2011.10.14 15:04:00 -
[39] - Quote
Hey MJ,
Quick question for you. You've probably done it and I am just to to figure it out.
Is there a way to, once the whitelist has been set up for "blues", to assign them to the proper group after they have registered?
The way I see it right now is there are only two possibilities. Either they are in your "alliance/corp" or they are "blue list".
Quote:// Teamspeak 3 group for alliance/corp members public $group = ; // Teamspeak 3 group for people on the whitelist but not in your alliance/corp public $bluegroup = ; |
snipereagle1
Killer Koalas GIANTSBANE.
0
|
Posted - 2011.10.14 16:28:00 -
[40] - Quote
king curt wrote:Hey MJ, Quick question for you. You've probably done it and I am just to to figure it out. Is there a way to, once the whitelist has been set up for "blues", to assign them to the proper group after they have registered? The way I see it right now is there are only two possibilities. Either they are in your "alliance/corp" or they are "blue list". Quote:// Teamspeak 3 group for alliance/corp members public $group = ; // Teamspeak 3 group for people on the whitelist but not in your alliance/corp public $bluegroup = ; Are you askin whether you can give blues and corp the same group? |
|
MJ Maverick
IronPig Sev3rance
15
|
Posted - 2011.10.14 18:02:00 -
[41] - Quote
snipereagle1 wrote:Using version 1.7, I get the following error when adding an alliance to the whitelist: "An error occured: API Date could not be read / parsed, original exception: Operation timed out after 10000 milliseconds with 682998 bytes received"
Corporations add just fine... That looks like a CCP problem, the API server didn't respond. It happens sometimes, just try again later. CCPs Alliance list causes a high load.
king curt wrote:Hey MJ, Quick question for you. You've probably done it and I am just to to figure it out. Is there a way to, once the whitelist has been set up for "blues", to assign them to the proper group after they have registered? The way I see it right now is there are only two possibilities. Either they are in your "alliance/corp" or they are "blue list". Quote:// Teamspeak 3 group for alliance/corp members public $group = ; // Teamspeak 3 group for people on the whitelist but not in your alliance/corp public $bluegroup = ; I'm not sure I know what you mean. Blue are put into the blue group on registration.
If you mean you have a group for RED.Overlord and you want to put people from ROL in that group manually you can do so, once they are registered you can add them to this group also. Just right click on them in Teamspeak.
However there is no native support (yet) for multiple custom groups. As it's not required for functionality it's just something a couple of people have asked for it's not high on my to-do list. If you're really nice though I could be persuaded to hurry it up :P |
Sjet Idahon
Lost Souls Continuum United Pod Service
0
|
Posted - 2011.10.20 12:24:00 -
[42] - Quote
Hey MJ,
i installed EVEOTS on my Windows vServer but when i try to register a User, there is an error:
An error occured: API Date could not be read / parsed, original exception: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed [117]
- Sjet - |
MJ Maverick
IronPig Sev3rance
16
|
Posted - 2011.10.21 17:16:00 -
[43] - Quote
Sjet Idahon wrote:Hey MJ,
i installed EVEOTS on my Windows vServer but when i try to register an User, an error occurs.
An error occured: API Date could not be read / parsed, original exception: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed [117]
- Sjet - Very strange, haven't heard of that before. I know what it is though. That is basically the API server not responding. Now, this could be a temporary problem at CCPs end in which case just try again later. However it's worth checking with your provider and going over your server settings to see if there is anything that is checking if SSL certificates are valid (CCP seem to have a problem with that from time to time). If there is such an option, disable it. |
TS5P
Interstellar Brotherhood of Gravediggers The 0rphanage
1
|
Posted - 2011.10.31 21:26:00 -
[44] - Quote
Great Job, MJ. Updated our server to 1.7 and it works great. |
Hired Assasin
Black Aces Against ALL Authorities
21
|
Posted - 2011.11.01 23:33:00 -
[45] - Quote
im not sure if you fixed this already but in the admin panel on google chrome, when i click next in the member list it wont go to next one even though on the page link it says page#2 or w/e |
TS5P
Interstellar Brotherhood of Gravediggers The 0rphanage
1
|
Posted - 2011.11.02 18:19:00 -
[46] - Quote
Hired Assasin wrote:im not sure if you fixed this already but in the admin panel on google chrome, when i click next in the member list it wont go to next one even though on the page link it says page#2 or w/e
Yup, same problem. Tried IE and Firefox. |
MJ Maverick
IronPig Sev3rance
17
|
Posted - 2011.11.02 18:45:00 -
[47] - Quote
Strange. But guys if you are reporting a bug please give me enough information to go for a fix.
What version of PHP are you running? What is the URL at the top of the browser when you click Next? |
Baki Yuku
Nordgoetter Viking Empire
2
|
Posted - 2011.11.04 11:49:00 -
[48] - Quote
Do you have any plans on adding support for adding channel groups to certain users? for example lets say I'm a Member of Viking Empire Alliance said alliance is on the Whitelist so I get rights to access the ts (server group) now what would be awsome is if Corp was checked as well and if Channel name matches corp name in api user gets rights to said channel..
best regards, chris
PS: nice tool^^ |
Decius Audene
Center for Advanced Studies Gallente Federation
0
|
Posted - 2011.11.05 07:01:00 -
[49] - Quote
im having trouble installing ur tool . I get this error
An error occured: API Date could not be read / parsed, original exception: file_get_contents(https://api.eveonline.com/eve/CharacterInfo.xml.aspx?characterID=935338328) [function.file-get-contents]: failed to open stream: No error [117] |
MJ Maverick
IronPig Sev3rance
18
|
Posted - 2011.11.05 18:42:00 -
[50] - Quote
Baki Yuku wrote:Do you have any plans on adding support for adding channel groups to certain users? for example lets say I'm a Member of Viking Empire Alliance said alliance is on the Whitelist so I get rights to access the ts (server group) now what would be awsome is if Corp was checked as well and if Channel name matches corp name in api user gets rights to said channel..
best regards, chris
PS: nice tool^^ No plans for this I'm afraid.
Decius Audene wrote:im having trouble installing ur tool . I get this error
An error occured: API Date could not be read / parsed, original exception: file_get_contents(https://api.eveonline.com/eve/CharacterInfo.xml.aspx?characterID=935338328) [function.file-get-contents]: failed to open stream: No error [117] Where did you get this? But anyway that's basically CCP timing out, try again later and it should work fine. The API server trips up now and again. That resource is working now for example. |
|
Hired Assasin
Black Aces Against ALL Authorities
21
|
Posted - 2011.11.10 10:13:00 -
[51] - Quote
Would also be a good idea to add the option to set what server groups people join from the admin panel instead of only in the config file. and a extra bonus would be adding additional layers of who joins what group instead of main group and friendly group. |
MJ Maverick
IronPig Sev3rance
19
|
Posted - 2011.11.14 16:25:00 -
[52] - Quote
Noted Assassin. |
snipereagle1
Killer Koalas R.A.G.E
1
|
Posted - 2011.11.14 17:05:00 -
[53] - Quote
Thanks for letting me bend your ear yesterday, I reinstalled my Linux server and now it works =) |
MJ Maverick
IronPig Sev3rance
19
|
Posted - 2011.11.15 18:47:00 -
[54] - Quote
Excellent :) |
Netan Maybourne
Ninjutsu Assassins Inc Death Jesters
0
|
Posted - 2011.11.20 04:04:00 -
[55] - Quote
This looks absolutely awesome! I was not looking forward to coding this on my own with new API and all. I'll be implementing this in the next few days, I'll let you know how everything goes. |
Noxides
APEX ARDENT COALITION NEM3SIS.
0
|
Posted - 2011.12.02 19:20:00 -
[56] - Quote
Does anyone know of a webhost that this works on? The on i'm on wont open the right outgoing port so the script can't connect to the TS server. |
MJ Maverick
IronPig Sev3rance
20
|
Posted - 2011.12.03 04:41:00 -
[57] - Quote
What host are you using? All I have come across support it. Hypernia are generally awesome. But come to think of it I'm not sure if they allow you to change the whitelist.txt which is essential.
Make sure you ask your Teamspeak host that you can edit the whitelist and that you ask your web host that the server will be able to send outbound signals.
These aren't any special magical things required by EVEOTS, these are basic things that any good web host provides by default. |
snipereagle1
Killer Koalas R.A.G.E
1
|
Posted - 2011.12.03 07:08:00 -
[58] - Quote
Netfirms gargles space-balls at this. They go on and on and on about security, give you the run around, and then tell you no. I ended up getting a VPS from www.interserver.net and rolling my own TS3 & web server half as much as paying for them separately. The downside of a VPS is that you have to manage your own server.
And darkstarllc teampeak hosting won't let you whitelist addresses. |
Hired Assasin
Black Aces Against ALL Authorities
21
|
Posted - 2011.12.03 16:07:00 -
[59] - Quote
If you need hosting i can do it :) Teamspeak 3 with API and Web Interface Hosting : http://alturl.com/asde8
Catch me on EVE Gate, im allmost always on it! |
MJ Maverick
IronPig Sev3rance
20
|
Posted - 2011.12.08 23:48:00 -
[60] - Quote
You're using my registration system? I hope you are crediting it as you're making a profit out of it. I'm not totally sure I like this. |
|
|
|
|
Pages: 1 [2] 3 4 5 6 7 8 :: one page |
First page | Previous page | Next page | Last page |