473,386 Members | 1,779 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

My gZen tools site


Hello every one,
( I hope all of you forgive me for this shameless plug of my little site.)

Some of you may know that I have a little site for php tools (I know its
small, I am working on it), there has been a lot of traffic lateley, and it
looks like people are using the tools. I do not know how much traffice
comes from here, but I will say it does show significate increase since my
slight involvement around here.

Now my question to all of you. I have been toying with the idea of a new
tool, one that will make a single php file from a collection of media
(images, flash, etc). This way the collection can be distributed as one
file, and the script will deliver (w/ mime-type) acording to the url, ie:
'mycollection.php?intro.swf' I will make the collection in compressed
binary format, thus not taking up anymore space. (the source will look like
looking at the source to a jpeg)

Ok, back to the question, should I make this, or is this another solution
looking for a problem? So, I ask you [all those that visit my site and fancy
my little tools]

I would make it to where you upload a .zip of all your media, and it would
send back a new .zip file with a single encoded php file.

Well, I look forward to any coments you may have.

Thank you,
Michael Bradley
http://gzen.myhq.info -- free online php tools


Jul 17 '05 #1
8 2349
On Sat, 03 Jan 2004 10:14:58 GMT, "CountScubula"
<me@scantek.hotmail.com> brought forth from the murky depths:
-snip-
Now my question to all of you. I have been toying with the idea of a new
tool, one that will make a single php file from a collection of media
(images, flash, etc). This way the collection can be distributed as one
file, and the script will deliver (w/ mime-type) acording to the url, ie:
'mycollection.php?intro.swf' I will make the collection in compressed
binary format, thus not taking up anymore space. (the source will look like
looking at the source to a jpeg)

Ok, back to the question, should I make this, or is this another solution
looking for a problem? So, I ask you [all those that visit my site and fancy
my little tools]
Don't Swish2, Flash, etc. already do this?

I would make it to where you upload a .zip of all your media, and it would
send back a new .zip file with a single encoded php file.
Now that level of automation could be useful, but how could it
be done without oversight, telling it where and how to put the
included files for display? Templates?

Well, I look forward to any coments you may have.


Is this straight PHP or a combo of other tools, too?
'Sprain, preeze.
================================================== ======
Was that an African + http://www.diversify.com
or European Swallow? + Gourmet Web Applications
================================================== ======
Jul 17 '05 #2
"Larry Jaques" <novalidaddress@di\/ersify.com> wrote in message
news:ji********************************@4ax.com...
Don't Swish2, Flash, etc. already do this?

Those two allow one file to show all content at one time, ie, a photo album.
I would make it to where you upload a .zip of all your media, and it wouldsend back a new .zip file with a single encoded php file.
Now that level of automation could be useful, but how could it
be done without oversight, telling it where and how to put the
included files for display? Templates?


The uploaded .zip file should only contain media content, such as,(to name a
few):
..jpg, .bmp, .gif, .png, .doc, .pdf, .mpg, .avi, .qt, .mp3

then the collection of images (or others/mixed if you wish) would be packed
into a single
..php file. lets say you had some images in your project that you didnt want
anyone to modify,
you could do something like this:

<IMG SRC="mycollection.php?logo.jpg">
<IMG SRC="mycollection.php?button1.gif">
Well, I look forward to any coments you may have.


Is this straight PHP or a combo of other tools, too?
'Sprain, preeze.


The tool would return you one (1) straight php file. This php file would
have valid php code (encoded) at the top, and a compressed binary payload of
data at the end of it. So looking at the script would be like looking at a
..jpg with a text viewer
--
Mike Bradley
http://gzen.myhq.info -- free online php tools
Jul 17 '05 #3
On Sat, 03 Jan 2004 21:05:39 GMT, "CountScubula"
<me@scantek.hotmail.com> brought forth from the murky depths:
"Larry Jaques" <novalidaddress@di\/ersify.com> wrote in message
Don't Swish2, Flash, etc. already do this?
Those two allow one file to show all content at one time, ie, a photo album.


And your tool would do what differently?

The uploaded .zip file should only contain media content, such as,(to name a
few):
.jpg, .bmp, .gif, .png, .doc, .pdf, .mpg, .avi, .qt, .mp3
Ah, gotcha. XLS, too?

then the collection of images (or others/mixed if you wish) would be packed
into a single
.php file. lets say you had some images in your project that you didnt want
anyone to modify,
you could do something like this:

<IMG SRC="mycollection.php?logo.jpg">
<IMG SRC="mycollection.php?button1.gif">
Expand?

The tool would return you one (1) straight php file. This php file would
have valid php code (encoded) at the top, and a compressed binary payload of
data at the end of it. So looking at the script would be like looking at a
.jpg with a text viewer


Um, I'll clarify. Is the TOOL using straight PHP or are you writing
it in C or some other language, etc?

================================================== ======
TANSTAAFL: There ain't no such thing as a free lunch.
http://diversify.com Gourmet Web Applications
==========================
Jul 17 '05 #4
"Larry Jaques" <novalidaddress@di\/ersify.com> wrote in message
news:j6********************************@4ax.com...
Those two allow one file to show all content at one time, ie, a photo album.
And your tool would do what differently?
just serve one content item - see my demo of embed:
http://gzen.myhq.info/embed_example.php
look at the source for the dialog is around 10 images
The uploaded .zip file should only contain media content, such as,(to name afew):
.jpg, .bmp, .gif, .png, .doc, .pdf, .mpg, .avi, .qt, .mp3


Ah, gotcha. XLS, too?


Yes :)
<IMG SRC="mycollection.php?button1.gif">


Expand?


You lost me here.......
Um, I'll clarify. Is the TOOL using straight PHP or are you writing
it in C or some other language, etc?


I am trying to keep it all in php, problem is when I port it to windows (I
plan to have a downloadable windows version of all the tools)
--
Mike Bradley
http://gzen.myhq.info -- free online php tools
Jul 17 '05 #5
Woohoo!

Media Collection 1.0 is available to anyone who cares.

This is actualy a cool/usefull tool. :)

--
Mike Bradley
http://gzen.myhq.info -- free online php tools
Jul 17 '05 #6
On Sun, 04 Jan 2004 06:40:20 GMT, "CountScubula"
<me@scantek.hotmail.com> brought forth from the murky depths:
Those two allow one file to show all content at one time, ie, a photo album.
And your tool would do what differently?
just serve one content item - see my demo of embed:
http://gzen.myhq.info/embed_example.php
look at the source for the dialog is around 10 images

The uploaded .zip file should only contain media content, such as,(to name afew):
.jpg, .bmp, .gif, .png, .doc, .pdf, .mpg, .avi, .qt, .mp3


Ah, gotcha. XLS, too?


Yes :)
><IMG SRC="mycollection.php?button1.gif">


Expand?


You lost me here.......


"That doesn't look very encoded to me. Can you expand on that?"
I think I'm missing your point. The demo embed allowed me to grab
the pictures. I thought the program was supposed to encode them
so they couldn't be stolen. Are you just trying to keep your clients
from changing their own sites, or what? Ya lost me.

Um, I'll clarify. Is the TOOL using straight PHP or are you writing
it in C or some other language, etc?


I am trying to keep it all in php, problem is when I port it to windows (I
plan to have a downloadable windows version of all the tools)


OK.
================================================== ======
TANSTAAFL: There ain't no such thing as a free lunch.
http://diversify.com Gourmet Web Applications
==========================
Jul 17 '05 #7
"That doesn't look very encoded to me. Can you expand on that?"
I think I'm missing your point. The demo embed allowed me to grab
the pictures. I thought the program was supposed to encode them
so they couldn't be stolen. Are you just trying to keep your clients
from changing their own sites, or what? Ya lost me.


As with anything that gets sent to the browser, it can be downloaded, pics
saved, etc, regardless of encoding/encryption

What the encoder does, it protect the source for distribution. My tools are
not realy geared toward protecting the output. But rather protecting your
work and allowing you to distribute said work.

A single individual working on his/her own site would have no use for these
tools.

My main reason for creating this one stemed from the embed example, a few
clients wanted an .htaccess manager script (I also own a web hosting company
and a data center).

I didnt't want to distribute several scripts, so I embeded all the code and
images into one single .php script. and this way, I just give them one file,
and there are no worries about files/images being there or in the right
place. (this was not encoded, just all embeded)

sometimes is easier to distribute one single file for a utility than several
files, and have people mess it all up.

--
Mike Bradley
http://www.gzentools.com -- free online php tools
Jul 17 '05 #8
On Sun, 04 Jan 2004 23:48:15 GMT, "CountScubula"
<me@scantek.hotmail.com> brought forth from the murky depths:
What the encoder does, it protect the source for distribution. My tools are
not realy geared toward protecting the output. But rather protecting your
work and allowing you to distribute said work.
OK, I thought I'd seen something about output protection in
the earlier parts of the thread.

A single individual working on his/her own site would have no use for these
tools.
Right, I knew you were using this with clients but didn't have
a good enough overview of it until your post here.

My main reason for creating this one stemed from the embed example, a few
clients wanted an .htaccess manager script (I also own a web hosting company
and a data center). I didnt't want to distribute several scripts, so I embeded all the code and
images into one single .php script. and this way, I just give them one file,
and there are no worries about files/images being there or in the right
place. (this was not encoded, just all embeded)
Yes, the easier the better.

sometimes is easier to distribute one single file for a utility than several
files, and have people mess it all up.


Too true!

----------------------------------------------------
Thesaurus: Ancient reptile with excellent vocabulary
http://diversify.com Dynamic Website Applications
================================================== ==
Jul 17 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

43
by: grz02 | last post by:
Hi, Im an experienced database+software designer and developer, but, unfortunately, anything to do with web-programming and web-systems designs is still a pretty new area to me... (been working...
1
by: Jason Burr | last post by:
Has anybody used the UPS tools for calculating shipping and if so how did they go about it? I have seen the articles on 4guysfromrolla but that appears to be using xml component to get the data...
2
by: Lee Mundie | last post by:
Hi, I'm nearing the end of my site development (currently ASP and Access moving to SQL) and am looking for site testing tools... In particular looking for load testing and concurrent connection...
10
by: BillP | last post by:
Hello, I have been in print publishing since the late 1980's, and I need to build several web sites. I am familiar with HTML at a very basic level, and understand its similarities with Quark...
3
by: Bill Woodruff | last post by:
Hi, Today I spec'd out a web site for a potential client : 1. client has frequently changing inventory of items to present. large number of pictures to show in galleries organized by type of...
0
by: Bill Woodruff | last post by:
I would very much appreciate hearing from someone who has successfully implemented an ASP.NET website using WebMatrix and DotNetNuke or using one of the 3rd. party tools for web-site generation...
10
by: WT | last post by:
Hello, I have been publishing my web site many times to the remote where resides my final web site. Everything was ok, but to-day, without any configuration change, vs doesn't copy final files...
4
by: Gary Hasler | last post by:
Our site, of which about half the content is PHP pages and is on a Linux Apache server, is currently administered with Microsoft FrontPage 2003. Okay, now that you've finished laughing, let me...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.