Jump to content
TrinityCore

Martos

Plebs
  • Posts

    6
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Martos

  1. I have created the account with .account create soap password end I set the permission with .account set gmlevel soap 3 -1 but return me 401 ... Unauthorized
  2. SOAP is enabled on worldserver.conf. How can i set a proper permissions ?
  3. HI all ! I have a problem with a SOAP client... When I send the commands, server response me with error 401. I have set gm level 3 -1 and rbac 219 (account create). The branch currently used is master. Code in PHP : <code> protected $soap; public function connect(){ try { $soap = new \SoapClient(NULL, array( 'location' => 'http://www.galaxyserver.ovh:7878/', "uri" => "urn:TC", 'style' => SOAP_RPC, "trace" => 1, "username" => "soap", "password" => "*****" )); $command = "account create test test"; echo $result = $soap->executeCommand(new \SoapParam($command, 'command')); } catch (Exception $e) { print_r($e); } } </code>
  4. I tryed this : https://github.com/pablocrossa/trinitycore-portable but the results its the same...
  5. Hi I've try to compile Trinitycore on my RaspberryPi2 but i had this output error : -- Detected 32-bit platform -- UNIX: Using jemalloc -- UNIX: Using default configuration directory -- UNIX: Using default library directory -- UNIX: Configuring uninstall target -- UNIX: Created uninstall target -- UNIX: Detected compiler: /usr/bin/cc -- GCC: SFMT enabled, SSE2 flags set -- Found OpenSSL library: /usr/lib/arm-linux-gnueabihf/libssl.so;/usr/lib/arm-linux-gnueabihf/libcrypto.so -- Found OpenSSL headers: /usr/include CMake Error at /usr/share/cmake-3.0/Modules/FindPackageHandleStandardArgs.cmake:136 (message): Could NOT find Threads (missing: Threads_FOUND) Call Stack (most recent call first): /usr/share/cmake-3.0/Modules/FindPackageHandleStandardArgs.cmake:343 (_FPHSA_FAILURE_MESSAGE) /usr/share/cmake-3.0/Modules/FindThreads.cmake:178 (FIND_PACKAGE_HANDLE_STANDARD_ARGS) CMakeLists.txt:57 (find_package) -- Configuring incomplete, errors occurred! What is the issues ? Thanks for help
×
×
  • Create New...