Windows Explorer Impersonator - The Online Explorer

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #13) by Jimmy89 on Oct 16 2007, 12:38 PM. (Line Breaks Removed)
Looks like its improving greatly! one thing i noticed is that when you use the menu option on the forward and back arrows (the drop down menus) longer directory names (such as the test directory. pass = 123456) don't fit into one line in the menu and don't stretch the menu out (like they do in windows). Otherwise its looking good! Congrats-jimmy... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Free Web Hosting > Computers & Tech > Programming > Scripting > PHP

Windows Explorer Impersonator - The Online Explorer

turbopowerdmaxsteel
I wanted to create a directory where I could keep my files while on the move. The main problem was the poor interface associated with a simple Web Application. Fear not, AJAX is here and this is what I have come up with:-



Here goes the link to the script: http://maxotek.net/scripts/php-ajax/winExplorerImpersonator/

*** List of explorer currently supported features:-
    Directory Navigation via Double Click
    Directory Navigation via the Address Bar
    Breadcrumb type Back/Next Navigation
    General Navigation: Go Up, Refresh, Home
    Scrollable + Sortable File/Folder Listing with details (Size, Type, Date Modified)
    File Type Detection with Custom Icon & Description
    Context Sensitive File & Folder Tasks which includes:-
      General
        Make a new Folder
        Upload Files
      File
        Download
        Rename
        Move
        Copy
        Delete
      Folder
        Rename
        Move
        Copy
        Delete
    File/Folder Selection through Lasso and Mouse Click (Ctrl, Shift Supported)
    Status Bar which shows the current objects, total file size in the directory and the zone.
    File type customization
    Password protection for Files adnd Folders
    AJAX based Image Preloading

*** The List will be kept updated.

A lot of effort has gone in to make it resemble Windows Explorer both in terms of look and functionality. Although, at times, certain variations had to be made. I will be eagerly waiting for the expert opionion and ideas which made the previous scripts a success.

Thanx,

Max.

 

 

 


Reply

Jimmy89
Well done, it functions very much like the windows counterpart! It was a bit slow for me, but im assuming once all the small graphics have downloaded, it'll be quicker to run.

Just a question, are you specifying the directory to use in the script from the backend - as so you can choose the directory that you want to display? It sounds something similar to another topic i was reading just yesterday. This time, instead of making a simple html page with links - this is the graphical/AJAX alternative.

Well Done, and I cannot wait to see some of the new features!
-jimmy

EDIT: My Internet is slow today - thus the reason everything was going slowly!

Reply

turbopowerdmaxsteel
Yes, the PHP script sets the base folder address. I am going to add features like navigation through keyboard shortcuts and the file type configuration support which will allow to customize the file icon and description.

Reply

Sten
that is soo cool

i wish i knew how to do something like that, it'll be many years more than likely before i can do something like that, lmao



Reply

HellFire121
Whoa damn awesome stuff there, that would've taken you ages. Nice addition to your site too, runs fine here on my side and i have to say it does look nice and have some great functionality!

With further customisation i'd say you could get it looking and working just like the actual windows explorer (there would be some limitations of course but it's looking good so far)

Great work smile.gif
-HellFire

Reply

turbopowerdmaxsteel
It took 72 hours of marathon coding to be done. A potential vulnerability which allowed access to upper folders via ../ has been resolved. It would have compromised my hosting files, so I have disabled all paths with ../. The File type customization is now working and currently I am looking for cool file type icons. Another thing I am thinking of is to read the icons embedded in files such as EXEs.

Reply

ethergeek
QUOTE(turbopowerdmaxsteel @ Oct 9 2007, 06:13 AM) *
It took 72 hours of marathon coding to be done. A potential vulnerability which allowed access to upper folders via ../ has been resolved. It would have compromised my hosting files, so I have disabled all paths with ../. The File type customization is now working and currently I am looking for cool file type icons. Another thing I am thinking of is to read the icons embedded in files such as EXEs.


utilizing the open_basedir configuration option in PHP is safer as it restricts filesystem access at the runtime level so you don't have to do code checks, just handle the errors gracefully.

QUOTE(http://us2.php.net/features.safe-mode)
open_basedir string

Limit the files that can be opened by PHP to the specified directory-tree, including the file itself. This directive is NOT affected by whether Safe Mode is turned On or Off.

When a script tries to open a file with, for example, fopen() or gzopen(), the location of the file is checked. When the file is outside the specified directory-tree, PHP will refuse to open it. All symbolic links are resolved, so it's not possible to avoid this restriction with a symlink. If the file doesn't exist then the symlink couldn't be resolved and the filename is compared to (a resolved) open_basedir.

The special value . indicates that the working directory of the script will be used as the base-directory. This is, however, a little dangerous as the working directory of the script can easily be changed with chdir().

In httpd.conf, open_basedir can be turned off (e.g. for some virtual hosts) the same way as any other configuration directive with "php_admin_value open_basedir none".

Under Windows, separate the directories with a semicolon. On all other systems, separate the directories with a colon. As an Apache module, open_basedir paths from parent directories are now automatically inherited.

The restriction specified with open_basedir is actually a prefix, not a directory name. This means that "open_basedir = /dir/incl" also allows access to "/dir/include" and "/dir/incls" if they exist. When you want to restrict access to only the specified directory, end with a slash. For example: "open_basedir = /dir/incl/"

Note: Support for multiple directories was added in 3.0.7.

The default is to allow all files to be opened.

 

 

 


Reply

TavoxPeru
QUOTE(turbopowerdmaxsteel @ Oct 8 2007, 05:16 PM) *
I wanted to create a directory where I could keep my files while on the move. The main problem was the poor interface associated with a simple Web Application. Fear not, AJAX is here and this is what I have come up with:-



Here goes the link to the script: http://maxotek.net/scripts/php-ajax/winExplorerImpersonator/

*** List of explorer currently supported features:-
    Directory Navigation via Double Click
    Directory Navigation via the Address Bar
    Breadcrumb type Back/Next Navigation
    General Navigation: Go Up, Refresh, Home
    Scrollable + Sortable File/Folder Listing with details (Size, Type, Date Modified)
    File Type Detection with Custom Icon & Description
    Context Sensitive File & Folder Tasks which includes:-
      General
        Make a new Folder
        Upload Files
      File
        Download
        Rename
        Move
        Copy
        Delete
      Folder
        Rename
        Move
        Copy
        Delete
    File/Folder Selection through Lasso and Mouse Click (Ctrl, Shift Supported)
    Status Bar which shows the current objects, total file size in the directory and the zone.
    File type customization

*** The List will be kept updated.

A lot of effort has gone in to make it resemble Windows Explorer both in terms of look and functionality. Although, at times, certain variations had to be made. I will be eagerly waiting for the expert opionion and ideas which made the previous scripts a success.

Thanx,

Max.

Congrats, this an excelent script but i have some trouble to check your site, i guess is a problem by my side. I hope that this issue will be fixed soon.

Best regards,

Reply

.:Brian:.
This looks like an excellent script so far!!

There are a couple things that would be nice... It would be nice if it supported double clicking on files themselves...but it is a great script at the moment...

Maybe even better if it supported dealing with some types of files (such as pdf, and image files) in certain ways without having to actually download them to your computer somewhere and then view them... (like embeded file viewers of some sort)

Reply

TavoxPeru
Another excellent web-based file manager is eXtplorer, look to this topic that i just post for more information about this: eXtplorer, A PHP -and JavaScript- based File Manager.

Best regards,

Reply

Latest Entries

Jimmy89
Looks like its improving greatly! one thing i noticed is that when you use the menu option on the forward and back arrows (the drop down menus) longer directory names (such as the test directory. pass = 123456) don't fit into one line in the menu and don't stretch the menu out (like they do in windows).

Otherwise its looking good! Congrats
-jimmy

Reply

turbopowerdmaxsteel
I guess you are right mate! Here are the recent developments:-

> Added support for Password protecting files/folders.
> AJAX based Image Preloading.

The password protected files/folders cannot be deleted, renamed, moved or copied but can be opened/downloaded. The file preview mechanism, although currently disabled, supports text files and images.

Reply

TavoxPeru
QUOTE(turbopowerdmaxsteel @ Oct 15 2007, 04:11 AM) *
That is a great idea. I will try to implement something like that. To begin with, the simpler ones such as images and plain text files would be supported.
It feels so weird to know that when you've finished building something you presumed to be unique, it turns out that others have done something similar even before. I'll try to learn and utilize something from their product.

Hey come on turbopowerdmaxsteel, your product is excellent too, so, don't give up and take it as a challenge.

Best regards,

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

Pages: 1, 2
Recent Queries:-
  1. little explorer reserch question.com - 69.72 hr back. (1)
  2. extplorer * rename disabled * file manager - 330.75 hr back. (1)
  3. windows explorer impersonator - 414.72 hr back. (1)
Similar Topics

Keywords : windows, explorer, impersonator, online, explorer

  1. Windows 2000
    update to 2009 specs (0)
  2. Why Still Windows But Ubuntu Linux
    Why still Windows but Ubuntu Linux (3)
    For the new user of Ubuntu i would like inform you Ubuntu gives you a very usefull & easy interface
    than any other Linux distribution. And it's very easy to install application than other
    operating system. With Synaptic Package Manager anybody can install more application with a few
    click. And truly there is Thousand of application is available for free. As the PCWorld magazine
    from there November (it may be October) issue. Business users are switching to Ubuntu from Windows
    Vista. As it is not only cost effective but also it is secured & all type necessary Office ....
  3. How To Improve Windows.
    (7)
    Lets face facts Windows is currently the most used operating system in the world. That said, let us
    also admit that Windows is not the greatest OS out there either. (that would be Unix) So ignoring
    completely ones opinions of Windows let's imagine we had the power to chance Windows completely
    and were able to disregard previous Windows implementations (if you so choose ie the start menu) and
    Microsoft marketing techniques. How would you change Windows to make it better? For me the most
    fundamental change would be to make it more like Linux or OS X and have the kern....
  4. What Do You Guys Think Of Windows 7?
    The 'WoW' Starts 'NoW' (10)
    What do you guys think of windows 7? Screenshots Have been posted on wikipedia
    (www.wikipedia.org/wiki/Windows_7) and I Must admit Im Not really Impressed, Looks Like a dumbed
    down version of vista...? what are your Opinions?....
  5. Free Online Adventure And Rpg Games
    Good for Teenagers (4)
    Some recent websites I have heard about for teenagers and young adults are: Habbo Hotel (A vitual
    world where you can create your very own character, create rooms, and chat to other people.)
    Runescape ( Another Virtual world where you can fight other players, chat, collect items and do
    quests that are around your choosen world) IMVU ( A world where almost EVERYONE between 13 and 60
    can talk and make new friends, create an awesome webpage or even shop for clothes for your
    character) These games are good for rainy days or just if nobody's home and you want some o....
  6. How To Enable User Login Security On Windows Vista
    NOT User Account Control (0)
    How to enable User Secure Login on Windows Vista You may have worked in a business,
    educational or other network that uses Windows to log in. With or without being on a domain, most
    business environments "require" you to press the key combination of CTRL + ALT + DELETE prior to the
    log on prompt (the username, password and domain box). This is supposed to enhance login security to
    verify the authenticity of the login box (so that no other malicious software makes a similar box).
    This tutorial will show you how to enable this functionality on Windows XP Home Ed....
  7. Repairing Your Windows Environment
    (0)
    You have already seen people fully desperate because their Windows system cannot boot. Of course,
    they could bring their PC back to the shop and ask for a complete re-install, but they will loose
    their data. There is a way avoiding that. Of course they will still have to go back to the shop and
    have the thing repaired. But they can, before that, save their files. There are Windows LiveCD
    distros, you can boot on a CD which has an embedded Windows. Because you boot off the CD-rom, the
    hard disk is not embedded. And as you boot off a CD, there is no virus problem, at least....
  8. How To Change Your Windows User Environment Variables
    a step-by-step guideline (5)
    1. INTRODUCTION. Most of Microsoft very basic users are satisfied when the Windows installer
    installs each new software, automatically putting each file in the right place and making each
    Windows registry change. However, some new incoming software environment, mainly the ones from the
    open world, let you do some changes manually. For instance, if you install the java development
    software on your pc, you have to manually tell windows where the java binaries are. That means, if
    you type “javac” in a command shell window, Microsoft Windows has to know that javac.ex....
  9. Credit System V3.0 Online
    Free Web Hosting, Domains, Dedicated IP, Digital Certificate, Managed (117)
    CREDIT SYSTEM v3.0 ONLINE Dear Members, Thank you for supporting
    Astahost for all these years and as promised, I am proud to announce the launch of Credit System
    v3.0. Credit System 3.0 offers complete accounting of user posts which also counts features like
    views, popularity and reputation to help better distribution of cents. Unlike Credits, which used
    to represent 1 day of hosting, we now have a new point system called "cent". And yes, each cent
    represents 1 American "cent". The goal is to make good posts and gather 100 cents. Every....
  10. Windows Xp, How To Re-enable Show All Possible Color
    (6)
    Few days before, I have used the power toys to rebuild my system icons. After that, all icons
    showed on the screen only with 256 color. Prior Windows XP, Windows 2000 have an option on the
    display applet that let me show all possible colors. Hmm..., Is there any way to restore the
    ability ? Thanks, P.S. If I switched to another resolution. It is fine. But once back, it lower
    the color to 256.....
  11. How To Make Both Windows Look Like Active At Same Time
    (9)
    Hi, I'am creating some UI that will have some floating windows like the code below. But by
    default, when one window was active, the other will lost focus and became gray in color. How can I
    made both look like active. Much like some graphics apps such as photoshop tool window. Thanks,
    CODE /** *   * **/ using System; using System.Windows.Forms; using System.Drawing; public
    class Program {     public static void Main(string args)     {         form1 AppMain = new form1();
            Application.Run(AppMain);     } } public class form1 : System.Windows.F....
  12. Outspark's Fiesta Online
    Awesome (3)
    I play this game called Fiesta, it's a game that is distributed by Outsparks in America. I
    think it's a really cool game and if I had to tell you about it, I guess I would compare it to
    WOW but Fiesta is Free to play or F2P. I like it so much I made a site about it, it's called
    FiestaGameTips.com If your like what you read about it you should join it. Got to
    Outspark.com and click the link to the Fiesta game and Download it. I'm on all
    servers, I'm JohnNitro just like here. If you need help I'll help you out. ....
  13. Make Money Online With Cashcrate - A Scam?
    (8)
    Nope, it's not a scam. I was surprised too, as most of these sites turn out to be scams.
    CashCrate , however, actually pays, and at an extremely fast rate as well. Basically, at the site,
    you complete listed offers and then the site will credit you with dollars. If you're wondering
    about the speed of the crediting, the site does it as soon as the company listing the offer tells
    them you've completed an offer. You'll also get an email letting you know you've
    finished and that they've confirmed the offer. You can cash out once you've reached $....
  14. Windows 7
    (12)
    when will microsoft release windows7? does it have any cool features or new feature? can anyone tell
    me more about this ? thanks.......
  15. Image Problems With Windows 2000
    (10)
    Hi, since a while i got two problems related with images files in my Windows 2000 machine, both are
    very closely related because them happen with Windows Explorer and with Internet Explorer 6. The
    problems are: Windows Explorer Thumbnails Preview : The problem with this option of the View menu
    is that it doesn't show any thumbnail preview of any image in my hole computer, i verify this
    problem for jpg, jpeg, gif, png or bmp files, but it works fine and generate the thumbnail previews
    for html files. IE Save as... dialog and JPG files extension : Every time that....
  16. Why I May Be Installing Windows Xp Sp3 Again
    (10)
    This is a sad tale of a man and his machine that would not start again. The story continues with a
    sorted affair between two operating systems and a battle to win the love of this man’s heart. My
    problems began last weekend when I started my computer after it had been off from the previous
    night. Everything went normally throughout the POST but once Windows XP started I heard the dreaded
    clicking from the hard drive. After several reboots and a Spinrite diagnostic I gave up and called
    the time of death around three in the afternoon. This is not all bad because I had....
  17. Extremely Slow Hdd Operations On Windows Xp
    (9)
    On the first of this month I benchmarked my system running on Win XP using FreshDiagnose. The Hard
    Disk Benchmark showed 32 MB/s Write Speed & 40 MB/s Read Speed for my first Hard Drive & 35 MB/s by
    51 MB/s for the second. Since yesterday all the operations on the first HDD (360 GB) have become
    extremely slow. A ~700 MB file copy operation on the same drive which used to take less than a
    minute, now requires 7-10 minutes. I tried re-fitting the SATA & power cables for the drives but
    that didn't help. The other drive (80 GB) is working fine. A dying drive is out of th....
  18. Explorer Does Not Run
    experiencing the following with XP Home Ed. (9)
    Has anyone ever experienced or came across a PC who's Exploer and Internet Explorer was not
    working? Well mine is going through that right now. When the PC boots up it loads after the logon
    screen - all i see the the desktop background with no icons or taskbar. I can do the Ctrl + Alt +
    Delete to start tasks. I've tried the following the remedy the situation. Safemode.... Nope
    Boot back normal- Boot to last good known config -- no luck System restore - no restore points to
    fall back to (I saw some at first, but didn't think I'd think this was going to be....
  19. How To Install Ubuntu On Windows
    (5)
    QUOTE So, you are a Windows user and you've heard about Ubuntu everywhere and now you want
    to install it on your computer (just to see if what you've heard about it is true or not) and
    you don't know how to do it? Look no further, here’s your help! This guide will teach you
    how to install the latest version of Ubuntu (7.04 codename Feisty Fawn) on your PC in no more than
    10 minutes (depending on your computer specs). Are you ready? Let's start! First things first,
    you need to download the Ubuntu 7.04 i386 ISO image from here. This will take som....
  20. Windows Or Mac?
    (31)
    Which do you prefer? Windows or Mac?....
  21. 100 Reasons To Use Windows Vista
    No, really?? (13)
    Recently, I have received an "Exploring Windows" email from Microsoft, which led me to an
    interesting link called 100 Reasons You'll be speechless. Thought it was related to Windows
    Vista, and it was. Here are some of my opinions: 1. It makes using your PC a breeze, if Windows is
    responding most of the time. Also, many users have complained about User Account Control, which say
    that it makes using the PC not a breeze. I haven't tried it yet, but from others' point of
    view, it seems to be intrusive and annoying. 2. Your music may be a click away from your re....
  22. Transparent Iframe Scrollbars ( For Internet Explorer )
    (5)
    Requirements Internet Explorer IFrames on your site Perhaps a little basic HTML knowledge
    Adding Iframes What are Iframes? Iframes is like an 'area' on a webpage where an
    external page is displaid. In other words it's where a webpage is show up in another page.
    How do I create an Iframe on my site? Step 1 Create two files named page1.htm and frame.htm .
    You can use Notepad (on Windows) to do this. Step 2 Open up page1.htm , and add the following
    HTML code: CODE Here is an Iframe: Edit 'NUMBER' with wha....
  23. How Can I Delete Old Files In Windows Xp ?
    HELP!!! (22)
    I've just reinstall my system. But I can't delete old profiles in C:\Documents and Settings
    . I have the Admin right, of course. But... the system don't allow me to delete the files.
    I need to free up some space on my hard disk. (That folder's size is up to 12GB)....
  24. How Can I Play World Of Warcraft For Free ?
    online (18)
    does anyone know how can i play wow without paying??? even though its not ff but still its a very
    good rpg not like l2 if anyone know how to avoid paying and play wow plz pm me.......
  25. A Note To All Illegal Windows Xp Owners
    (50)
    Hi, all illegal Windows XP users WILL NOT be able to download any updates or software from Microsoft
    website. Automatic Updates will no longer work, because Microsoft will have to ask for your Software
    identification.....
  26. How To Make Your Windows Look Like A Mac
    Windows Xp only (24)
    Ok Fans of macs I have done my reserch and checked it twice and I now present my tutorial on how to
    make your windows XP desktop look like a Mac operating system. For those who think its really hard
    your wrong and without any more jiber jaber lets get started. Step 1: The Downloads Ok for this
    to work your going to need some items to make it work. The first one is the skin to make your
    windows look like a mac. Its called Panther you can download it here . Second your gonna need a doc
    for your programs. The best free one out there is Yz's dock and you can download....
  27. Online Game Development In Game Maker
    (7)
    Does anyone here use the program called "Game Maker"? If you do I'd like to have a discussion
    about the Online features of Game Maker. First of all I have a few questions for you regarding your
    preference on connecting. 1. Do you like a IP/TCP, Serial Connection, Modem Connection, or DLX? Why
    do you think it's the best? 2. Do you use Direct Connet (Mplay), or a Socket System (like
    GMSock)? What is you logic for this? 3. How do you dead-reckon for games that involve a moving
    object? 4. Do you prefer sending garaunteed messages or not garuanteed but faster message....
  28. What Is The Use Of Service Packs For Windows?
    (18)
    Hi there. Who of you has service packs and what are they good for? Does it worth the huuuuuge
    download (keep in mind I have a 56k connection)? I said I wasn't going to update it but I got a
    video editing program and it asks me to have Service Pack 1 installed and that made me reconsider my
    choice... Thanks.....
  29. Accept Payment Online
    Which payment gateway do you prefer? (7)
    Please tell me why do you prefer the payment gateway and how did it served you?....
  30. How To Make A Text Based Online Game Script ?
    (24)
    Does anyone know if there is a easy was to make a text base online game, Like a free templet, or if
    anyone know how to make one and can help me.....

    1. Looking for windows, explorer, impersonator, online, explorer






*SIMILAR VIDEOS*
Searching Video's for windows, explorer, impersonator, online, explorer
advertisement




Windows Explorer Impersonator - The Online Explorer