| View previous topic :: View next topic |
| Author |
Message |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Sat Nov 24, 2007 12:53 am Post subject: |
|
|
| Titan wrote: | | Users can't change that I'm afraid |
Why can't you just make a form?
| Code: | <form action="index.php" method="post">
<input type="text" name="quantity" value="25"></input>
<br>
<input type="submit" name="submit" value="Submit"></input>
</form>
<?php
if ($_POST["Submit"] == true) {
for ($i = 1; ; $i++) {
if ($i > $_POST["quantity"]) {
break;
?> |
Something like that. |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5009 Location: imaginationland
|
Posted: Sat Nov 24, 2007 1:24 am Post subject: |
|
|
It's not that simple  _________________
RegExReplace("irc.freenode.net/autohotkey", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2") |
|
| Back to top |
|
 |
dieom Guest
|
Posted: Sat Nov 24, 2007 3:45 am Post subject: |
|
|
| Well, why not? If you can already change the max amount you can just have the form append the amount to a file and load it to the file manager. |
|
| Back to top |
|
 |
JDN
Joined: 24 Mar 2004 Posts: 126
|
Posted: Tue Nov 27, 2007 5:30 am Post subject: Uploading some archive files |
|
|
Hello. I have created some archive files using the .7Z format and would like to upload them to AutoHotkey.net. I have used FTP before but it was so long ago that I seem to have forgotten most all of what I knew about it. I seem to remember that I had a choice of using either FTP or a web based facility to upload/download files. I can't remember what the pros and cons of each are. Can you advise me?
Thank you
Last edited by JDN on Thu Dec 06, 2007 5:55 am; edited 7 times in total |
|
| Back to top |
|
 |
JDN
Joined: 24 Mar 2004 Posts: 126
|
Posted: Tue Nov 27, 2007 6:08 am Post subject: I uploaded three files (at least I think I did) |
|
|
OK. I believe that I uploaded three files and wonder if you could check to see if they were uploaded correctly?
I think I uploaded each file into the corresponding directory with the same name. Please let me know if it went through correctly?
P.S. Many thanks to engunnerr who first told me about AutoHotkey.net and helped me along.
Last edited by JDN on Thu Dec 06, 2007 5:56 am; edited 1 time in total |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5009 Location: imaginationland
|
Posted: Tue Nov 27, 2007 7:35 pm Post subject: |
|
|
| dieom wrote: | | Well, why not? If you can already change the max amount you can just have the form append the amount to a file and load it to the file manager. | Although I have made a few mods to the file manager I have not studied the code well enough to make these sorts of changes. It also seems trivial knowing that FTP is supported.
| JDN wrote: | | I seem to remember that I had a choice of using either FTP or a web based facility to upload/download files. | You can use both FTP and HTTP (web interface) to upload and download files. There is no big difference, it's down to your preference. I like FTP because I use FileZilla to manage other sites so it's quick and easy for me. Others may use the web interface as it doesn't need any additional software and lets you manage your files directly within your browser.
| JDN wrote: | | I'd like to take a look to see what files other people have uploaded. | You can only see what others have uploaded if they give you the link to it. This way you can keep files private if you need to, or even secure it with a .htaccess file as described in my first post.
| JDN wrote: | | Am I automatically pointed to my home directory just by virtue of logging in? | Yes, you're restricted to your personal directory when you log in the web interface and FTP.
| JDN wrote: | | Is there a recommended way I can write a one-line description so I can let people know what is contained in the three files? | No, but you can give a description wherever you post the link.
| JDN wrote: | | I think I uploaded each file into the corresponding directory with the same name. Please let me know if it went through correctly? | Seems correct, http://www.autohotkey.net/~JDN/JDNHK.7Z is working fine. _________________
RegExReplace("irc.freenode.net/autohotkey", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2") |
|
| Back to top |
|
 |
JDN
Joined: 24 Mar 2004 Posts: 126
|
Posted: Tue Nov 27, 2007 9:23 pm Post subject: |
|
|
Titan, thank you very much for the explanation and the help. I think I am well on my way now. And also thank you to engunneer for your help and explanation with AutoHotkey.net as well as the 7Z software. Here are the links to the files I uploaded. The first is a file named HKD.ZIP. This is the archive that contains the HOTKEY DETECTIVE utility written by Mr. Gregory A. Wolking.
HOTKEY DETECTIVE is very useful. It searches and reports on all hotkeys defined in (or under) the Desktop and Start menus. Installation programs sometimes define hotkeys by creating (.LNK) files to their software, but then, for some reason (which I've never understood) they give these .LNK files the attribues of HIDDEN and SYSTEM files. That usually leaves a big time bomb for the user because he can't ever find out where those hotkeys are defined. Here is the link to HKD.ZIP: http://www.autohotkey.net/~JDN/PD/HKD.ZIP
Here is a link to the Hotkey Reporting progam that I wrote. It operates differently than HOTKEY DETECTIVE as it searches for all hotkeys currently defined - not just the ones under the Start menu and Desktop folders: http://www.autohotkey.net/~JDN/PD/JDNHR.ZIP
And, here is a link to JDNHK.ZIP which contains the user manual for my old (and now defunct) Hotkey Manager - JDN HOTKEYS. The user manual is JDNH.HLP and it contains some demos and tutorials that discuss advanced hotkey usage. JDNHK.ZIP also contains some small text files named abbexp.txt and adv.txt that discuss abbreviation expansion and advanced Hotkey usage. http://www.autohotkey.net/~JDN/PD/JDNHK.ZIP
I recently discovered on Freeware Planet, a working version of the software for my old Hotkey Manager - JDN HOTKEYS. It is old and is no longer supported. But this version actuallyl does work and it includes the user manual including the demos and tutorials: http://www.freewareplanet.net/hotkeys.php
.
Last edited by JDN on Thu Dec 06, 2007 6:16 am; edited 5 times in total |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5009 Location: imaginationland
|
Posted: Wed Dec 05, 2007 8:30 pm Post subject: |
|
|
The file manager has been updated to show the number of times your files have been downloaded (or 'Viewed') by a unique IP address. Directories and symbolic links are not accounted for, and files with only a single view are shown as 0 on purpose. Statistics are updated every hour and reset at the beginning of every month.
If FTP users would like to view these results out of the file manager I would appreciate input on what you'd like to see - i.e. Apache-like logfile to run through your own analysis tool, pre-formatted text file or something else. _________________
RegExReplace("irc.freenode.net/autohotkey", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2") |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 5581
|
Posted: Wed Dec 05, 2007 8:59 pm Post subject: |
|
|
That was very fast.
Many thanks Titan.  |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 5581
|
Posted: Wed Dec 05, 2007 9:08 pm Post subject: |
|
|
What is does the line 1 in .history file signify ?
I thought it was the IP address given as Int32.
 |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5009 Location: imaginationland
|
Posted: Wed Dec 05, 2007 9:40 pm Post subject: |
|
|
| Skan wrote: | | What is does the line 1 in .history file signify ? | Its a Unix time stamp. That file is used by the file manager to record successful logins, so you can ignore it.
Edit: I realized these files are a nuisance so I have removed them all and disabled this kind of logging. _________________
RegExReplace("irc.freenode.net/autohotkey", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2")
Last edited by Titan on Thu Dec 06, 2007 12:11 am; edited 1 time in total |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 5581
|
Posted: Wed Dec 05, 2007 9:44 pm Post subject: |
|
|
| Oh! Thanks for the information. |
|
| Back to top |
|
 |
DerRaphael
Joined: 23 Nov 2007 Posts: 379 Location: Heidelberg, Germany
|
Posted: Wed Dec 05, 2007 11:37 pm Post subject: |
|
|
Thanks Titan for the updated feat makes me happy |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5009 Location: imaginationland
|
Posted: Tue Dec 18, 2007 5:48 pm Post subject: |
|
|
File manager v2 alpha
Click the thumbnail for a full sized screen shot
I have decided to write my own file manager software from scratch, some of the new features will be:
- Faster, cleaner and easier to use interface
- Increased browser interoperability - including support for Opera mini (used in mobile phones, PSP etc.)
- More stats such graphs and pie charts showing your most downloaded files and space usage
- Javascript editor for creating HTML files with WYSIWYG formatting
I have no time line for this update - it could be anything from a few days to months, depending on how much free time I have. A few users will be invited to use this new file manager when the beta is ready.
Suggestions and advice are always welcome. _________________
RegExReplace("irc.freenode.net/autohotkey", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2") |
|
| Back to top |
|
 |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Tue Dec 18, 2007 11:52 pm Post subject: |
|
|
I'll be happy to assist in any way I can to further the development of this soon great update  _________________ Join AutoHotkey's Whatpulse Team today!
~Ian |
|
| Back to top |
|
 |
|