PtokaX Remote Admin v2.13 released
 

PtokaX Remote Admin v2.13 released

Started by Thor, 22 July, 2009, 19:43:33

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Thor

After a long downtime, a new version is here. Many things upgraded, there is a new, colorized Lua script editor, many thing has been fixed. I don't want to write here everything - it would be too much :)
If you want to know more about it, check http://pradmin.sf.net. Here you can find the precompiled versions, sources, screenshots, features and the changelog as well.
Enjoy!

speedX

Thanking You,

speedX

Yahoo

great work Hungarista
keep the good work going
"BoRN FIGhTEr"

MacGyver

Yeeeea good work

Below I send some transtated locution used in Remote PtokaX 2.13 (Polish language)

English                                    |      Polish
--------------------------------|--------------------------

                                  Og?lne ustawienia

Generate a safe password          =      Generuj zapisane hasło
Password generator                   =      Generator hasła
Small english letters (a - z)        =      Małe litery angielskie       
Big english letters (A - Z)          =      Duże litery angielskie
Numbers (0 - 9)                       =     Cyfry
Special characters                    =     Znaki specjalne
Generate                                =      Generuj
Copy to clipboard                    =       Kopiuj do schowka
Login setting                           =      Ustawienia logowania
About                                    =      O programie   
Connect                                 =      Połącz

                                     Ustawienia

MOTD (message of the day)    =        MOTD (wiadomość dnia)     

<push-buttom> Load from file  =       Ładuj z pliku
                      Load default   =       Ładuj domyślne
                      Save to file    =       Zapisz do pliku

                                      Skrypty

<push-buttom> Clear editor    =      Czyść edytor
                      Clear error     =      Czyść błędy
                      Setup editor  =      Ustawienia edytora

                                     UDP Debug

Sys                                  =        System
Sys messages                     =        Powiad. systemu
Log sys messages                =        Loguj wiadomości systemu
Err                                   =        Błędy
Err messages                      =        Powiad. o błędach
Log err messages                 =       Loguj powiadomienia o błędach
Chat                                =        Czat
Chat messages                   =        Powiad. czatu
Log Chat messages              =      Loguj powiadomienia czatu
Lua Messages                   =        Powiad. LUA
Log LUA messages              =       Loguj powiadomienia LUA
Reg messages                   =       Powiad. rejestracji
Log Reg messages              =       Loguj powiadomienia rejestracji
Log messages                   =        Logi wiadomości
Log log messages               =       Loguj logi wiadomości


Respectfull MacGyver

For_Ever_MeXxX


Dreams

Really great! this solves many of my problems! Many Thanks!

Jorgo

This does not run under Win7 x64... any chance to get an updated version?

ATAG

#7
Quote from: Jorgo on 24 July, 2012, 23:55:57
This does not run under Win7 x64... any chance to get an updated version?
Maybe there is not pxlfs on x64 PtokaX?

Take a look at the attachment :) I use it on FreeBSD amd64...

You have to change line #49 to:
os.execute("dir /B "..sPath.." > "..tmp)


UI: PtokaX doesn't use subfolders, so this simle function is enough.
io.popen would be much better, but it is/was buggy in the GUI version...

lfs={}
lfs.dir = function(sPath)
        local f,e=io.popen("dir /B "..sPath, "r")
        if f then
                return function()
                        local l = f:read("*l")
                        if l then
                                return l
                        else
                                f:close()
                        end
                end
        else
		return nil, e
	end
end

SMF spam blocked by CleanTalk