Archive

Archive for July, 2009

Youtube Converter Script

July 23rd, 2009 Comments off

I need youtube converter script which convert YouTube videos into seven different formats (3GP, AVI, MPG, MOV, MP4, FLV, MP3)
I need clone of this site http://www.mediaconverterscript.com.

If you have demo, it would be perfect when i decide.

College For Your Child

July 23rd, 2009 Comments off

I need a 200-300 page ebook on how to get your child into college, the book should be broken down into seven chapters, covering topics from financial aid, scholarships, and general college requirements. I will provide more information if needed. What kind of database I am not sure.

Add Content To Forum

July 23rd, 2009 Comments off

Hi,
I’m looking for someone to work as a freelance to add content to a new porn forum coming up.
The bid is for =1 month pay= for entering 20 posts on the forum per day according to a few criteria that will be explained in detail to the selected freelancer. The job is mainly to find direct download link posts to porn movies/pictures on other porn download boards (easily done) and to copy these and post them on my forum while changing the content a bit. So it’s mainly a copy/paste job.

Thanks
Guy

Cl Ad Re-poster

July 23rd, 2009 Comments off

Greetings, I am looking for someone that can help me in reposting my CL ads (about 40-50 ads) 3-4 times each day. Preferrably someone who has an auto repost program and can hide their ip. Our competitors are quickly turning to automated posting software programs and its causing my leads to dry up. I cannot accept ads that are flagged or “ghost ads”. I can provide the html for each ad. If everything goes well we have other r.e. agents that will be interested in using your services.

Get Your Child Into College

July 23rd, 2009 Comments off

200-300 page Ebook on getting your child into college. The book should be able to divided into at least 7 seven chapters. I am not sure what type of program it should be in

Viral Membership Script

July 23rd, 2009 Comments off

Now I am looking for a Viral membership Identical to the following:

www. viralmembershipscript .com/

Now I want the exact same thing but here is a twist instead of the Paypal Payment (Referral) I want to be allowed to accept Clickbank or Paydotcom.

Now for referal with no affiliate selected I want to be able to choose default payment option either Paypal, ClickBank or PayDotCom

Also I want to have an Option that will disable the Affiliate payment option if people just want a viral membership script without no $$$.

The faster the better! Please don’t charge an arm and a leg for this.

Database Based Printer Spool

July 23rd, 2009 Comments off

I need a software running on Windows XP, Vista. This programm (windows service) is conneting to a MySQL Database and checks for not printed documents. Document will be stored in the database (e.g. pdf-files). after printing it sets the status of the document ‘printed’ and sets the printingdate (timestamp) and search for the next print job.

It should also be possible to choose diffrent printers (witch are installed at the computer where this software is running)

Binary Search Tree

July 23rd, 2009 Comments off

(Need by Friday 10pm if possible)

The Problem
You are to write a program that creates and maintains a binary search tree of items in a super market. Each item has a name and a value. All item names will be lowercase alphabetic strings of less than 30 letters. All values will be positive real numbers representing prices. Also, for each node in the tree, you are to maintain the value of all of the items in that subtree. Your tree should be “sorted” based on alphabetical ordering of the item names as determined by strcmp. Your program must allow the user to do the following:

1) Add an item to the inventory
2) Delete an item from the inventory
3) Print out all of the items in the inventory in alphabetical order.
4) Print out the value of all items underneath the subtree of a given item.

For example, if the user adds these items:

a) “soap”, $2.95
b) “raisins”, $2.00
c) “jellybeans”, $5.00
d) “tea”, $1.95

in this order, then the structure of the binary tree would be as follows:

soap 2.95
total: 11.90
/
raisins 2.00 tea 1.95
total: 7.00 total 1.95
/
jellybeans 5.00
total: 5.00

Input File Specification (inventory.txt)
The first line of the input file will contain a single positive integer, n, representing the number of commands to execute. The following n lines will contain one command each, in the other they are to be executed.

The first number of each of these lines will be either 1, 2, 3 or 4, to signify the choices listed above.

If the choice is 1, it will be followed by the name of the item added and its price (as a number), both separated by spaces.

If the choice is 2, it will be followed by the name of the item to be deleted.

Choice 3 will be on a line by itself.

Choice 4 will be followed by a single string storing an item.

Output Specification
For each command, your program should provide some output.
The output provided by each command should be separated by a blank line.

For choice 1, if the item to be added is NOT in the tree, output a line with the following format:

item has been added to the stock.

where item is the name of the item added. If the item is ALREADY in the tree, output a line with the following format:

Sorry, item is already in stock. No changes made.

For choice 2, if the item to be deleted is IN the tree and is successfully deleted, output a line with the following format:

item has been deleted from the stock.

If the item is NOT in the tree, then output a line with the following format:

Sorry, item couldn’t be deleted because it’s not in stock.

For choice 3, the first line should read:

Here is a list of the items in stock:

Each following line should have information about one item and the list should be in alphabetical order by item name. Here is the format for one of these lines:

item $price

The price should be printed out to two decimal places exactly.

Finally, for choice 4, print out the sum of the values of all the items in the subtree rooted by the designated item. If this item is NOT in the tree, $0.00 should be printed out. Here is the format for the output for this option.

The value of all the items underneath item is $price.

Implementation Restrictions
You must store the data in nodes of a binary tree. Each binary tree node must store 3 pieces of information: the name of the item, its price, and the sum of the prices of all the items in its subtree.

Sample Input File
11
2 soap
1 soap 2.95
1 raisins 2.00
1 jellybeans 5.00
1 tea 1.95
4 raisins
3
2 raisins
4 soap
4 cereal
1 soap 3.50

Sample Output
Sorry, soap couldn’t be deleted because it’s not in stock.

soap has been added to the stock.

raisins has been added to the stock.

jellybeans has been added to the stock.

tea has been added to the stock.

The value of all the items underneath raisins is $7.00.

Here is a list of the items in stock:
jellybeans $5.00
raisins $2.00
soap $2.95
tea $1.95

raisins has been deleted from the stock.

The value of all the items underneath soap is $9.90.

The value of all the items underneath cereal is $0.00.

Sorry, soap is already in stock. No changes made.

Closest Birthday

July 23rd, 2009 Comments off

The Problem
It’s the first day of class and you are barely awake. You are hoping to snooze through a typical syllabus day when your new teacher commands you to get up and find the person in the room with the closest birthday to yours. Luckily, you’ve taken AP Computer Science already and realize that the key to solving the problem is to sort EVERYONE by their birthday, and then simply look directly to the left and right of you (the birthday that occurs immediately before and after yours) and see which of the two is closer. If you on the end of the list, you have to check with the person at the beginning and vice versa.

In order to solve this problem, you’ll get several different classes from an input file. Each class will have several queries. You are required to implement either Merge Sort of Quick Sort in the solution of your assignment.

Input File Specification (birthday.txt)
The input file has a single positive integer, n, on its first line, specifying the number of classes in the input file.

The first line of each input file will have a single positive integer k (k < 1001), representing the number of students in the class. The next k lines will have information about each student. Each line will have the following information separated by spaces: first name, last name, month, day and year of birth. All names will only contain uppercase alphabetic characters and be no longer than 29 characters long. The month will be represented in its full spelling, in uppercase letters. The day and year will be the appropriate integers. You are guaranteed that all of this information is valid. (Thus, no April 31st will appear, etc.) It is also guaranteed that each full name will be unique. (Namely, no two people in a class will have the exact same first AND last name.)

Following those k lines will be a line containing a single positive integer m (m < k), representing the number of queries for that class. The following m lines will contain the first and last name (separated by a space) of the student in question. (Your goal will be to find the name of the student with the closest birthday to the queried student.)

Output Specification
For each input class, print out a header with the following format:

Class #c:

where c represents the day of the simulation (1 ≤ c ≤ n).

Follow this with a blank line.

The following k lines will answer the queries for that class in the order they were given. For each of these queries, output a single line with the following format:

FIRST2 LAST2 has the closest birthday to FIRST LAST.

where FIRST LAST is the name of the queried student and FIRST2 LAST2 is the name of the student with the closest birthday to FIRST LAST.

To avoid ambiguity, sort the students in the following manner:

1) By birthdate, ignoring the year.
2) To break ties between students with the same exact birthdate, use last name as compared by the strcmp function.
3) To break ties where both #1 and #2 are the same, use the first name, which in these cases, is guaranteed to be different.

To further avoid ambiguity, if both the person who appears right before and right after the queried person are the same number of days away (in birthday) as the queried person, always choose the first who comes AFTER the queried person in the array. Note: for these purposes, February 29th won’t count as an actual day, unless someone in the class has that birthday. For example, if the queried person’s birthday is March 1st, the person right before her has a February 28th birthday and the person right after her as a March 3rd birthday, then the person with the February 28th birthday is considered the closest (1 day way) as compared to the March 3rd birthday (2 days away). BUT, if there IS a February 29th birthday in the class, then that does count as a day.

Put a blank line between the output for each case.

Implementation Restrictions
You must store all the relevant information about a student in an appropriate struct. You must implement either Merge Sort or Quick Sort. You must follow all the tie-breaking procedures described above.

Sample Input File
2
3
SAM MALONE MAY 3 1961
DIANE CHAMBERS AUGUST 16 1970
NORM PETERSON DECEMBER 12 1955
2
SAM MALONE
NORM PETERSON
4
DAN MARINO SEPTEMBER 15 1961
JOHN ELWAY JUNE 28 1960
JOE MONTANA JUNE 11 1956
DAN FOUTS JUNE 10 1951
1
JOE MONTANA

Sample Output
Class #1:

DIANE CHAMBERS has the closest birthday to SAM MALONE.
DIANE CHAMBERS has the closest birthday to NORM PETERSON.

Class #2:

DAN FOUTS has the closest birthday to JOE MONTANA.

Please write in C.

Access Database Help

July 23rd, 2009 Comments off

I’m completely new to Access and VB and was wondering if someone could help me out with a problem that I can not figure out. I’m trying to pass the Case number in one form to another form. It’s can’t be difficult, but I’m not catching on.

When you first open the database it will ask for password, it’s admin (lowercase). From there it should open a dashboard. Click on the Client Data Entry Updated Form, which should have a yellow background. I’m trying to take the Case # (first record in database is 1586) and I’m trying to pass it to another form. That form is started by clicking on the Add Services button onthe right side of the main form (haven’t yet finished entire form). When you click that button you should get a form for adding Provided Services. It should already have one entry for Acupuncture. This is where I would like to place the CASE # in the Text 10 box. I would then like when you submit the form that it places the Case # in the table. I would also like when you press the Add Services button that the form is blank.

I would like to keep it in Access 2003 and would like a very quick turn around. I know it’s not hard, I’ve just never done anything like this and have spent to much time on this.

A4 Craft E-cover + Cd Label

July 23rd, 2009 Comments off

We need an A4 cover and CD Label for a a craft book on a variety of projects. The chosen cover needs to be suitable for a whole range of books with adjustments to the text titles.
Full details to the winning bidder with possibilities for more of the same.

Categories: Multimedia Tags: , ,

Craft Book Cover And Cd Label

July 23rd, 2009 Comments off

We need an A4 cover and CD Label for a craft book on glass painting. More of this to the winning bidder.

Joomla Radio Plugin

July 23rd, 2009 Comments off

We would like a joomla radio stream plugin like the here – http://www.jamlink.com/ . It will be the same stations as that website. The difference is I would like a new window to pop-up once a radio station is selected. The streaming will take place in this new pop-up window.

Testing is very important to our projects so do not bid if you are not going to thoroughly test this project.

Please do not create code from scratch. We do not have the budget for that. There are a few Joomla plugins that can be modified to achieve the goal of this project. Please see the links below.

http://blog.ryaneby.com/archives/firefox-cant-play-applicationx-mplayer2-embeds/

http://extensions.joomla.org/extensions/external-contents/audio-&-radio-channels

http://extensions.joomla.org/extensions/multimedia/shoutcast-&-podcasts/6927/details

Creative Logo With Bombconcept

July 23rd, 2009 Comments off

I am looking for a creative logo with a bomb concept for my website

also looking for a few sticker designs also… about 3 to 5

Data Correction

July 23rd, 2009 Comments off

http://www.bankinggrapevine.com/searchcontacts.asp

Select:

Region = North America

Press search

Brings up 30,900 contacts.

However, in attached file, the contacts are listed by state, and the total is only 18,412.

Please correct the contacts, so that each contact has same State + City/Suburb as the bank ID it is associated to.

Article Submission 100 Manual

July 23rd, 2009 Comments off

Looking for a person to do 100 article submissions to page rank 3 or higher sites , the sites need to be education related or writing related , must give full report with username and password . You must supply list. Max pay is 10US . Must be ready to start ASAP , also must email us after we accept you. I have the articles all ready written up. This is for 1 article that needs to be submitted 100 times.

Article Submissions 100

July 23rd, 2009 Comments off

Looking for a person to do 100 article submissions to page rank 3 or higher sites , the sites need to be education related or writing related , must give full report with username and password . You must supply list. Max pay is 10US . Must be ready to start ASAP , also must email us after we accept you. I have the articles all ready written up. This is for 1 article that needs to be submitted 100 times.

Craft Project Designs Needed

July 23rd, 2009 Comments off

I’m putting together a book of craft designs and am looking for a whole collection of original designs that can be easily adapted for use in a range of craft projects such as painting, embossing, quilting, etc

Details to the winning bid.

Press Release Distribution

July 23rd, 2009 Comments off

Need press release distributed to 500 media sources & blogs in Europe and Asia dealing with Business Technology, International Trade and Logistics Supply Chain Management.

Ten Articles Written

July 23rd, 2009 Comments off

I need 10 articles written that appeal to the interests of older demographic 50+ years old.

Each article must be 100% original and cannot be copied from other articles.
Ownership and copyrights shall be transferred to us. No other publishing is allowed.

Each article to have about 500 words

Please bid for the ENTIRE job and not per article.

Article Topics are:

2 on Senior Travel
2 on Health after 50
2 on Senior Entertainment
2 on Retirement Issues
2 on Dining Out

Programming Project 1248376466

July 23rd, 2009 Comments off

We’ll try this again

Thanks to those who posted on the previous post but we need verification that you can undertake the work that we are requesting.

We have a concept we wish to develop for the ongoing collection of medical data in developing countries of the South Pacific.

We wish to set up an online capability to design medical (or any) forms then download them to mobile phones or netbooks.
(The idea being that it is easier to use the phones for research and data collection in rural areas)
There is an organisation called Datadyne.org that has a very good product but it is complicated to use.
We would like to build on this with ability to insert photos into the forms from the camera as well as Biometric data (fingerprints).
This would be for identification of the patient as well as options for images of the medical condition if applicable.
Also we want to record GPS coordinates of the data.
This has benefits for location based disease outbreaks or cluster identification of diseases.

Once the data is collected via the phones/netbooks, it is then uploaded to a central database.

As well as creating a patient record the data would be able to be used in a set of preformed reports.
Capability to select the parameters for a customised comparison of the data.

The information would also be able to be accessed via handhelds by authorised users(for example by doctors to check on a patient)

We appreciate that there are a lot of variables in this description and anticipate that certain features may need to be introduced at a later stage.

We anticipate that this would be on ongoing relationship.
We have not selected programming languages as this is not our expertise. Advise is invited.
We will also be interested in developing a website for this project.

A demonstration of the capability to undertake this work is requested

Job Type:

* Data Entry
* Handheld
* Multimedia
* Script Installation
* Website Design

Affiliate Network Script

July 23rd, 2009 Comments off

I want a script using which I can sign-up and manage sub-affiliates.

Let me explain this with an example.

PART-1 (affiliate network explanation)

There is an affiliate network called Azoogle. I’m a member of this. When I login into the members area of azoogle, it displays hundreds of offers. For example:

offer #1 – real estate ebook – http://x.azjmp.com/2w333 – $5.00
offer #2 – weight loss pills – http://x.azjmp.com/2R5GG – $10.00
offer #3 – no-snoring mask – http://x.azjmp.com/2XX23 – $20.00

In the above example, http://x.azjmp.com/2w333 is my main affiliate link for offer #1. I can also use Sub-links for tracking purpose. For example…

http://x.azjmp.com/2w333?sub=google
http://x.azjmp.com/2w333?sub=yahoo

So, if I send visitors to http://x.azjmp.com/2w333?sub=google or http://x.azjmp.com/2w333?sub=yahoo and when someone buys a product, I will get paid $5.00. Plain and simple.

Azoogle displays statistics like this for main link:

offer #1 – real estate ebook – 85 (clicks) – 3 (leads) – $15 (commission.)

and for sub-links, it shows like this:

google (sub) – 35 (clicks) – 1 (leads) – $5 (commission.)
yahoo (sub) – 50 (clicks) – 2 (leads) – $10 (commission.)

———————————————————————

PART-2 (sub-affiliate explanation)

Now, I want to sign-up sub-affiliates and assign them sub-affiliate links. Let’s say bob signs up. The script assigns him an ID no. E.g. 1001. His link for offer #1 will be:

offer #1 – real estate ebook – http://x.azjmp.com/2w333?sub=1001 – $2.50

That means, bob can send traffic using his sub-affiliate link and if any of his visitors buys a product, bob will get paid 50% commission. i.e. $2.50 (I will define the commissions in the admin section of the script)

and his statistics should show like this.

1001 (sub) -45 (clicks) – 1 (leads) – $2.50 (commission.)

This is the basic idea.

———————————————————————

PART-3 (user interface)

The script will be installed on my website, www.xybergold.com

So, if someone wants to join as a sub-affiliate, they will go to:

www.xybergold.com/script/signup.php

First name
Last name
Email address
Address
City
State
Zip
Phone
Password

Paypal email

Website
Description
Traffic/month

To login, www.xybergold.com/script/login.php

Once a member logs in, he will see offers like this.

offer #1 – real estate ebook – $2.50
offer #2 – weight loss pills – $5.00
offer #3 – no-snoring mask – $10.00

When he clicks on offer #1, it will show the details for that offer and also his affiliate link. John’s affiliate link is – http://x.azjmp.com/2w333?sub=1001. However, the script should mask the above link and it should display like this:

http://xybergold.com/script/offers.php?id=8880&a=1001

where, 8880 = offer ID and 1001 = john’s affiliate ID.

So, when visitors click on http://xybergold.com/script/offers.php?id=8880&a=1001, they will go to http://x.azjmp.com/2w333?sub=1001

NOTE: The script should login once per day to my Azoogle account and download the statistics report (clicks and leads information) for all sub-affiliates using their sub-id’s (e.g. 1001) and display it here. So, john can see how many clicks, leads and commission he has earned like this:

offer #1- real estate ebook- 1001 (sub) – 45 (clicks) – 1 (leads) – $2.50 (commission.)

(statistics should be displayed month wise)

———————————————————————

PART-4 (admin interface)

Add/edit/manage offers – Here I should be able to add/edit/manage offers and define the commission percentage for each offer.

Affiliates – should display all affiliates

Statistics – Stats of all Affiliates

Commissions – When an affiliate reaches $50 in commission, the script should display that affiliates name. Then, I’ll pay that affiliate manually by paypal and mark them as paid. Their member area should also display that they have been paid.

=====================================================================

NOTE: The above lengthy explanation might sound confusing. Actually, the script is not that complex. It is simple if you see the ‘User Interface’ which I have designed for example purpose.

Check it out here -> http://xybergold.com/design/offers.htm

=====================================================================

Need 5-7 Articles Written

July 23rd, 2009 Comments off

Hello,

Your bid price should be for all 5-7 articles not each article!

I need 5-7 articles written to be used as I see fit, for web content or as regular articles.

Articles should be at minimum 350 words.
Each article will be written on a different keyword I would supply to you.

I need original, unique content that makes sense.

Let me know..

thanks..

Sbi Site Programming

July 23rd, 2009 Comments off

I have an SBI site that I’d like to change the front page.

I have some pictures and some links that I’d like to put up, as well as changing the colors of the template.

If you know how to use SBI, my guess its will take about 2 hours.

Weblocks Modification

July 23rd, 2009 Comments off

Modifying an existing site made with weblocks. This project will consist of modifying menu and articles.

Script/bot For Auto Pilot

July 23rd, 2009 Comments off

I have www.allfoodmenu.com, which I want a bot to fill profiles there.

Bot to scour the web for restaurant names, location, country, zip, address, phone number and type
To input and automatically register restaurants on my site.

Payment is 50% to be made when bot is tested and works and 50% when bot is delivered and work.

For the bot, I need to have Country preference, State preference, and even restaurant type preference. Then bot go and find info.

Once bot retrieve data, I check data and their source for validity and edit whatever and then approve, then bot automatically fill in restaurants profile.

It does not have to be any site to scour, could just search www and auto fill, should have an option for this, or an option to go to like yahoo.com to retrieve data.

Drupal Location View Arguments

July 23rd, 2009 Comments off

I need someone to write a Drupal module/patch that will allow me to use latitude/longitude arguments in location views. Currently I’m using the lat/lon filter but I will be calling the view through the services module externally, and lat/lon have to be passed as arguments.

The first few posts talk about it here, then it they go off topic: http://drupal.org/node/357295

Like the distance/proximity filter this argument should also be able to display the distance in miles between provided lat/lon and nodes with locations.

Let me know if you have questions. Thanks!

Need this completed ASAP.

Dating / Social Network Site

July 23rd, 2009 Comments off

Im looking for custom made dating/social networking software with features similar to: Tagged.com , Myspace.com, Hi5.com, etc.. Using PHP, Ajax, mySQL, etc

Please be familiar with the basic features of these sites because to keep my list simple I just make a reference to the site

I want the coding to be efficient and streamlined and secure. I want it to be scalable to handle 10,000-1,000,000 if the need arises.

If you are going to bid, Please have experience in creating social or dating sites with examples, preferably ones in production by successful companies. Please don’t try to pass of pre-made scripts as original work.

DO NOT write things like:

Yes it can be done
I have read your requirements and can do it

Send me examples and information on how you think is best to accomplish this task.

Will give more details to those Im interested in working with.

Please No ridiculously high bids!! Bids over the limit will be DELETED!

Some Features:

Front End Features:

Multi page registration page like Tagged, where client is asked to look up friends from their contacts lists, add photos, etc

A clean look similar to Tagged for the users view.

Multi page registration page like Tagged, where client is asked to look up friends from their contacts lists, add photos, etc

Profile, Friends, inbox browse and search pages like Tagged /Myspace

Meet Me feature like Tagged where you get to select members you want to meet. Then they see your photo and if they select you as well, you are both notified.

Friends in common feature like Facebook

Chemistry match system – that you what features you have that someone is looking for

Points System
1) Buy and use points
2) Get points for blogging, posting news, inviting friends to network

Ability for clients to change their page look like myspace and tagged

Music and video player

Instant Messenger/shoutbox

Walter Dating Website

July 23rd, 2009 Comments off

I want a programmer to help build a dating site. It will be very similar to many of the datign sites out there. It will have a pay section to users to buy tokens to use our dating site. A similar site would like lavalife.com, or Perfectmatch.com. It will contain capablity of instant messageing, buying tokens to use the site, as well as loging how many tokens the user is using and when then need to buy more tokens the same way lavalife dating site does it. The site will also have capability of live webcam same as msn messenger does it. Each user will have their own login and profile. I will discuss more detail when we chose a designer…
Walter Harris

Experience 4 Photography Site

July 23rd, 2009 Comments off

I need a photography site built from someone with experience in this area. I would like a clean, nice, professional looking site with a nice layout. That loads up quick and easy for users to navigate around. Along with a nice, and simple gallery.

I will need the ability to maintain the site myself. With the simple ability to upload, delete photos, etc. Since I have very limited or no knowledge of html.

I am also needing an area for clients to log into with a user name and password which will be given by me, the photographer. Allowing clients to log in to view their proofs from the photo session with the ability to order the prints they want to purchase. I have a shopping cart. I just need that particular function set up as described.

Please don’t bid or contact me if you are not with in my budget. I don’t want to waste your time and please don’t waste mine if you are not willing to work with in my budget! So before you contact me please look at the budget! The budget is listed below if you can’t do it please don’t bother replying with outrageous bids!!!

Php Work On Joomla Based Site

July 23rd, 2009 Comments off

I have members registered on website bmcindia.org which I am migrating it to Joomla (j.bmcindia.org) and want to give username passwords to all my registered users.

I am looking for a programmer who will:
1. Neatly migrate all member records from 1 table to another.
2. Write a script to send out emails to all members with the Link to create username/password and update their records like address, data of birth, interest, subscription to newsletter etc..
3. Above script should skip already created accounts and people who don’t want to receive reminder mails and send reminders to all remaining members.

The programmer should be good at PHP/MySQL/Javascript/Joomla.. Programmer with quality and timely output will get more work.

Migrate Smf 2.0 To Bbpress

July 23rd, 2009 Comments off

A very simple project. I don’t think there is much to explain on this one.

I have a smf(simplemachine.org) forum with about 1619 Posts, 606 Topics and 966 Members.

I want to migrate my entire board to bbpress(bbpress.org)without losing the data and permissions.

I will provide you with the current database. I would like to see bids from people with some reviews.

Categories: MySQL, PHP Tags: , , ,

Cl And Related Sites-2

July 23rd, 2009 Comments off

Hi, I will need ads posted on 30 sites that are like CL.

I provide the ad copy and you just go to each site and make a posting. I will need verification of your postings…a screen print would suffice. It’s a really simple job.

Four Gif Buttons& Flash Header

July 23rd, 2009 Comments off

I need two tasks completed for a nutritional supplement website.

1) Four GIF rollover buttons for the header. Each button needs to be 130×89. I need buttons for ‘How it Works’, ‘FAQ’, ‘Order’, and ‘Contact’. The text should change color when the mouse is put over it. I have specifications for the Font, colors, and graphics that will be provided to you.

2) A simple Flash header, 814×150, that displays 3 (provided) stock images with text that I provide next to them. The images and text should be rolled onto the screen gradually, then stop, pause for a few seconds, then disappear and display the next text/graphic set.

Both of these tasks should be easy for anyone with at least average knowledge of Photoshop and Flash. Please respond with a detailed bid so that I know you read the specifications of this job, instead of just a generic bid that I can tell you respond to everyone with. :)

Word Press Developer

July 23rd, 2009 Comments off

I need good wordpress developer to convert my design to wordpress site

I have attched the images

E-book

July 23rd, 2009 Comments off

1. I have a book that I created as a microsoft word document file. I want to make this downloadable from my website. The book topics are organized Alphabetically and there are 63 different topics. Online – i would like the user to be able to download the book and then search the topics by clicking on the topics in the table of contents.

2. Also, some of the pages are forms so I would like those pages to be where the user could make changes to the forms.

3.If possible I would like the user to be able to search by keyword also.

Png/jpeg To Css/php Layout

July 23rd, 2009 Comments off

I have a png and a jepg that I need converted to a css and php layout. I need the header, body and footer to be php elements. Need this ASAP.

Categories: CSS, PHP Tags: , , , , , , ,

Phpbb Mod Installation

July 23rd, 2009 Comments off

I need 8 mods to be successfully installed onto a phpbb 3.0.5 message board:

Activity stats
ReIMG Resizer
Advertisement management
phpbb SEO
Alert Box Notification
Quick Reply for phpbb3
Ip Country Flag

Please PM if you have any questions.

Dollar 25 Per Month Per Person

July 23rd, 2009 Comments off

Need a company in US with atleast 20 persons.

25$ per month per person – 15mins a day of data entry – atleast 22 days per month

Ipb Forum Uploading Module

July 23rd, 2009 Comments off

I need a mod that allows members to upload videos to be streamed in their post (similar to zshare) and also an image uploader that gives members a clean html code for embeding (similar to imagebam.com). Within each members profile should be a list of neatly displayed videos and pictures that were uploaded by them. To ensure background processes wont run wildly you must know how to manage the encoding processes in windows, have a windows testing environment and you must be familiar with Invision Power board Forums.

Files should be uploaded in the area when starting a topic/making a post and I want a separate component area to publicly view uploaded pictures and videos but I would like this feature to be for members only and restricted to guest. In profile view their should be thumbnails of pictures/videos uploaded by that member(exactly like rude.com). I also want to give members the ability to download uploaded videos like zshare and the ability to add videos to their favorites also like rude.com. All uploaded videos should be converted to wmv to preserve space. I want the uploading system to be only available through certain sections of the forum. A little under 2 weeks would be good for the completion of this project.

Here are some key features the image uploader should have. Most are features used on imagebam.com
1) multi-file upload option
2) separate file fields
3) ZIP upload that unzips after upload
4) thumbnail creation of all uploaded files (images)
5) URL code generated for boards, web sites (HTML and BB code)
7) Search Engine Optimization (SE friendly urls + clean html code)

thanks

Bear