Archive

Posts Tagged ‘operator’

Calculator Tool

February 11th, 2012 Comments off

Iam looking for a tool that allows me to calculate and compare daily rates of several campervan hire companies.
It can be either web based or running within Open Office on a simple spreadsheet application.
The vehicle prices of each operator are different for seasons of the year and the date when the seasons are changing are different from one operator to the next.

Back end
- create operator ( name)
- add vehicles to the operator
- create seasons (IE 01/03/2012 – 30/05/2012)for each op…

Haul Truck Operator Prep Website

February 7th, 2012 Comments off

I have a website located at www.haultruckoperatorprep.ca that we have been working on for a year. I was working with a designer that did the Flash work and another company for the programming. We are very close to having the site finished but have found a few bugs that we’d like to get fixed. The site is based on skills of PHP, MySQL and Flash ActionScript2. The website is based on wordpress. You can access the login by using the username: abpanchal at sa.com with the password: 123456(This is no…

Campervan Booking Website

October 30th, 2011 Comments off

The job is to create a simple 3 page website for campervan specials. The available gaps are shown in several planners like the hotel rooms on <wotif.com> but our one will be way simpler…
Several operators need their own login to the website to create and edit their offers, once a customer has picked a booking, the system needs to generate some emails and a payment link for the operator to pay a fee. Once the payment to us is confirmed by DPS, the system generates a mail containing the customers details to the operator. Website needs to be optimised for SE. We would like to see the page within the first 10 results for certain keywords, especially for NZ and Australia – you can suggest other means to promote the page as well.
A detailed description is available on request. Follow up work likely, we will extend the concept to several countrys with seperate pages.

The desired process flow for a booking

Operator logs in and creates an entry in his planner
Entry appears on Main Page
Customer views the entries, checks the details and decides to book
Customer fill in his details and <Send> mail
System generates mail to Operator with notice of Customer interest and payment link, then deletes the planner entry
System generates mail to Customer with confirmation of the process
Operator uses payment link to pay the predetermined fee, system gets payment confirmed and sends mail to Operator with customers details

Overall the system should run with as less input needed from us as possible.

Tour Operator Site

October 18th, 2011 Comments off

Develop a dynamic site (WordPress OR Joomla Prefered) for Travel & Tour Operator which should also have a way to list volunteering opportunities.
Reservation system for
1. Hotels
2. Tour Packages
3. Volunteering Opportunities

Happy bidding…

Tour Operator

September 17th, 2011 Comments off

I need a project similiar to the one already post in here under Bus Tour Cost. In addition with that with some more fix and variable. Can be able to print out Itinary and stuff. Please look at the Bus Tour Cost posting first.

Develop A Php Live Support

August 16th, 2011 Comments off

To develop a 100% web-based real-time Live Support using PHP and MySQL.

Requirement:
- Can let more than one company to use this system
- One company have one or more than one department, one department have more than one operator.
- An operator can get multiple chat requests from the web visitors
- Chat Routing
- Operator is able to transfer chat to another operator in a company
- Operator is able to keep track visitor location (based on IP)
- Operator is able to keep track visitor’s current webpage navigation url.
- Sound Alert Notification; “is typing…” notification; Online/Offline Status
- Boss/Supervisor are able to view all the chat history between operator and visitor in one company, and able to add new operator in that company.
- Good layout & graphic design
- 100% Web-Based, develop by using PHP, MySQL, Javascript/Ajax, HTML

Data Entry Operator Required

August 4th, 2011 Comments off

We require a data entry operator on urgent basis for our up growing organization.

Skills,

Must be fluent in English.
Good typing speed,
follow the instruction.
Good command on Excel and Word

Data Entry Operator Required On Contract Basis

June 9th, 2011 Comments off

We have a web site for which we need to gather data from all across internet from different web site. The site is a military related web site and we want someone who has extensive on data researching on web and then collecting it on a proper format.

This will be an ongoing job for the chosen candidate, who can deliver us quality work in specified time frame of delivery

Sms Mobile Lottery

June 4th, 2011 Comments off

Need SMS lottery in GSM & CDMA based. t can also be simpler. i need dev a software.
For example:

1) Main mobile operator is GSM;
2) Another operator uses CDMA;
3) Client wants to play the number rang we set in program and pays for each no set by us.
4) Client plays by sending us a SMS after registrations validity;
5) loading amount by prepaid scrach
6) Money is deducted from client’s account prepaid with us;
or balance with mobile operator; etc.
7) every one hour result with be broadcast by us.
8) graph status of bit need to be display to us of each program.

I am looking for someone totally familiar with the scheme, technology and programming necessary to accomplish this. We would like to use any available open source technology, including, perhaps, the use of Kannel.

Rational Number Class

April 21st, 2011 Comments off

Create a class RationalNumber (fractions) with the following capabilities:
a.) Create a constructor that prevents a 0 denominator in a fraction, reduces or simplifies fractions that are not in reduced form and avoids negative denominators.
b.) Overload the addition, subtraction, multiplication and division operators for this class.
c.) Overload the relational and equality operators for this class.

In addition to the capabilities outlined above, the RationalNumber class should overload the stream insertion (<<) and stream extraction (>>) operators. The stream extraction operator should prevent a 0 denominator in a fraction, reduce fractions that are not in reduced form, and prevent negative denominators. Negative or 0 denominators should be set to 1.

Sample output 1
Enter a Rational Number (n/d): 1/3
Enter a Rational Number (n/d): 2/4
1/3 + 1/2 = 5/6
1/3 – 1/2 = -1/6
1/3 * 1/2 = 1/6
1/3 / 1/2 = 2/3
1/3 <= 1/2 according to the overloaded > operator
1/3 < 1/2 according to the overloaded >= operator
1/3 < 1/2 according to the overloaded < operator
1/3 <= 1/2 according to the overloaded <= operator
1/3 != 1/2 according to the overloaded == operator
1/3 != 1/2 according to the overloaded != operator

Driver Program:

#include “RationalNumber.h”

int main()
{
// RationalNumber c( 1, 3 ), d( 2, 4 ), x;
RationalNumber c, d, x;

// test overloaded stream extraction operator
cout << “Enter a Rational Number (n/d): “;
cin >> c;
cout << “Enter a Rational Number (n/d): “;
cin >> d;

x = c + d; // test overloaded operators + and =
cout << c << ” + ” << d << ” = ” << x << endl;

x = c – d; // test overloaded operators – and =
cout << c << ” – ” << d << ” = ” << x << endl;

x = c * d; // test overloaded operators * and =
cout << c << ” * ” << d << ” = ” << x << endl;

x = c / d; // test overloaded operators / and =
cout << c << ” / ” << d << ” = ” << x << endl;

// test overloaded > operator
cout << c << ( ( c > d ) ? ” > ” : ” <= ” ) << d
<< ” according to the overloaded > operatorn”;

// test overloaded >= operator
cout << c << ( ( c >= d ) ? ” >= ” : ” < ” ) << d
<< ” according to the overloaded >= operatorn”;

// test overloaded < operator
cout << c << ( ( c < d ) ? ” < ” : ” >= ” ) << d
<< ” according to the overloaded < operatorn”;

// test overloaded <= operator
cout << c << ( ( c <= d ) ? ” <= ” : ” > ” ) << d
<< ” according to the overloaded <= operatorn”;

// test overloaded == operator
cout << c << ( ( c == d ) ? ” == ” : ” != ” ) << d
<< ” according to the overloaded == operatorn”;

// test overloaded != operator
cout << c << ( ( c != d ) ? ” != ” : ” == ” ) << d
<< ” according to the overloaded != operatorn”;

return 0;
} // end main

Online Data Entry Operator Worldwide

April 15th, 2011 Comments off

Online Data Typing jobs Available. Work 24x7x365 Non stop. Each Assignment of 4 lines. Earn $3 per Assignment. Make income of your choice. Doors are Open only for limited Seats. Work Free before you register.
Earn a guaranteed $5000 p.m. Payment Proof Available.For more details
http://www.onlinedatajob.tk

Online Data Entry Operator Worldwide

April 5th, 2011 Comments off

Online data entry jobs available earn $2-$5 per page. Data entry and data conversion jobs. Earn more than $300-$500 per month. Get support 24/7. 100% Scam free jobs.For more details visit the given below website

http://tinyurl.com/ijob2050

Software + Php Modifications

March 14th, 2010 Comments off

Hi!
I’m looking for someone who can create for me professional looking software for PC.

1. What that software should do?
It should remember all application’s and websites that user entered while program was running, randomly make screenshot’s and save time (how long application was running each time).
Then those info have to be send directly to webserver (it can’t be saved on users PC).
2. How does it look like from user side?
User open program, he have to login with details from website, and choose ‘operator’. After that software goes to tray, and user can only check timer, shut down or log out from the system.
User can see only operator’s who choose him to their program (and when operator reject user then he can’t log into or even see his program).
Operator can see (on website) info that was saved while user was logged into ONLY his program, so operator1 can’t see info for operator2 even if the same user joined to their program.

I’ve got php script that will have to be a bit configured for this software.

It’s easy job, even I can create something like that in Delphi ,but It have to have modern look, so I’m looking for someone with experience. It can be written in any language like Python or visual basic, C++ delphi . Don’t worry about language it will be changed too, so it doeasn’t matter from which part of the world you are.

(Sorry for my poor english, if you have any questions PM me)

Software + Php Modifications

March 12th, 2010 Comments off

Hi!
I’m looking for someone who can create for me professional looking software for PC.

1. What that software should do?
It should remember all application’s and websites that user entered while program was running, randomly make screenshot’s and save time (how long application was running each time).
Then those info have to be send directly to webserver (it can’t be saved on users PC).
2. How does it look like from user side?
User open program, he have to login with details from website, and choose ‘operator’. After that software goes to tray, and user can only check timer, shut down or log out from the system.
User can see only operator’s who choose him to their program (and when operator reject user then he can’t log into or even see his program).
Operator can see (on website) info that was saved while user was logged into ONLY his program, so operator1 can’t see info for operator2 even if the same user joined to their program.

I’ve got php script that will have to be a bit configured for this software.

It’s easy job, even I can create something like that in Delphi ,but It have to have modern look, so I’m looking for someone with experience. It can be written in any language like Python or visual basic, C++ delphi . Don’t worry about language it will be changed too, so it doeasn’t matter from which part of the world you are.

(Sorry for my poor english, if you have any questions PM me)

Logo Needed For Tour Operator

February 23rd, 2010 Comments off

Tour Operator, we deal with extremely high end clients, and we need to modify this logo to accommodate our new name. We want the logo to beam of sophistication, class, prestige, and exclusivity. While keeping some aspects of the original design and colors. We do not want it to look pretentious in any way. We want it a little less clustered and the Name and Tag line more pronounced that in this current logo.

Coo Holidays – and a tag line of “Love Yourself, Experience The World”

Tour Operator Logo

February 22nd, 2010 Comments off

We are looking for an improvement on a current logo. The logo attached is from a lounge/ night-life venue owned by our company in Greece. Our deliverable should have ‘Coo Holidays’ incoorperated into it instead of just ‘Coo’ as well as the tag-line ‘Love Yourself.’ Attached is the original logo. Unfortunately we have lost the original template and this is all we’re left with. Please try to stay as true to the original logo as possible.

New Php Page And Fixing Homesi

February 19th, 2010 Comments off

I need some fix and update to my homesite www.viagginvidia.netsons.org (demosite)

It is really important to know that the database is yet builded and in the project the most thing to do is tho show field of the database. The database is written in mysql.
My homesite is vbulletin based. I have to mod it. We have to divide the project in two parts:

First Part (really easy, I think).
1) In the homepage, the search engine, has not to show Tour Operator field.

2) In the homepage, the table of the result’s search engine has not to show Tour Operator field.

3) In email template you have to erase Tour Operator field.

4) In the homepage, the search engine, must to show 8 days as default instead of 7 days.

5) Date must be showed in Italian language.

6) In the table refferring to Tour Operator you have to add another field: “Profit margin percentage”

Second Part. Here you have to create a new php page LOGICALLY TEMPLATED better if builted in Ajax. At this time the admin section of the home page is divided in different page. I want one page that include everthing. Level access on the

page is reserved to administrator. It must use the vbulletin authorization. Here what I need:

1) A search engine like in the homepage that include Tour Operator (as it is now in the home page). This search engine is reserved just to administrator level access. The result of the search engine must show a table containing:
a) Date of departure
b) Name of the travel
c) Destination
d) Name of the hotel
e) Category of the hotel
f) Meals
g) Total days of the trip
h) Adult Price
i) Tax
l) Tour Operator’s name
m) Profit margin percentage (you have to add this field on the database, ref.first part step 6)
n)Profit value
The last two field (m,n) can be masked with a button option. Default are masked. The table can be sorted for:
a) Price
b) Profit value
c) Tour Operator
d) Total Days of the trip

2) A table with the x latest estimate did by the user. It must contain:
a) Name of the user
b) Phone number of the user
c) Tour Operator
d) Date of Departure
e) Destination
f) Travelmates
g) Details estimate
h) Total estimate.
I need the possibility to search estimate by date of estimate, number of estimate or user’s name and the possibility to print the estimate selected (I have a template yet for an email, you can use it).

3) Possibility to add offers (I have yet the script, but I need it in the same page. refer to http://www.viagginvidia.netsons.org/travel.php?do=addedittour) and its departures (I have yet the script too

http://www.viagginvidia.netsons.org/travel.php?do=adddeparture&tourid=2)

4) Admin section (I have yet the script, but I need it in the same page. You can found it on admin in microtravel section)

I need the possibility to show everythin in Italian (I will do then myself)

Ms Access Stock / Sales System

February 17th, 2010 Comments off

Project Brief for Microsoft Access Stock / Sales system

This project is for my client who runs a Scuba Diving shop. It’s to keep track of their stock and sales and make the correct profi calculations so they know how much tax to pay. It also keeps a track of their Qualified Scuba Diver members.

Stock interface must be able to:
- Record VAT on items at different rates (eg. 15%, 0%, 5%, 17.5%)
- Add / remove old / new stock items to the system
- Change the amount of any items at any time
- Change the price of any stock item at any time
- VAT changes can be done to several selected items at once
- Historical stock recorded information is not affected by current or future changes to the VAT rate
- Produce reports of stock levels and value at any time between 2 date ranges.
- Synchronize the stock items list and their excluding VAT prices with the Access Database

Sales interface must be able to:
- Record sales to customers including the VAT breakdown
- Allow the operator to choose an item being sold from the list of stock items from a drop-down
menu and enter a quantity being sold
- Allow the operator to search for stock items by beginning to type the item name, and the interface autocompletes what the operator is typing
- Produce reports of any sales within a start and end date range
- A report for a single day’s sales or the current day’s sales with the minimum of mouse clicks
- The net income and total VAT are shown on all sales reports

Write A Program That Uses Bitw

January 31st, 2010 Comments off

Declare int number = 128;

Programming Project 1264984028

January 31st, 2010 Comments off

Declare int number = 128;

Bitwise-manipulation Operators

January 28th, 2010 Comments off

The file must be called Prog3.java

Ensure you include ALL files required to make your program compile and run.

Please submit .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.

Overall Requirements

This project introduces bitwise-manipulation operators (&, |, <<, >>, >>>, ^, and ~), which are not discussed elsewhere in the book. The bitwise-manipulation operators perform simultaneous bit manipulations and enable programs to process large quantities of binary information efficiently. Use a conditional operator.

The binary & (and) and | (or) operators can implement bitwise

Categories: Java Tags: , , , , , ,

My Bitwise-manipulation Operat

January 27th, 2010 Comments off

Requirements Comments are REQUIRED; flow charts and Pseudocode are NOT REQUIRED. Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.
This project introduces bitwise-manipulation operators (&, |, <<, >>, >>>, ^, and ~). The bitwise-manipulation operators perform simultaneous bit manipulations and enable programs to process large quantities of binary information efficiently. This project is here because the solution uses a conditional operator.
The binary & (and) and | (or) operators can implement bitwise

Categories: Java Tags: , , , , , ,

Auditorium Rental Via Web 2

December 18th, 2009 Comments off

The project consists of an online calendar to make bookings, the owner has an auditorium with all audio-visual systems.

this is the system flow:
1. If anyone wants to rent the auditorium, that person should separate hours on the website. To make a booking, the person must first enter your data, such as name, surname, telephone and email. Then select the hours and the person places a title for the event. also may select if need some equipment such as video projector and audio system, etc..

2. the system automatically sends an email to the person and the operator. In the email must appear the cost of renting the auditorium. The price varies as required (projector, audio..)
The system put on a label on the calendar as RESERVED. (This tag will be deleted automatically within 2 days if the person has not made payment for the rental of the auditorium.)
The administrator can change the expiration time.

3. once the operator knows that the payment was made for the rental of the auditorium the operator marks the event as paid. The system sends an email to the person and the operator to inform the reservation was paid, and the label that appears on the calendar changes automatically using the event title.

requirements:
php, mysql, joomla can be used
the design is not required only that the program works

thanks..

Auditorium Rental Via Web

December 9th, 2009 Comments off

The project consists of an online calendar to make bookings, the owner has an auditorium with all audio-visual systems.

this is the system flow:
1. If anyone wants to rent the auditorium, that person should separate hours on the website. To make a booking, the person must first enter your data, such as name, surname, telephone and email. Then select the hours and the person places a title for the event. also may select if need some equipment such as video projector and audio system, etc..

2. the system automatically sends an email to the person and the operator. In the email must appear the cost of renting the auditorium. The price varies as required (projector, audio..)
The system put on a label on the calendar as RESERVED. (This tag will be deleted automatically within 2 days if the person has not made payment for the rental of the auditorium.)
The administrator can change the expiration time.

3. once the operator knows that the payment was made for the rental of the auditorium the operator marks the event as paid. The system sends an email to the person and the operator to inform the reservation was paid, and the label that appears on the calendar changes automatically using the event title.

requirements:
php, mysql, joomla can be used
the design is not required only that the program works

thanks..

Fifty Chat Buttons Needed

September 23rd, 2009 Comments off

Hi,

I need 50 live support chat buttons designed. See these two pages for examples.

http://www.providesupport.com/product/chat-icons.html
http://www.volusion.com/livechat_free_icons.asp

I need lots of different variations of design and colors. I need some real fresh professional designs. In addition each design must have an “online” and “offline” version. Therefore actually I need 100 total graphics.

I want them to be different by color, operator and design. They are NOT to be industry specific. I need most of the buttons to have the most popular colors so that they can be used by most websites

Need Experienced Chat Operator

September 18th, 2009 Comments off

This is a Adult Dating or Webcam site we are looking for signups to….

Duties:
-Talking to new potential clients on an MSN/Yahoo messenger style platform. Convincing them to join a site for a date or for webcam…
- Client must enter information into site provided.
- Ability to multi-task between several conversations going on at once.
- Ability to act like a member of the site promoted.
- Ability to engage in mature chat for this is a adult website..
- These are Free memberships that require credit card for age verification to enter site…and for dating a safety precaution.

There is ONE trial day to see how many signups you will do..If you dont get any you ARE NOT HIRED….
Min per day is 10 signup’s plus…

In PM please leave you experience and what sites you have worked with…We are only looking for experienced…also provide me with how many signups you can aver a day…

DONT BID IF YOU HAVE NEVER DONE THIS TYPE OF WORK BEFORE….EXPERIENCED ONLY!

Printer Interface

July 17th, 2009 Comments off

I own several printers that are used to rapidly print mail addresses from a file. The printers use PCL-5 commands. I am looking for someone to design a user interface that allows a non-skilled operator to read from the data file and print the information. The interface will allow the operator to choose selected records based upon operator input (i.e., all records, record # to record #, etc.)

Interface must be capable of running on a PC (XP and Vista).

Data file may originally be in .dbf, .txt or .xls format, but will be converted to whatever format is best for PCL-5 use.

Webbcam & Chat (livejasmin)

June 4th, 2009 Comments off

I require a site that will be almost a 100% clone of livejasmin.com.

Please post bid for how much it would cost with script, design and delivery time.

Specifications/Requirements:
Streaming video software – PHP/MySQL system – adult pay per minute videochat site. Streaming video software should include all the key capabilities needed, a complete user login system, ecommerce support, accounting records and back-office reporting.
Features List:

MAIN PAGE: View Online/Offline Models, along with their thumbnail image and a short info: username, age, localation, spoken languages.

MEMBERS:
- Member Registration with account validation link sent by email
- Member Login (password is encrypted in the database). Password recovery.
- Member Control Panel:
Update Profile:
Update Profile section allows you to modify any information related to your account. Either your profile, email or password, they can all be changed there
Virtual Wallet:
Virtual Wallet is the section where you can see your current balance, and where you can buy credits to spend on private shows and recorded shows. Members with a virtual wallet balance greater then Zero can stay in public free chat for unlimited time.
Any adult payment gateway can be integrated in order to upload funds to the site.

My favorites:
My favorites is the place where you can see if your favorite models are online/offline, and have a fast access to their shows. You can choose to be notified by email/sms when a favorite model comes online.

Browse Shows:
Take your time and search for models that you like, choose between several categories. In each category you can see Online models as well as Offline models. Once you find one open it up and view it in the Live Chat Interface. Here you can:
- See / Hear the model in free public chat
- Turn model Sound On/Off
- View your Account Balance, Free Time Left, and the Per Minute Rate of the model
- View members in the free public chat room of the model
- Add Money to your account
- Start a Private show where you are the only one who can see the model performing. Private shows are billed per minute (each half minute), the rate can depend from model to model, also the income percent between model / site owner or model/studio operator/site owner. Money are taken off your virtual wallet.
- Start a 2-way Private show, which is similar to private show, with the addition that the model can see your webcam as well and also hear you.
- Give a Tip to a model, you choose the amount.
- Add the model to your Favorites
- View model’s Schedule
- See the model’s Profile and Photo Gallery for free. If your account balance is zero you can see only 6 photos, if you you have money in your account you can see unlimited pictures in the gallery.
- See model’s Recorded Shows. Each recorded show has its own fixed price that you have to pay to view it. You can see a free preview of a few seconds to have an idea of what you should expect of.

Private Sessions:
History of your viewed private sessions
See how much free time you have left and in how many hours it is reset.

MODELS:
- Model registration: User info, Personal Info, Uploading of Photo ID scanned image,Thumbnail photo image, Profile info, Payment details,performer contract uploading, Terms &amp; Conditions approval.
- Model login (password is encrypted in the database). Password recovery
- Model Control Panel:
Payments:
View Account balance, Total Earnings, Total paid, Earning percentage, Cost per minute, Total time spent in private shows, Minimum Release Amount, Payment History, Private Shows History.
Update Profile:
Update Profile section allows you to modify any information related to your model account. Either your thumbnail picture, user information, profile, personal and payment info, they all can be changed here.
Broadcast:
- Start Broadcasting which will turn you Online for members browsing for models. Stop Broadcasting will turn you Offline.
- Turn your Sound On/Off
- Chat with members in the Free Public Chat, where they also can see and hear you
- View Members in the free public chat room, as well as their Account Balance in brackets, so you know who to speak more with, in order to convince members with money in their accounts to go on private.
- Perform a Private or 2-Way Private Show, if a member requests it. View the member’s cam in a 2-Way Private Show.
- Receive Tips
- See your Account Balance, Per minute price, and Earnings in this session
Upload Picture:
Allows you to upload pictures in your personal image gallery.
Rules Page:
The rules and instructions for the model
STUDIO OPERATORS:
- Studio Operator Registration: User, Personal and Payment Info. Account validation link sent by email
- Studio Operator login (password is encrypted in the database). Password recovery
- Model Control Panel:
Update Profile:
Update Profile section allows you to modify any information related to your account. Either your profile, user or payment information, they can all be changed there

Add Model:
Add a model to your studio operator account. The model registration form is similar to the Individual Model registration form described above. Models registered under your Studio Operator account will share revenue with both you and website owner. You will received a fixed percent of your models revenues.
My Models:
Watch your model’s activity with this tool.
Payments:
View Account balance, Total Earnings, Total paid, Earning percentage, Minimum Release Amount, Payment History, Private Shows History.

ADMINISTRATION:
- General Info
Shows number of Total Registered Models, Models awaiting approval, Broadcasting models, Members in chat rooms.
- Live Supervising Interface
Allows the administrator to:
o View live all undergoing Public and Private shows of a model, including the text chat and present members list. Its purpose is to check if a models or members are following the terms and conditions of the site, and act appropiatelly (banning, removing, etc..) otherwise
o View the recorded shows of the model, and change their price individually
o View all chat logs by date and time
- New Models
View newly registered models, and approve/reject them, as well as choosing their per minute rate and percentage.
- Payments Section
Make payments to the models and studio operators, or view the history of already made payments
- Members List
Allows the administrator to browse through existing member accounts and perform different operations like:
- View the total amount of money deposited in all member accounts
- View the balance of each member
- View profile of each member and its status
- Delete a member account
- Block/Unblock a member account
- Send e-mail to a member
- Manually deposit money in a member account
- Manually remove money from a member account
- Models List
Allows the administrator to view different model-related statistics like Total Model Earngings, Total Site Earnings, Total Model Balance (not paid), Earnings in the last 7 days. Also the administrator can browse through existing model accounts and perform different operations like:
- View the total earnings for each model
- View the site earnings generated by each model individually
- View the earnings in the last 7 days for each model
- View the balance of each model
- View profile of each model and her status, as well as if the model is individual or belongs to a studio operator
- Delete a model account
- Block/Unblock a model account
- Send e-mail to a model
- Set the earnings percentage for each model
- Set the per minute rate for each model
- View the photo ID picture and models uploaded performer contract
- Studio Operators List
Allows the administrator to view statistics like Total Studio Earngings, Total Site Earnings, Total Balance (not paid). Also the administrator can browse through existing Studio accounts and perform different operations like:
- View the total earnings for each Studio
- View how much each Studio was paid so far
- View the percent of a Studio
- View the balance of each Studio
- View total time spent by a Studio’s models in private chat
- View profile of each Studio and its status
- Delete a Studio account
- Block/Unblock a Studio account
- Newsletter
Send a newsletter to all:
- Paying Members
- Models
- Studio operators
………………….

Categories: Graphic Design, Script Installation, Security, Website Design Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Write A C++ String Class

April 1st, 2009 Comments off

Simple char * and wchar_t * handling c++ stirng class.
===========================================================

TERMS:
========
We will test your code before making payment. And keep testing until you achive all mentioned functionality (below). Most importantly there must not be any memory leaks (if any found in future, you will fix them). If you alreay have example c++ class send us to test, even if is some opensource, we will surely make payment if it meets our needs + very good review.

PROJECT DESCRIPTION:
==========================

We need a simple C++ class that has capabilities of handling type “char *” as well as “wchar_t *” (whide characters) string. Operators in class must be writen in a way that they must allow + operator to be used for concatenation of either char *, wchar_t *, and/or class itself. Secondly it must have 2 operators one for casting class object to (char *) or (wchar_t *). Class name must be String, and may be derieved std::wstring. Additionally class must have operator [] which will return type “char”. And one additional wchar operator [] must also be supplied sepaately. Examples are provided below.

Expected Constructors:

Constructor prototype Example

String operator = (char *); String s = “Johny”;
String operator = (wchar_t *); String s = L”Johny”;
String(char *) String s(“Johny”);
String(wchar_t *) String s(L”Johny”);
—————————————————————————–

Friend operators possibilities:

String s1(“Johny”);
String s2(” Bravo”);
String s3(” Runs”);

s3 = s1 + s2; //results Johny Bravo
s3 = s1 + “XX”; //results JohnyXX
s3 = “XX” + s1; //results XXJohny
s3 = s1 + L”XX”; //results JohnyXX
s3 = L”XX” + s1; //results XXJohny

s3 = s1 + s2 + s3; //results Johny Bravo Runs

s3 = s1 + ” X ” + s2 + ” X ” + s3; //results JohnyX BravoX Runs
s3 = s1 + L” X ” + s2 + L” X ” + s3; //results JohnyX BravoX Runs

—————————————————————————–

Casting operators possibilities:

Operator prototype Example

operator wchar_t * () wchar_t * test = (wchar_t*)s3;
operator char * () char * test = (char*)s3;

PLEASE DO NOT BID IF YOU DO NOT HAVE VERY GOOD EXPERIENCE OF C++, AND I IWLL IGNORE IF YOUR BID IS GREATER THAN MY BUDGET.

Help Desk Software

March 30th, 2009 Comments off

I want help desk software with tickets and knowledge base. Admin and option to add support operators. Admin can select whether registered users will have free support with period of time; or paid support using PayPal payment link. Admin will be able to select payment option from days, weeks, months or year. Free period in days, weeks, months or year. Admin will be able to set $fee based on time period.

When time period expires, email will be sent to user notifying him of payment needed to continue support.

Operator will indicate time used. Time used and unused support displays on interface for admin, operator and user. Whether free or paid, time for support is calculated based on operator timecard.

Admin can setup categories and assign support operators to one or more categories. Standard notifications via email.

POP email import feature. Export name and email feature.

Option to write automatic test messages for new registrant.

Option to draw from Knowledge base based on subject/keywords in ticket.

When users register, user selects product or category that the support is requested for. Based on selection, a free period or paid period will be visible. User can rate tickets upon completion.

Tickets will be store for X number of days. Flood protection included, ban by IP, User name or domain.

A clean design. Simple with the option for admin to modify CSS, head and footer.

PHP and mySQL. Possibly Javascript or Ajax. Must include installation wizard.

Common sense features most help desks have.

I am on a tight budget and ask for low price on this first of 3 projects.

I need one flat fee. No additional fees. State fee and time to complete project. I want to test before final payment. Please let me know what you suggest and your requirements.

Thank you very much for your bid.

Web Application Update

March 30th, 2009 Comments off

Hi,

i have a full project based on Code Charge Studio 3.2 with all project files, i want to update them by adding some functionality and by removing some others.
I sell Mobile Phone contracts and i use the script for store all appointements with clients and assign them to all my agents.

In particulary the application offer 3 different access: Administrator, Call Center Operator and Agents.

1. The Call Center Operator calls by phone all possible interested customer and fix appointments.
2. For each appointment the Call Center Operator creates an entry on the system by inserting all customers datas and insert the appointment on the calendar.

3.The administrator can see all fixed appointment and assigns to each one an available Agent. After the assignment the system submit to the agent a notification by email.

4. Each agent can access to a private area where can see on his agenda all his appointemets.

5.After the appointment with the customer one Agent have to modify the status of the appointment [see figure 2 - scheda_1.jpg]: we have 3 possible STATUS: OK ( is the customer buy some contracts), KO (if not) and PENDING ( if the customer want some time for made his decision )

6. If the status is OK, the system ask the agent about numbers and type of customers subscriptions

FIRST NECESSARY UPDATE: actually the Administrator by using a “Manage Type of Subscription” [see figure 1 - scheda_1.jpg] can insert different type of plans….i want to remove this option because require too many time and the names of the plans vary every months.

So i want that the agents after setting status of the appointment to OK will be not prompted by the system about the name of each sold contract as now [see figure 3 - scheda_1.jpg] ( now the agent has to select the type of the plans from a drop down list and for each plan has to specify numbers of solded SIM ). I want a simple Text area where the agent can write the name of the offers and 3 dedicated fields where the agent can specify the number of solded SIMS CARD [see figure 4 - scheda_1.jpg]

SECOND NECESSARY UPDATE: i want an update to stats system that now isn’t working and that will be in any case necessary after the previous modifications. Actually the stats system display textual data, if you are able could be very good integrate a visual chart library in flash or ajax for display visually the stats.

I can supply full Code Charge Studio Project that can be loaded on Code Charge Studio with a freeze of my database.

For get more details please contact me.

Codechargestudio Script Update

March 21st, 2009 No comments

Hi,

i have a full project based on Code Charge Studio 3.2 with all project files, i want to update them by adding some functionality and by removing some others.
I sell Mobile Phone contracts and i use the script for store all appointements with clients and assign them to all my agents.

In particulary the application offer 3 different access: Administrator, Call Center Operator and Agents.

1. The Call Center Operator calls by phone all possible interested customer and fix appointments.
2. For each appointment the Call Center Operator creates an entry on the system by inserting all customers datas and insert the appointment on the calendar.

3.The administrator can see all fixed appointment and assigns to each one an available Agent. After the assignment the system submit to the agent a notification by email.

4. Each agent can access to a private area where can see on his agenda all his appointemets.

5.After the appointment with the customer one Agent have to modify the status of the appointment [see figure 2 - scheda_1.jpg]: we have 3 possible STATUS: OK ( is the customer buy some contracts), KO (if not) and PENDING ( if the customer want some time for made his decision )

6. If the status is OK, the system ask the agent about numbers and type of customers subscriptions

FIRST NECESSARY UPDATE: actually the Administrator by using a “Manage Type of Subscription” [see figure 1 - scheda_1.jpg] can insert different type of plans….i want to remove this option because require too many time and the names of the plans vary every months.

So i want that the agents after setting status of the appointment to OK will be not prompted by the system about the name of each sold contract as now [see figure 3 - scheda_1.jpg] ( now the agent has to select the type of the plans from a drop down list and for each plan has to specify numbers of solded SIM ). I want a simple Text area where the agent can write the name of the offers and 3 dedicated fields where the agent can specify the number of solded SIMS CARD [see figure 4 - scheda_1.jpg]

SECOND NECESSARY UPDATE: i want an update to stats system that now isn’t working and that will be in any case necessary after the previous modifications.

I can submit full Code Charge Studio Project that can be loaded on Code Charge Studio with a freeze of my database.

I hope to find people for a long term collaboration. If this update will be accomplished correctly i will have others update and modifications requests for the same system.

Bear