Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Attach:
(Clear Attachment)
(more attachments)
Allowed file types: gif, jpg, png, txt, tpl, lng, ini, pvd, psf, ini, cfg, csv, zip, xml, pas, 7z
Restrictions: 4 per post, maximum total size 1024KB, maximum individual size 1024KB
Note that any files attached will not be displayed until approved by a moderator.
Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
What is the best video database software?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: nostra
« on: January 16, 2011, 01:24:44 am »

Try adding a slash to URL, like this:
Code: [Select]
URL := BASE_URL + '/login/';
or

Adding ? before params, like this:
Code: [Select]
?username=myusername&password=mypassword
Posted by: geggi
« on: January 15, 2011, 11:26:10 pm »

BASE_URL = 'http://www.moviepilot.de';
 
  URL := BASE_URL + '/login';
Posted by: nostra
« on: January 14, 2011, 08:02:07 pm »

What did you set for URL?
Posted by: geggi
« on: January 14, 2011, 04:31:28 pm »

I'm currently working on a new script for moviepilot.de.
It works fine for data I can parse without being logged in, yet I want to log in to access my personal rating of the movies.

I failed to use the GetLoginInfo(URL, params) function. What is the syntax of the params string?

Assuming my username and password are myusername and mypassword. The login form at http://www.moviepilot.de/login requires "username" and "password".
What params string must I use? Setting 'params := "username=myusername&password=mypassword"; ' did not work.


geggi