Welcome Guest ( Log In | Register)



2 Pages V   1 2 >  
Reply to this topicStart new topic
> Create Page?, How?
alex1985
post Apr 9 2008, 07:42 AM
Post #1


Super Member
*********

Group: [HOSTED]
Posts: 387
Joined: 9-February 08
Member No.: 57,615



Hi, everyone!

I need to create a script just within a page. Read the following story:

I have an account at one of file sharing hosts. I am tired of every time log in and tell others what I have at it (files).

If there is way to create a script that logs in me and just list the files i have on this account from specified folder.

If you know, let me know as usual.
Go to the top of the page
 
+Quote Post
bluedragon
post Apr 24 2008, 08:48 AM
Post #2


Advanced Member
*******

Group: [HOSTED]
Posts: 134
Joined: 24-April 08
Member No.: 61,260



Are you a PHP programmer ?


I might do this for you. wink.gif but I need to know at what level are you?

Also, I am not sure that if its possible to log in automatically where you want the listing but if its a folder you can retrieve the listing automatically biggrin.gif

This post has been edited by bluedragon: Apr 24 2008, 08:50 AM
Go to the top of the page
 
+Quote Post
alex1985
post Apr 24 2008, 10:29 AM
Post #3


Super Member
*********

Group: [HOSTED]
Posts: 387
Joined: 9-February 08
Member No.: 57,615



I'm not really a php programmer, just started studying based on tutorials and practice. Help me if you can.
Go to the top of the page
 
+Quote Post
galexcd
post Apr 25 2008, 04:25 PM
Post #4


Define:EVIL PROGRAMMER (ē'vəl prō'grăm'ər)- n. An organism that converts caffeine into evil software.
*********

Group: [HOSTED]
Posts: 975
Joined: 25-September 05
From: The dungeon deep below the foundation of trap17
Member No.: 12,251



If you wouldn't mind giving us the url of the login, the url that lists all of your shared files, and the page source of the url that lists all of the shared files so I or one of the other php programmers on the forums can write a parser for you.
Go to the top of the page
 
+Quote Post
tracdoor
post May 1 2008, 09:17 PM
Post #5


Member [Level 1]
****

Group: [HOSTED]
Posts: 66
Joined: 2-April 08
From: Berkshire, England
Member No.: 60,270



I'm sure its possible, but it isn't very secure if someone found the site, I would put a quick login script on it first.

I think you should learn PHP because its a really good and useful language to use, learn it and i'm sure you'll be able to solve this problem, and make loads more of great features for your site!

Login scripts, hit counters, random content generators, the list is endless!
Go to the top of the page
 
+Quote Post
ivenms
post May 3 2008, 04:41 PM
Post #6


Member [Level 1]
****

Group: Members
Posts: 53
Joined: 6-August 06
Member No.: 27,912



If you are looking for file hosting scripts, there are many scripts available for your taste. You can find them from the proper section of hotscripts.com.

If you need a script which spider your image hosting site and give your files details within your control panel over there, it is very difficult to apply in real world. Because most of the logged account scripts mentain security in high alert to avoid hacking.
Go to the top of the page
 
+Quote Post
Framp
post May 26 2008, 02:36 PM
Post #7


Newbie [Level 2]
**

Group: [HOSTED]
Posts: 39
Joined: 26-May 08
Member No.: 62,700



You can use curl or fsockopen to simulate cookies and/or posts values to login and list your files.

You need a webserver with fopen enabled
Go to the top of the page
 
+Quote Post
alex1985
post Jun 3 2008, 04:49 AM
Post #8


Super Member
*********

Group: [HOSTED]
Posts: 387
Joined: 9-February 08
Member No.: 57,615



Can you explain it in more details, please?!
Go to the top of the page
 
+Quote Post
Erdemir
post Jun 13 2008, 03:51 PM
Post #9


Premium Member
********

Group: [HOSTED]
Posts: 153
Joined: 12-May 08
From: Somewhere in the Matrix
Member No.: 62,045



QUOTE(Framp @ May 26 2008, 05:36 PM) *
You can use curl or fsockopen to simulate cookies and/or posts values to login and list your files.

You need a webserver with fopen enabled

fopen or fsockopen whatever you call , every function is already enabled in Trap17.

QUOTE(alex1985 @ Jun 3 2008, 07:49 AM) *
If there is way to create a script that logs in me


Sorry but sending post data in php (or in other webserver side languages) is impossible. You can download the page or you can send GET data but you can't send POST data in php.

But there is a solution if you write a program which simulates your moves to login. Or a program which logins via its own webbrowser in tray, And then the application sends the results to your php file to save the data into your table in mysql .

This post has been edited by Erdemir: Jun 13 2008, 03:53 PM
Go to the top of the page