P pfellner Guest Mar 4, 2008 #1 How can I create a custom button so that it "posts" login info for a script such as an admin panel?
I ib1984 Basic Pleskian Mar 6, 2008 #2 if script accepts GET parameters you may just specify them in URL like: http://domain.tld/script?username=user&password=password However, it is rather unsafe way if requests are submitted over non-encrypted connection.
if script accepts GET parameters you may just specify them in URL like: http://domain.tld/script?username=user&password=password However, it is rather unsafe way if requests are submitted over non-encrypted connection.
P pfellner Guest Mar 6, 2008 #3 ib1984 said: if script accepts GET parameters you may just specify them in URL Click to expand... No, it does not accept the "get" method.
ib1984 said: if script accepts GET parameters you may just specify them in URL Click to expand... No, it does not accept the "get" method.
I ib1984 Basic Pleskian Mar 6, 2008 #4 then the only way is to create some script on some location (either where target application located or somewhere else) which will accept GET parameters, form a request and redirect user to the target application.
then the only way is to create some script on some location (either where target application located or somewhere else) which will accept GET parameters, form a request and redirect user to the target application.