Bảo Tuấn
Mar 26 2007, 04:01 AM
| | I'm trying to set up some tools for a number of developers to use in the creation of a text-based MMORPG. I'd like to be able to show directory structure and allow them to easily see which files are where - then to be able to edit the pages from their browser. It would also be a neat feature that they could upload some files from their computer.
Last time I needed this I built it myself, but it was restricted to 2 directories only and I ended up storing the file structure in text files.
Anyways I'm debating rebuilding the entire thing but I can't help wondering if someone somewhere has already built something to this extent and has code available for free somewhere. However, I can't find anything on Google. Maybe someone knows of such a thing? |
Reply
beatgammit
Mar 27 2007, 04:23 PM
I don't understand what exactly you are trying to do, but it seems that you are just maintaining folders of code that the user could edit. If you want to create more than 2 directories, this is pretty simple with recursion. Just recurse through the directories until you find the file you want (or until you display all of the folders/files). If you already have the code for the editor, just add in recursion to get the data from all of the directories. There is plenty of information on the internet if you are confused about recursion.
Reply
TavoxPeru
Mar 27 2007, 09:12 PM
QUOTE(Bảo Tuấn @ Mar 25 2007, 11:01 PM)  I'm trying to set up some tools for a number of developers to use in the creation of a text-based MMORPG. I'd like to be able to show directory structure and allow them to easily see which files are where - then to be able to edit the pages from their browser. It would also be a neat feature that they could upload some files from their computer.
Last time I needed this I built it myself, but it was restricted to 2 directories only and I ended up storing the file structure in text files.
Anyways I'm debating rebuilding the entire thing but I can't help wondering if someone somewhere has already built something to this extent and has code available for free somewhere. However, I can't find anything on Google. Maybe someone knows of such a thing? There exists a lot of Browser based editors, take a look to the following ones: - FCKEditor:This HTML text editor brings to the web many of the powerful functionalities of desktop editors like MS Word. It's lightweight and doesn't require any kind of installation on the client computer.
- XStandard:XStandard is the leading standards-compliant plug-in WYSIWYG editor for desktop applications and browser-based content management systems (IE/Firefox/Safari/Opera).
- RTE:The Cross-Browser Rich Text Editor (RTE).
Best regards,
Reply
livingston
Mar 28 2007, 07:05 PM
TinyMCE is a great Javascript based editor that can be easily integrated into any website or CMS. you can get Tiny MCE at http://tinymce.moxiecode.com/
Reply
Recent Queries:--
is there a program i can use to build a web based browser mmo? - 11.49 hr back. (1)
-
browser based php code editor - 21.46 hr back. (1)
-
how to create a browser based editor - 44.67 hr back. (1)
-
extplorer fckeditor - 55.20 hr back. (1)
-
how can we know php code when we browse php pages - 84.55 hr back. (1)
-
php browser text editor - 100.84 hr back. (1)
-
microsoft word editor php - 105.92 hr back. (1)
-
php based web rtf editor - 166.10 hr back. (1)
-
php based text file editor - 171.51 hr back. (1)
-
php browser edit - 172.24 hr back. (1)
-
free php file manager with rich editor - 172.75 hr back. (1)
-
tinymce browser image php - 184.33 hr back. (1)
-
php news editor rte free - 198.91 hr back. (1)
-
browse for text file php - 201.49 hr back. (1)
Similar Topics
Keywords : php, browser, based, editor
- Automated Product Suggestion Script
Compare user lists and suggest related items based on pattern matching (2)
Extplorer
A PHP -and JavaScript- based File Manager (7) Browsing the ExtJS examples website i found this excellent web-based file manager called
eXtplorer . eXtplorer allows you to browse your webserver folders with an intuitive Layout which
makes working with files very easy, and thanks to the great ExtJS Javascript Library you can drag
& drop folders and files, filter directories and sort the file list using various criteria. You can
use eXtplorer to for example: browse directories & files on the server. edit, copy, move, delete
files. search, upload and download files. create and extract archives. create new fil....
OpenWYSIWYG Instead Of RichTextEditor
wysiwyg editor (3) hi all, For my newsletter scipt i am using richtext editor as the html edtor, I want to use
openwysiwyg instead 'message_add_html.tpl' file is following. I dont know how to chage
the script any kind of help would be appreciated sherif CODE Add new
message: Subject:
Message Type:
Disable ....
How Can I Make A PHP-based Web Gallery
(4) how can i make a gallery in php like this one; but it has to show the images in the maps under it
too; CODE # Do we have a path? if not, it's the current directory $path = $_GET ;
if( !isset( $path ) || $path == "" ) { $path = "."; } # Initialise list arrays,
directories and files separately and array counters for them $d_arr = array(); $d = 0; $f_arr
= array(); $f = 0; # Open possibly available directory if( is_dir( $path ) ) { if(
$handle = opendir( $path ) ) { while( false !== ( $file = readdir( $handle ) )....
Need Help Is Adding A PHP Based News Module To My Site
(2) Hey guys i need a simple help i'm builing a homesite and i have a little spot for news. Well i
just place there the Topics and add a link to another page "news.php". Well its obvious that i dont
want to build a file for each news that i have so i know that exists a way to work with SQL & PHP. I
will show want i'm doing CODE require ('mysql.php');
$query="SELECT * FROM News ORDER BY `data` ASC LIMIT 0,5 "; $result=mysql_query($query);
$num=mysql_num_rows($result); mysql_close(); echo " Outras Other News "; $i=....
How Do I Make PHP Based Image Gallery Like This?
Help Needed (20) is it possible to make a page in php, with a url like this:
httq://www.mysite.com/viewer.php?http://www.mysite.com/galleries/01 (This is a sample link, read
below) so that in what i change the last part the gallery will change with it? so that i just have
to make one php-page and this page just shows all the imaes in the map thats in the url after the
questionmark?? thanks,....
Online HTML/PHP Editor: Edit File In Browser!
(8) Im wondering how you can load a file into a text area and edit it. Lets say i have a php file called
test.php and id like this file to be loaded into a textarea and the user should be able to edit this
file and store it. Is this posible? Im also wondering how you make it so the html dosnt get
encoded by the browser, lets say i need to explain on my website how you use html. CODE Just
testing something, maybe i can get this from the source. ....
Help: Trying To Create Web-based Compiler W/ Php
(9) Hi guys, Need some serious scripting help. I'm trying to come up with a web-based compiler.
here's how it's going to work. 1. The user is given a form with a large textarea to enter
code (lets assume C++). 2. Upon submit the script takes the entire text from the textarea and writes
it to a file. 3. Then it calls GCC the linux C compiler and passes this file as an arguement to it,
as well as another arguement which is the name of the output file. 4. It then chmods the output file
to make it executable. 5. Then it runs the output binary and pipes the console....
PHP Based Site Access Authentication - Help
How to block parts of your web-site ?? (4) How can i program my web page using php that when the value of the login box is equal to some string
then go to my success.html otherwise on my fail.html????help me guys!
------------------------------------ It would help the readers far better to understand what your
problem is - if you state the nature of it in short in your topic title, instead of just "Php help".
It'll also get you a lot more responses. Am changing your topic title to give you an example.
All the best /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> m^e....
Best php editor?
tell me? (26) Can somebody tell me which is the best PHP Editor? I have tried the DzSoft Editor and the Svoi.net
PHP editor. Among them the first one is better. Is there any better editor available in terms of
built in features?....
Looking for php, browser, based, editor
|
*SIMILAR VIDEOS*
Searching Video's for php, browser, based, editor
|
advertisement
|
|