View previous topic :: View next topic |
Author |
Message |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Wed Sep 04, 2002 11:30 pm Post subject: |
|
|
Nice!
Can we run a checkup program for new posts on
the Developer board like we do here?
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
Back to top |
|
 |
Developer Developer Forum

Joined: 02 Sep 2002 Posts: 3 Location: VDSWORLD
|
|
Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Thu Sep 05, 2002 4:55 pm Post subject: |
|
|
You may want to try the following script:
http://www.vdsworld.com/developer/data.php
It should work similarly to the original data.php script, except of course that it doesn't return
information about recently uploaded files at VDSWORLD. |
|
Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Thu Sep 05, 2002 5:02 pm Post subject: |
|
|
Thanks Tommy,
Do we use the same useragent? Or is it
required?
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Thu Sep 05, 2002 5:10 pm Post subject: |
|
|
Yup, you should use the same user agent as the other script. At present this is not required
by the script but it may become required again eventually. |
|
Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Thu Sep 05, 2002 6:05 pm Post subject: |
|
|
Works great Tommy.
In case anyone isn't aware of this, you can just add another
INTERNET HTTP GET command to the same routine:
Code: |
EXTERNAL @path(%0)VDSIPP.DLL
INTERNET HTTP, CREATE, 1
INTERNET HTTP, THREADS, 1, OFF
INTERNET HTTP, PROTOCOL, 1, 1
INTERNET HTTP, USERAGENT, 1, "VDSWORLD Forum Check-Up"
rem -- Check VDSworld --
INTERNET HTTP, GET, 1, http://www.vdsworld.com/data.php
%%data0 = @trim(@internet(HTTP, CONTENT, 1))
rem -- Check VDSworld Developer --
INTERNET HTTP, GET, 1, http://www.vdsworld.com/developer/data.php
%%data1 = @trim(@internet(HTTP, CONTENT, 1))
INTERNET HTTP, DESTROY, 1
|
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
Back to top |
|
 |
laurent_H Contributor


Joined: 30 Jun 2001 Posts: 60
|
Posted: Wed Sep 18, 2002 12:45 am Post subject: |
|
|
how can i add the checkup dev forum in checkup tool please ? _________________ Thanks |
|
Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Thu Sep 19, 2002 9:44 pm Post subject: |
|
|
I think this script should be able to check the normal forum as well as the DLL Developer forum:
www.vdsworld.com/files/checkup.dsc
Please tell me if there still are any problems in it.
Tommy |
|
Back to top |
|
 |
|