473,941 Members | 17,700 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How do you profit from your applications?

I've been working on an E-Commerce application like OSCommerce, except
mine is object-oriented, with a much better architecture, and a lot of
AJAX. I originally intended to release it as Open Source, and I still
may, but, recently I've been wondering how I could profit off the
script.

Selling the script doesn't seem to be a viable option, since if I sell
the application in full it can easily be duped. My best idea has been
to release the script, but make an off-site file old all of the primary
functions of the application. In those functions would be a script for
displaying the results of a product search, where I could place ads
every 10 or so entries down.

Does anyone have any thoughts on how to profit from your applications?

Oct 22 '06 #1
13 1228
eml
A bit off topic, but, AJAX isn't always great for an E-Commerce
application. Critical business applications shouldn't limit users to
just a few versions of a browser. Just a heads up. Good luck with
profiting!

And actually, I have a script that I'd like to take profit off myself,
so I'm just going to keep my eyes open here. ;-)

stryfedll wrote:
I've been working on an E-Commerce application like OSCommerce, except
mine is object-oriented, with a much better architecture, and a lot of
AJAX. I originally intended to release it as Open Source, and I still
may, but, recently I've been wondering how I could profit off the
script.

Selling the script doesn't seem to be a viable option, since if I sell
the application in full it can easily be duped. My best idea has been
to release the script, but make an off-site file old all of the primary
functions of the application. In those functions would be a script for
displaying the results of a product search, where I could place ads
every 10 or so entries down.

Does anyone have any thoughts on how to profit from your applications?
Oct 22 '06 #2

stryfedll wrote:
I've been working on an E-Commerce application like OSCommerce, except
mine is object-oriented, with a much better architecture, and a lot of
AJAX. I originally intended to release it as Open Source, and I still
may, but, recently I've been wondering how I could profit off the
script.

Selling the script doesn't seem to be a viable option, since if I sell
the application in full it can easily be duped. My best idea has been
to release the script, but make an off-site file old all of the primary
functions of the application. In those functions would be a script for
displaying the results of a product search, where I could place ads
every 10 or so entries down.

Does anyone have any thoughts on how to profit from your applications?
Personally, I would let the code be open source. You are the world's
foremost expert on what you've written. You could sell people your
services, and then they'd pay for your expertise in installing, dealing
with, maintaining, or branching your software to meet there needs. I'm
sure if its a valuable piece of code people will be interested in
getting you're help any which way, and since its open source if it
becomes really in demand, they can hire some other schlub to work with
or extend your project as needed (though he'd probably not be nearly as
efficient or add as much value as you could, at least at first).

Oct 22 '06 #3

stryfedll wrote:
I've been working on an E-Commerce application like OSCommerce, except
mine is object-oriented, with a much better architecture, and a lot of
AJAX. I originally intended to release it as Open Source, and I still
may, but, recently I've been wondering how I could profit off the
script.

Selling the script doesn't seem to be a viable option, since if I sell
the application in full it can easily be duped. My best idea has been
to release the script, but make an off-site file old all of the primary
functions of the application. In those functions would be a script for
displaying the results of a product search, where I could place ads
every 10 or so entries down.

Does anyone have any thoughts on how to profit from your applications?
Theres a PHP obfuscating tool called Zend Guard. Personally, I think
open source would be the way to go, however, you could use this to sell
your application and retrain your intellectual property.

http://www.zend.com/products/zend_guard

Oct 23 '06 #4
stryfedll wrote:
I've been working on an E-Commerce application like OSCommerce, except
mine is object-oriented, with a much better architecture, and a lot of
AJAX. I originally intended to release it as Open Source, and I still
may, but, recently I've been wondering how I could profit off the
script.

Selling the script doesn't seem to be a viable option, since if I sell
the application in full it can easily be duped. My best idea has been
to release the script, but make an off-site file old all of the primary
functions of the application. In those functions would be a script for
displaying the results of a product search, where I could place ads
every 10 or so entries down.

Does anyone have any thoughts on how to profit from your applications?
Hi,

Unless you have your own sellingforce, or your application is excactly what
everybody wants, I'd say your best chances are releasing it under GPL or
something simmilar.
The benefits are that you potentially reach a huge audience because your
application is open and free to use.
As Pythagras wrote: You are the worlds leading expert on your own software,
so if anybody wants something extra or special, make sure they will find
you. Then you can hire yourself to them for a nice fee.

If you would like to try to attract additional coders, consider releasing it
at sourceforge.

Good luck!

Regards,
Erwin Moller
Oct 23 '06 #5
Thanks for all of your replies.

I want to release my application for free, so that it can become
popular. Then, once its popular, I would like to possible set it up so
that you need to pay for certain features. I can see releasing both an
Open Source version, and Protected to reach the best of both worlds.
Personally, I'm not even desiring other people to extend the program,
if I open a public forum, then I will extend it as needed. The only way
in which I would want the application extended is themes, images, etc.
Its crucial that the application is easy to manipulate on a looks
bases, so I would never want to completely guard the source.

I believe I will get some of the most important functions and bundle
them into a .php file, use Zend Guard on it and put it on my own
server. Then, the application on their end can call the file using
require(), possibly the file on the free version can show say a Google
Ad every 10 or 20 products. Since the file contains very important
and/or complicated functions it could neither be discarded nor imitated
with ease. :)

Erwin Moller wrote:
stryfedll wrote:
I've been working on an E-Commerce application like OSCommerce, except
mine is object-oriented, with a much better architecture, and a lot of
AJAX. I originally intended to release it as Open Source, and I still
may, but, recently I've been wondering how I could profit off the
script.

Selling the script doesn't seem to be a viable option, since if I sell
the application in full it can easily be duped. My best idea has been
to release the script, but make an off-site file old all of the primary
functions of the application. In those functions would be a script for
displaying the results of a product search, where I could place ads
every 10 or so entries down.

Does anyone have any thoughts on how to profit from your applications?

Hi,

Unless you have your own sellingforce, or your application is excactly what
everybody wants, I'd say your best chances are releasing it under GPL or
something simmilar.
The benefits are that you potentially reach a huge audience because your
application is open and free to use.
As Pythagras wrote: You are the worlds leading expert on your own software,
so if anybody wants something extra or special, make sure they will find
you. Then you can hire yourself to them for a nice fee.

If you would like to try to attract additional coders, consider releasing it
at sourceforge.

Good luck!

Regards,
Erwin Moller
Oct 23 '06 #6
stryfedll wrote:
I want to release my application for free, so that it can become
popular. Then, once its popular, I would like to possible set it up so
that you need to pay for certain features.
I don't like this idea. I have always resented products that are
offered for free and then suddenly switch to pay-ware. The author can
tell any sob story he wants about how development time takes too long
and he can't do it for free anymore, but the fact remains that it will
cause a big exodus from the userbase of the product onto something
else.

If you have it in your head that one day you will charge for features,
then you owe it to your users to be up front with them and charge for
those features from day 1. Suddenly springing costs on the users will
bring you nothing but complaints.

Oct 23 '06 #7
In article <11************ ********@i42g20 00cwa.googlegro ups.com>,
Moot <mo************ *******@yahoo.c omwrote:
>If you have it in your head that one day you will charge for features,
then you owe it to your users to be up front with them and charge for
those features from day 1. Suddenly springing costs on the users will
bring you nothing but complaints.
Agreed. However, it is still sensible to charge for expanded features.
That is, offer a basic free version (not crippleware) but charge a fee
for extensions. And of course any customizations would involve a fee.

-A
Oct 23 '06 #8
I work in this particular field and the one thing that is always
missing from E-commerce applications is a good back office function.

Stock control, despatch management and returns processing are all much
more time consuming than the creation of the shop and the processing of
the received orders. If you want to steal a march on OScommerce,
E-shop, Get Trolleyed etc. then concentrate on the back end.

If you want to get paid, I would suggest some sort of token system
where people buy say 1000 orders from you and get an encripted password
which they have to enter into their system. You can then keep count of
the number of orders processed and when they have reached their 1000
orders they need to order another encrypted key.

If people are paying for your software and are running their business
on it then you will need to provide some pretty comprehensive support
facilities which don't come cheap.

Obiron
axlq wrote:
In article <11************ ********@i42g20 00cwa.googlegro ups.com>,
Moot <mo************ *******@yahoo.c omwrote:
If you have it in your head that one day you will charge for features,
then you owe it to your users to be up front with them and charge for
those features from day 1. Suddenly springing costs on the users will
bring you nothing but complaints.

Agreed. However, it is still sensible to charge for expanded features.
That is, offer a basic free version (not crippleware) but charge a fee
for extensions. And of course any customizations would involve a fee.

-A
Oct 24 '06 #9
I work in this particular field and the one thing that is always
missing from E-commerce applications is a good back office function.

Stock control, despatch management and returns processing are all much
more time consuming than the creation of the shop and the processing of
the received orders. If you want to steal a march on OScommerce,
E-shop, Get Trolleyed etc. then concentrate on the back end.

If you want to get paid, I would suggest some sort of token system
where people buy say 1000 orders from you and get an encripted password
which they have to enter into their system. You can then keep count of
the number of orders processed and when they have reached their 1000
orders they need to order another encrypted key.

If people are paying for your software and are running their business
on it then you will need to provide some pretty comprehensive support
facilities which don't come cheap.

Obiron
axlq wrote:
In article <11************ ********@i42g20 00cwa.googlegro ups.com>,
Moot <mo************ *******@yahoo.c omwrote:
If you have it in your head that one day you will charge for features,
then you owe it to your users to be up front with them and charge for
those features from day 1. Suddenly springing costs on the users will
bring you nothing but complaints.

Agreed. However, it is still sensible to charge for expanded features.
That is, offer a basic free version (not crippleware) but charge a fee
for extensions. And of course any customizations would involve a fee.

-A
Oct 24 '06 #10

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

Similar topics

1
18541
by: Don Leverton | last post by:
Hi Folks, I *can* calculate the Gross Profit Percentage where both the Cost and SellPrice are known, using the formula: (SellPrice - Cost) / SellPrice = GPP eg ($24.92 - $14.95) / $24.92 = 40% But I wanted to do the reverse of that....to calculate the SellPrice, where only Cost and the desired GPP are supplied. I was struggling with my high-school math, and having a heck of a time with
16
1962
by: D. Stimits | last post by:
A non-profit organization is interested in a new data application that would use a SQL storage system. I'm interested to know how non-profit companies that are not selling products are considered for licensing. Can they use PostgreSQL just like anyone else or do non-profits qualify as commercial use and need to consider other licensing? D. Stimits, stimits AT comcast DOT net ---------------------------(end of...
0
1141
by: Lillian | last post by:
Dear all: We are researchers from Shih Hsin University and we are currently launching the 2006 New Energy and Environmental Media Issues Survey, this is a non-profit academic research. In this survey, we would like to know your opinions about the topics of adoption and safety of new energy related technology, and your opinion about Kyoto Protocol related media issues. Your answers will produce valuable information for our researchers....
2
3681
by: chetchet007 | last post by:
I have a stock table with the cost price and the selling price, then i have an invoice that is produced. i need to produce a profit/loss for either daily, weekly or monthly i want to do this by drop down menu so as soon as e.g. weekly is selected it gives the profit/loss for that week. If there is a loss i wanted the loss to be displayed in red. I'm totally newto using access i have to use it for my coursework and i need help if you need any...
1
2142
by: Dave Anson | last post by:
What is the recommended practice for referencing assemblies in a project from other solutions? I am using Visual Studio 2005 Team System. I have several assemblies in another solution which will be referenced in my project. How should i reference them. e.g. 1) Should I get both solutions from source safe then point to the assembly
4
1996
by: Barbiturico76 | last post by:
Hi guys, anybody knows if it is possible to generate a <div id="myMap" style="width: 400; height:300; left: 0px; top: 0px;" /> inside your intranet site, to represent a programmatically generated map with the "http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1" script reference?
0
10135
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9968
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11531
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11119
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11297
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10660
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9862
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
7390
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6301
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.