Archive

Archive for February, 2010

Online Writers Needed

February 19th, 2010 Comments off

Immediate work needed for excellent online article writers to write articles for 4 mos. Several people may work on this project together, if necessary to complete work.

-LOTS of articles needed: $1 per 400 words. Price is fixed: Please do not try to negotiate anything else. If you don’t want to follow it, then don’t bid.

-You MUST be able to create HIGH quality writing: must have a proper, EXCELLENT command of U.S. English along with grammar and style (proper punctuation, proper spelling, etc).
-SEO knowledge is highly recommended.

-I want articles that do not require a single edit from me.
*You must include a min. 200 word writing sample

-Must pass copyscape (no plagiarism)

-Topics vary and will need to be researched through a search engine

-I will hold each article’s exclusive rights

Text To Mysql Database

February 19th, 2010 Comments off

1) I need a script that will convert a text formatted databe with ten fields into a document (xml?) that can be imported into a mysql database.

2) I need instructions how to call this mysql data and format it into a joomla site’s (php based) web page when a web user clicks on a search result on my site.

The text is formatted and called pgn (*.pgn file). It is a database format used to store chess games. There are perl scripts on the net that parse pgn. I need instructions on how set up the script to use it with my pgn data.

Fix Phpfox Database

February 19th, 2010 Comments off

I have two phpfox databases. One for UK users and one for USA. I have overwritten the index.php page of the UK site and I need the coding copying over from the USA site without losing any of the UK members. URGENT!!!

Gift Card Design – Martial Art

February 19th, 2010 Comments off

I need a gift card designed. Front & Back.
Immediately. PSD needed with layers.
1113x 638 pixels (Front and Back)

Copy for front of Card:

Martial Arts – Kickboxing – MMA – Karate
for Adults, Teens and Children

Free Registration $99 Value*
Free Trial Lesson
Free Uniform*

Share the experience
Bring a Friend.

Simply Call Now (phone symbol icon) (XXX) XXX-XXXX
Expires:______________________________

at botttom: Simply Enroll on 1st lesson and we will waive registration fee & give you a free uniform. New Students Only. Offer Subject to Availability.

Update Logo – Redesign 2

February 19th, 2010 Comments off

We are reposting this listing as to clarify what we are looking for.

We are NOT looking for a new logo. We are looking to update our current one. Just as these companies did with their logo’s:

http://designreviver.com/wp-content/uploads/2009/04/att.png

http://designreviver.com/wp-content/uploads/2009/04/delta.png

http://designreviver.com/wp-content/uploads/2009/04/ups.png

http://designreviver.com/wp-content/uploads/2009/04/citroen.png

We feel the logo we have needs to be updated. You can what ever you would like except the overall color scheme (you can change the font, move the name, emblem, tagline, etc), but ultimately we are looking to have the emblem updated. We feel it is too linear, and needs some dimension/texture to it. Give it some movement (sketch it, twist it, bend it, stretch it, lines through it, etc). In the end, the emblem should be somewhat recognizable (identifiable) from the old logo to the new logo.

We don’t want something too flashy. It needs to be simple, professional, modern looking and in good taste, and have a ‘technology’ feel to it.

Other words that could be communicated through the logo: Stability, knowledgable, technical, Trustworthy, supportive, cost effective.

No cliparts please

Transparent background

We will need the final release of the logo in layered .psd, .ai, .pdf, .jpg, .png, .bmp, and .gif, as well as one vectorized format (.ai and/or .eps).

We will own 100% rights over the logo.

Any font files used, but be included in the files.

Contact us for a link to the current logo.

Please send sample of your work!

Thank you!

Magento

February 19th, 2010 Comments off

Hello,

here is the summary of my project: we have created a complex PHP application which determines the Total Sell Price of a product called “Labels”. The client is using Magento as his platform for web page mgmt and also for product mgt and order processing and fullfillment.

However, our new page is really a product with dynamic pricing (ie. the price will always change based on the input the user selects from the various dropdown boxes and also the quantity desired). Our application uses several computations to determine the final Total Sell Price, that is why the client could not simply create a Product inside Magento and then use Custom attributes. In fact, we translated a lenghty Excel spreadsheet into PHP and MySql to achieve the correct calculations on the web page.

We need to interface our page with the Magento CMS either by first creating a Product inside Magento, which we can then pass our Total Sell Price to on the fly (or realtime), when the user clicks Add to Cart; or we need to be able to dynamically create a product inside Magento when the user clicks on Add to Cart. Either way is fine. But we cannot simply create our page inside the magento CMS. It has way too much permutations and logic to duplicate inside the CMS.

Are you able to do this?

Sincerely, Tom

Php Editing

February 19th, 2010 Comments off

Report Edits

1. Compare 2 reports (Activity Summary and Billing Summary) and fix so
that both reports return the same totals. They are run on the same data, and are currently showing about $1000-1500 difference in totals.

2. When the report page loads, add a multiple select box function on the right side of each row of data, so that for each row, the user can decide not to include some lines on the report by checking a box on the right side of that row. Checking this box should not delete the data from the database, but will instead only delete the rows from the output of the current report.

3. After selecting rows NOT to show on the report, refresh the report
page. Add a button which says “bill these services?” or print. If “bill

these services” is checked, do the following:
a. Update that record in tblacts.billed with a “1″ for each row.

For example:
UPDATE `famsol01_avail`.`tblacts` SET `billed` = ’1′ WHERE `tblacts`.`actid` =2147190620;

Note that each “row” in an Activity Summary or Billing
Summary report contains one “activity” (tblacts record, which are uniquely identified by an integer (tblacts.actid).

b. After the update, refresh the screen, and include a button allowing the user to download a .csv version of the report data. Allow the user to select the download location. Name the file with this kind of name:
date_time_activitysummary.csv or
date_time_billingsummary.csv

4. Edit the two screens for “Activity Summary” and “Billing Summary” to allow the user (in addition to the other choices available) to choose:
- Show all records, billed* and unbilled**
- Show only billed* records
- Show only unbilled** records

billed* = tblacts.billed has a “1″ in it
unbilled** = tblacts.billed has a “0″ in it

5. If a user selects to show “billed” items, give the user an option to change the status to “unbilled” by doing this kind of update:
UPDATE `famsol01_avail`.`tblacts` SET `billed` = ’0′ WHERE `tblacts`.`actid` =2147190620;

6. Make sure that only the “admin” user or one designated as a “1″ in
tbladmin.superadmin is allowed to run both the Billing Summary and
Activity Summary. Non-superadmin users (tbladmin.superadmin = 0) can only run the Activity Summary, with their staffname pre-selected. Their staff name should be unchangeable on the Activity Summary Form screen.

The forms are in forms.rar and the reports are in reports.rar. More detailed information can be given to the selected programmer. Thank you very much.

Autoit Mmorg Hunter Miner

February 19th, 2010 Comments off

Need autoit script for AfterWorld MMORPG. I need it to search out mobs run to them attack them, heal if needed, and run over them to collect loot. (an auto hunter)and repeats I need it to search out rocks on the ground, run to them use pickaxe until rock dispears and repeats

Joomla Extension Clone

February 19th, 2010 Comments off

Hi to all,
I know I am at the right place
Well I am posting a project for the first time
so forgive me if I do any mistake
but you can full faith that i will do my payment as decided by both parties

Coming back to the point
I am using a Joomla Extension
“Smart Former Gold for joomla 1.5″
definitely you can get the joomla or you can get it on developer site “itoris”

Smart former gold is given for a trial version of 7 days
The payment would be paid in either ways
10$ if you can just make a bypass system the 7 days limit,
it should never ask me to put a registration code
30$ if you can make a complete clone of the the extension
without the updates and name, alias or any codename related to smartformer gold… but should be completely free without any restrictions

PS: this might help if u r looking out only for bypassing the code:
After Installing joomla on my localhost which i created on my system through wamp server
First i activated the “System-legacy” plugin
second i intstalled the component “smart former 1.0 for joomla 1.0″
which is inside the attached file which is quite old.
third i installed the component package given by toris (this actually download the whole program like an online installer) and i bymistake installed it a second time
so now on that joomla version I am not getting any kind of restriction and working fine with any problem and its like more than a month

PS:I have only one day to find a person who will do it and 2 days for the whole thing to be complete

I am sorry I have limited money and limited time
so again i wont be able to do any negotiations
but i can go only according what resources i have currently

But be assured if u r helping me right now
Then i have more projects for you…

German Translator

February 19th, 2010 Comments off

I am looking for (preferably a native) German speaker with good writing skills and understanding of both German and English to translate words and sentences from English to German –in total approx. 3600 words.

Spelling and grammatical correctness are extremely important. No machine translations. The quality of the translation will be verified by a native German speaker. If the translation fails to meet our high standard the project will be canceled.

Three To 5 Page Website

February 19th, 2010 Comments off

I need 3 to 5 page website, with professional and morden look
it is related to website designing company, i also need small flash header

send me your previous work

Dvd Burn Activex For Magento

February 19th, 2010 Comments off

Our company is an enterprise that does magento extention Development.
It is a function to write DVD as for downloaded contents.

Development is scheduled DVD Burn ActiveX for Magent extention.
SDK sells it. The term of works can be shortened. (under URL)
customize for
http://downloads.zdnet.com/abstract.aspx?docid=798113

Schedule specification

1,
After the customer buys the movie
“Write in DVD” button is displayed.
(Here is our work. )

2,
blank media inserted in PC and “Write in DVD” button is pushed.
(Here is work of the customer. )

3,
Activex executes the start download DVD souce file.

3,
The file download is done, and Activex executes the DVD writing.

4,
The file cannot be pulled out for other use.

5,
After processing is completed,
Verifai DVD media
DL data is deleted.

6,
completed signal sent to magento.
or
Error signal sent to magento.

7,
When processing is completed, it shuts.

&

Function to be able to download file, and to check whether it is possible to write it in DVD.
(The test file is actually written. )

The above is a list of the function.

Writer – Landing Page

February 19th, 2010 Comments off

Seeking copywriter experienced in writing converting short-form sales copy for landing page. See attachment for general idea.

The landing page will have minimal copy, emphasizing benefits. The product/service promoted is related to US Immigration.

The target is someone seeking an immigration lawyer/consultant/product.

The goal is to get the visitor to view the video and to complete a survey to see if they qualify for the product/services.

Here is what will be on landing page:
Very concise headline.
Very concise sub-headline, if necessary.
Powerful call to-action – get user to interact to see if they qualify.

A description of the product:
If the visitor qualifies, 4 versions of the product are available:
1. A No-Risk 3 day trial of tutorial videos (no charge until 10 days);
2. An upgraded package with #1 plus a 1 time correction of the paperwork;
3. An upgraded package with #1 plus unlimited correction of the paperwork, a “document vault”, webinar/group coaching;
4. A premium package that is unavailable at initial landing page.

Checklist of benefits. Self Explanatory.

A guarantee. Self explanatory.

Some credibility copy linking product to media coverage.

Some risk-reversal and social proof (no testimonials or claims).

A favorable comparison chart comparing to traditional legal representation.

Additional guidance to be provided upon acceptance of bid.

Simple 1/2 Page Website 2

February 19th, 2010 Comments off

Need a simple but good looking website with just the products that I sell on there.

Php Database Development

February 19th, 2010 Comments off

I have a web site that I want to connect to a database

With three log-in choices…..Client Login, Candidate Login and Partner Login

Each Login link will be activated when an individual signs up with their pertinent information and also a ID and Passsword should be automatically assigned. I would like to Be able to review specific information that has been I entered in the database as it pertains to them.

Need Content Writer Seoarticle

February 19th, 2010 Comments off

Professional Writers needed to write content that is optimized for search engine to find keywords. Need somebody to write content for wedding and gift products. Writing need to optimized for search engines to find keywords. This project will involve 25 products. If the content for the 25 products are well written, we can have a long term relationship to complete 500+ more products. In addition, project will include some articles for our blog.

You will be writing content for a wedding and gift site. Content must be specific to the product with using 300-500 words per product. Write about the product, include suggestions how it can be used or what type of event is it good for, etc.

If you wish, you can write for one of our product with your bid response so make our decision. Please visit link below for product.

Visit http://www.hansonellis.com/starfish-wedding-invitation-bottle.html

Duplicate Store

February 19th, 2010 Comments off

I am looking for an identical complete store to my other store/carbon copy almost.

I would like a clone of; http://www.defensearms.com

Must include exactly same setup buttons/store/search etc.

Thank you & Happy Bidding!

Article Writing 25-50 Needed

February 19th, 2010 Comments off

I am looking for quality writers to write for me on a weekly basis.

All articles must be written by a NATIVE ENGLISH SPEAKING writer. The article will need to be concise and to the point. I won’t accept articles filled with fluff words meant to fill space.

1. Need 25 unique, quality 300-500 word articles about stress and anxiety. I can supply the topics for each article. If these 25 articles are of sufficient quality there will be 25 more awarded, and then additional articles every week on other topics.

2. Keywords should be in title and used 5-8 times throughout article but should read naturally.

3. Need correct grammar and punctuation. Also, the articles will be reviewed through Copyscape for plagiarism. Payment will not be provided for plagiarized work.

4. I need 5 unique variations of title and 5 unique 2-5 sentence descriptions of the article.

5. You will agree that I will have EXCLUSIVE rights to the articles will transfer to me. You will not be able to sell, reproduce or re-use these articles in any way.

6. Please provide samples of your work.

Zen Cart-remove Small Changes

February 19th, 2010 Comments off

On my ZenCart site i want the category image removed from some pages.

Basically the only place the LARGE category image should be visible is on the “colection” page. For example when you are looking at a bedroom collection you would see all the items in that collection. But when you where looking at the category page and viewing All the thumb nails the LARGE category image would not be at the top of the page. Also on the individual products, the category image would not be at the top of the page.

The Skype icon needs to be removed from the navigation bar.

The main banner image needs to be swapped. I will provide the new image.

Only bed if you have excellent Zen Cart history and a fantastic feed back.

High Quality Logo

February 19th, 2010 Comments off

Logo for a client ‘Hoist Media’. The logo must have a very modern and clean style. Delivery in vector format, highest quality for use in multiple mediums (web/print/TV/etc.)

We require multiple options for the client to choose from.

Here are some initial ideas (in no particular order):

a) Scissor Lift, like http://www.lloydslifting.co.uk/images/blueUDL.jpg

b) Single Pulley (with person or alone), like http://visual.merriam-webster.com/images/science/physics-mechanics/double-pulley-system.jpg
or
http://www.fromoldbooks.org/Lodge-ElementaryMechanics/pages/57-second-pulley-system/57-second-pulley-system-q98-595×1634.jpg

c) Multiple Pulley , like http://cnx.org/content/m14782/latest/wp1.gif

Also, we need multiple options for the text for each style, for example all caps, one with HOIST in caps, one with all lowercase, etc.

The key is multiple options so we have as many choices as possible.

Budget is set to reflect the quality of the work we expect and the multiple choices and revisions that will be required

Matrix Script Modification

February 19th, 2010 Comments off

Programmer with MLM Matrix Programmer REQUIRED to modify and install script (DO NOT BID if you are not experience in MLM or Matrix Program)

I have a Affiliate Membership Program with a 3×2 matrix program written in PHP MySQL

1) I need you to ADD the Re-Cycle Bonus Entry in the program and make it a Re-Cycle Matrix system.

NOTE:
A) The Matrix position is not based on membership or person
Matrix Positions are based on Bonus Positions issue to Members
Example a Premier Member get One Token Matrix Bonus and a VIP Members get 3 Token Bonus Position in the Matrix
An the other Matrix Position in the program is that The Introducer gets a Referral Bonus Position in the Matrix
I have the Matrix Script and it is in working condition

B) The Bonus Positions are issued and placed in a LISTING (called qualifying List) before it is triggered into the 3×2 Matrix
(unlike all other matrix program that place or enter the member immediately into the matrix)
I have the Listing scrip and it is in working condition

2) I need you to issue the Re-Cycle Bonus Position (when the matrix is completed) in the LISTING just like all the other Bonus Positions and not directly into the matrix

3) I need you to issue Monthly Re-Entry Bonus in the LISTING for all existing Members
Premier Member 4 RE-Entry Bonus Position
VIP Member 5 RE-Entry Bonus Position
BP Member 6 RE-Entry Bonus Position

The entire program and the Bonus Position / GSR scripts are in working conditions
You need to help me modify the script for item (1) (2) and (3)

Note: You do not need to write a new script it can be done ADDED or MODIFIED for the current script

4) I need you to ADD a MONTHLY AUTO DEDUCT Subscription Fee on every member (Premier, VIP and BP Member)

Premier Member to auto debit monthly in the Members Account the amount of $45
VIP Member to auto debit monthly in the Members Account the
amount of $55
BP Member to auto debit monthly in the Members Account the
amount of $65

These amount of $ debited is for the Monthly Re-Entry issued item (3)
You Need to ADD or Write this script in payout.php

5) I need you to ADD a MONTHLY Unilevel Commission Plan (Unlimited Width) with these conditions
a) Sponsor 3 Direct Members earns 3 Levels of $1 on each Member
b) Sponsor 4 Direct Members earns 4 Levels of $1 on each Member
c) Sponsor 6 Direct Members earns 5 Levels of $1 on each Member
This is to payout out commissions for item (3)

You Need to ADD a new script for this in the payout.php

You do not need to figure out the above = What is it? or How it works?

Here’s what I need you to do before we attempt to do the above.
I have the current 3×2 program on a website “www.tea-biz.com”

6) I need this same program to be copied and install in another website “www.global1matrix.com”
Both these websites are in the same hosting company – this make it easy for you to work

It should be a like a copy and past job except that the web template is different

I need you do item (6) it can be a one or 2 days job if there is no communication problem

From working on item (6) you will be able to know and understand the program structure, the flow and the scripts for the above project items (1-5)

Need to setup or install global1matrix.com within the next few days and get in on live after which the rest of (1-5) project can be added on.

Regards,

tbiz

Easy Blog Redesign…

February 19th, 2010 Comments off

Hello, this will be very easy for somebody who knows what they are doing…

I need to redesign my current blog and make it resemble more
of the following: peakperformancegolfswing dot com

1) I’m looking for a wordpress blog that looks crisp (with a picture
in the background) which I will supply.

2) You must be familiar with WP and appropriate plugins (most importantly is whatever is necessary so that wordpress blog acts like html formatting when I work with it). Again notice how crisp the example I gave is.

3) Also need you to create a straight .html template that I can use off of the wordpress blog so that if I create a new salesletter, it will look exactly like goldmembercoaching dot com/bare-essence-squeezepages … and this is so I don’t have to deal with the BS formatting issues in wordpress.

We are going to keep this simple so it really shouldn’t any longer than an hour if you know what you’re doing.

Project to begin immediately.

Thank you.

**PLEASE provide an example that proves to me you know what you’re doing.

Convert Xhtml/css To WordPress

February 19th, 2010 Comments off

Need an existing XHTML/CSS website converted into WordPress. Ask in PMB for the link to existing site, then send me proposal and ideas.

Zencart Website

February 19th, 2010 Comments off

General Description: We need a website with zencart shopping cart included. The artwork has already been defined, and will be handled to the programmer when chosen.

Specific requirements:
1. The website has to be written for PHP, using zencart v.1.3.8, mySQL 5
2. The website will include several links: news&events, contact us, our history, our store somewhere else, and Shop Online.
2. The shop online link will direct to a Zencart/OsCommerce (whatever the programmer wants to use) shopping cart. The shop layout has to be modified in order to match the exact artwork already designed.
3. Zencar/osCommerce shopping cart has to include a wishlist functionality (zencart does not include this feature out of the box). Only registered users will be able to add items to wishlist or to make an order, including several payments methods: google, credit cards, paypal.

Notes:
1. The artwork of the layout will be given to you. You will have to split and arrange images we will send you, and adapt the zencart shop to that design.
2. Zencart allows you to add custom pages. We will need pages like Contact Us, History and those kind of static pages. We also have the artwork for those pages. Just like in point 1, you need to adapt it to the artwork.
3. You need to implement the zencart template based on the artwork provided.

Remember, we have not an existing website. The idea of the project is creating one based on the artwork we will send you and using zencart so we can sell our products.

Flash Banner

February 19th, 2010 Comments off

I need a Flash banner designed showing 6 different types of cars using 6 different types of fuel. Nothing too fancy, just a graphic of the car, then text & graphics explaining each fuel type…

Link Building For My Website

February 19th, 2010 Comments off

This is a trial project with scope for more work. We will pay upto 50$.We are looking for 50 permanent ONE-WAY links. The 50 links broken out as follow:

20 links which are on pages (not site PR – page PR) at least PageRank 5 (can be higher)
30 more links which are on pages at least PageRank 4 (can be higher)
All links will be to the home page of our site

1. Permanent links only
2. Niche: car rental.car hire, tour operator, travel business.
3. PR4 and PR5 of higher
4. Quantity of links: 50 Links

Only white hat, ethical link-building tactics will be considered. Links must not come from duplicate C-Class IP Addresses. The PageRank values apply to link pages, not to the homepage of the domain of the link pages used. The relevant anchor text keywords will be provided after the project has been awarded.

The following types of links are NOT accepted:

-No Links in comments, blog comments & blog spots.
-No Forums home / footer / in links.
-No Social bookmarking / Network Sites.
-No Classifieds and FFA networks.
-No Porn, Adult, Gambling, Wares Related sites.
-No Dropped domains related websites / Blogs Links.
-No Link brokerage networks links (6 month, 1 year contract links).
-No any unethically received link.
-No rel=nofollow links in the HTML.
-No Pages blocked by robots.txt.
-No classified ads.
-No dynamic links.
-No sponsored links.
-No black hat, grey hat or shady tactics.
-Absolutely NO links from websites with a google penalty or google ban

Webiste Template

February 19th, 2010 Comments off

I need a template designed for a new site I am working on

I am looking for something similar to these sites:
www.prosperent.com
www.simplifiedses.com
http://www.clicksor.com/

Want it to be simple yet good looking

Must use latest CSS techniques, fewer graphics the better

Template only, no need for anything else

Nav buttons:
Home, Signup, Learn More, Contact Us, About us

I look forward to your bids

Thanks

One Pg Web Site Project +logo

February 19th, 2010 Comments off

I need a 1 or 2page website and a logo designed for our company.
The name of the company is Self Help Systems
The web site should have a clean but modern look
The logo should be modern but eclectic
The content for the web site will be provided
The website’s goal is to:

1. explain briefly what our company’s mission
2. Introduce and explain our current self help system to the public
3. List testimonials from current clients
4. Allow visitors to click and view proof of past clients results by way of either scanned statements or adobe.

Fix Site For Ie6

February 19th, 2010 Comments off

Need fix site for IE6
Site url: http://topofthetubes.com/

Need Facebook Installations

February 19th, 2010 Comments off

Need 1000 established facebook users to install my app.All users must be from the US, not less than 25 years of age,must have 3 pictures on profile, must have more than 25 friends on facebook and must be college grads.I am willing to pay upto 50$.

Css/table Fix 2

February 19th, 2010 Comments off

We are looking for a CSS/HTML table expert who can help us fix a few alignment issues on a couple of html forms and insure they are FULLY cross browser compatible. Also we need to eliminate some inline styles and add them to the existing stylesheet. Finally, a couple of graphic buttons are missing that need to be added from a PSD.

I need someone right away, who is experienced, and can chat via messenger to get this done efficiently.

We have a clean PSD to use as a guide and are ready to go.

Categories: CSS, XHTML Tags: , , , ,

Links Needed

February 19th, 2010 Comments off

We need :

1. 30 permanent Links set up within 3 weeks top,
From pr6+ pages only.
2. 30 permanent Links set up within 3 weeks top,
From pr5+ pages only.

Terms:
1. all links must be one way links.
3. all links must be with pages with no more than 15
links within them. (Very Important)
4. all links must come from different domains./IP’s
5. all links must be from Relevant Topic websites and pages.
Links must be permanent links (Important)

Please reply to this bid only if you can accept the terms.
We are looking for the right person to work with us on a long term basis on SEO/Link Building.

Payment will be made after proof of completion is submitted and checked.

PLEASE Do not Offer General SEO Services
all we need right now is High PR, 100% relative links

Site To Randomly Display Links

February 19th, 2010 Comments off

This project is a re-post as my original was somehow cancelled even when a programmer and I were working on it. I haven’t heard from him in almost a week so I don’t even know if he can still do it. Given that – feel free to bid on this. Original project description is:

I’m looking to build a site to categorically and randomly display a set number of links pulled from user profiles. I’d like to be able to change the number of links displayed and preferably I’d like them to display in 2 columns. This project does NOT need a single link to re-direct to a random url pulled from a database but rather a list of links randomly pulled from user profiles within their categories without doubles.

When a user arrives at the home page they will see some categories they can choose from and sub-categories if necessary. When a user signs up with the site their profiles will contain choices for them to enter a link to each category available as well as a description. Ideally I’d like to keep it clean and if a user checks off a box for a category they’d like to add a link to the 2 text boxes appear to enter a link and description for their link.

I need there to be a way for me enter new categories and sub-categories at any time from an admin page.

I have experience in phpBB and OSCommerce so if it’s possible to integrate this feature in to either of those then that’d be better than starting from scratch.

I don’t have a huge budget to work with. I am willing to negotiate terms to ensure the coder is paid to their satisfaction for their work. If my project is successful I am also willing to give a bonus based on success. I may also require future support for re-design or expansion if needed.

This project needs to be done ASAP.

Thank you all in advance for reading and bidding. Looking forward to this!

Need A Webcam Site 2

February 19th, 2010 Comments off

Demo site: www.myfreecams.com I will need the site to be exactly same functions and usability of the demo site.
need free live stream by the latest red5 or something free that’s high quality.
i already have vps that support live stream.
will escrow 30% when i see first update on your site.

Categories: Programming Tags: , ,

Commerce Checkout Page

February 19th, 2010 Comments off

I need someone who is familiar with shopping cart software to set up my checkout for my website ASAP.

(We use infusionsoft.com as our provider. Please visit this site and make sure that you can handle the work. We just had a guy eat up four days and then throw his hands up.)

There are multiple options for my buyers. This is a slightly involved project. I need for someone who is competent.

Upgrade Letters

February 19th, 2010 Comments off

I need 5 upgrade letters. I need 5 upgrade letters for my bussiness, here is a example of what i mean. people sign up for my service as non members but I need upgrade letters to show them why they need to purchase my product. email if interested and then I will show u the website.

Thanks,
John

Multi Point On Google Map

February 19th, 2010 Comments off

I need someone to code the dynamic map on the home page of http://tinyurl.com/printerradar

The map will be updated when doing a search the flash app will call a javascript function (updatemap(state,city))
And this javascript will then do an ajax request to
http://api.printerradar.com/apis.php?f=location&city=[city]&rpp=100&page=1&sort=distance&state=[state]

Then update the google map and adding the marker for each result

I NEED this ASAP. Open PMB with Questions.

Article Writing – 500 Word

February 19th, 2010 Comments off

Hello Folks,

I am looking for an EXPERIENCED WRITER to write (25) Keyword Rich, Seo Friendly Articles to promote a number of DVD MOVIES we are selling.

Article should contain Introduction about the SHOW, how it has not been available to own on DVD, and how its now available from US :)

ENGLISH SPEAKING mother tongue or Highly Skilled English Writer.

Need ARTICLES within 3 Days

Payment by PAYPAL on Completion

Please send details of your sample work for immediate review and selection

Budget: $30-$40

Virtual Assistant 2 Needed

February 19th, 2010 Comments off

1. comment on my twitter account ten times which you will be posting two per day for five days which the comments will be provided to you to post

2. Find 5 Blogs to Comment in my targeted niche and comment

3. Go on Craigslist and usfreead.com and post our service under the service section for my chosen city

4.Provide me with a report of all tasks, results and progress

This could lead to ongoing task

Seo Marketing For Small Site

February 19th, 2010 Comments off

Hello Folks,

I am looking for quotations for someone to conduct Onpage/Offpage SEO, for a small website being launched next week.

Please send details of what you can offer, i will review and select immediately.

Services Required:

ON-PAGE / OFF-PAGE SEO
ARTICLE SUBMISSIONS
DIRECTORY SUBMISSIONS
ONE WAY BACK LINKS
SOCIAL BOOKMARKING

PLEASE SEND DETAILS OF WHAT YOU CAN OFFER….PLEASE DO NOT BID OVER, YOU WILL BE DELETED AND WASTING BOTH OUR TIMES.

Budget of around $50-$80 only

Payment by Paypal when Complete

Bear