Programming Java / Php/ C++

Programming Java / Php/ C++

Further Detail in the Attachments and Links will be provided once the situation would be understandable:
An EGovernment Project Example
Project is divided like that: Work flow, database , Graphical user interface,
What is the requirement?
Basically you have to build the system? And you have three kind of actor
Delegator
Delegeti

And the last one could be the government or could be a Bank or something like that. And so basically Delegator has a list of ( he have the right to think my Tax declaration, he have the right pay by his bank account I have the right to do that kind of thing and for some reason delegator want to delegate Delegeti which is just another person or company or whatever basically in your application the Delegator must say or must be able to O.K I want to delegate that rights to that Guy You select the right and you say O.K?
Then the Guy receive the message this one want you to delegate that`s right ! Do you accept or do you refuse ? And if he accept he get the right ? If he don’t that guy keep his right? What is the controller?
If you talk about the right it would be the government , tax office of the Government , if he have to right to pay money to the bank account it would be the Bank, so that Guy Delegeti has the right can use the money from the Bank account or he can feel the Tax declaration of that Guy and send them to the government so basically that Guy can make a delegation So it should have a list of price and delegate this one that this one but not this one or whatever it want and we can revoke at any time, this guy can accept or refuse the delegation and he can also revoke the delegation ,
The work flow is the important part we have to concentrate on it at first place. You have actor then you have right then you have some kind of action or you could have

Easter Egg Script

Easter Egg Script

I need a small script that will allow an easter egg hunt on our site.

Basically it should allow me to take an image hide it somewhere on my site and when clicked on it should forward them to a contact page where they can enter their information and send it to us.

After the egg has been clicked it should disappear.

Also the url should be dynamic so people cannot just enter a url and win. They must have to find the egg.

If you have any questions feel free to contact me. Thank you.

Flash And Php Cms 2

Flash And Php Cms 2

Hi,
I would need someone who could set up a script that wil allow changing text to a small site.
You can have a look at the site at http://fullmoonparty.com.ar . What needs to be dynamic is the text you see on the left , party date, then on the “next party” section , the text to announce next party.
Not european so not big budget but more small jobs in future.
Thank you

Minor Website Repairs Needed

Minor Website Repairs Needed

I have a website that was designed/developed by someone else. Their customer service after project is now done is non-existent. I have 2 things that I need fixed asap on the site. One is a FAQ that needs to be removed and the other is a page that was sent to the developer initially as a word doc and now needs to be replaced with a new word doc. Project is done in PHP and ASP.net.

Looking for someone to have a long-term relationship with that can make minor changes to site in the future.

Prestashop Template Adjustment

Prestashop Template Adjustment

Hello,

Im in need of a programmer failiar with PHP, CSS and template files for theme based Prestashop Ecommerce software.

I need help with modifing an existing template file that lists my products currently in list format. I want them in a grid format just like the template does for my homefeatured products. I simple tried copying the homefeatured.tpl file and renamed it to product-list.tpl and my products were showing perfectly in a grid view in all browsers except IE. Any ideas how to make it work in IE? Please contact me for further details im working with a small budget, if you can easily repair this im willing to pay 25.00.

Thanks,

Url Meta Extractor Script

Url Meta Extractor Script

Hello,

I am looking for someone to build a small simple script or pay to direct me to one pre-built if any.

A script where I can place one url per line like:

http://www.amazon.com
http://www.golf.com
http://www.letsdance.com
http://www.dogs.com
..

The PHP script would visit and extract the Meta elements like Title, Description and Meta keywords.

The results would end up in a .txt file that I can use to assist with building a website directory. I thought it would be a time saver.

The end result .txt file would look like:

http://www.amazon.com|Amazon.com|The earths biggest bookstore|toys, electronics, gifts, dogs,ipad

so first field url, 2nd title, 3rd is description and 4th is meta keywords.

I saw a little tip here at:

http://www.webmasterworld.com/forum40/1546.htm

I am not looking for anything fancy just a tool that will read a url list, grab info and save into a text file

Yellow Pages Website

Yellow Pages Website

Hi

i need Yellow pages website.

Please review Below links.
www.searchcity.com
askme.in
yellow.co.nz

I Prefer Someone company organization. Who have Great Knowledge Of yellow pages, Using Classes/Function ,Ajax , UI interface , Search engine Friendly, Gud And clean code in PhP+ MYsql , Prefrer Zend Framework With in gud time limit. Unique mockup desgin. Web 2.0 css+html , Jquery , Yui ,Ajax, Lightbox, Thinbox for login Form

thanks

Php Aweber Plugin Modification

Php Aweber Plugin Modification

I am using a Plugin for AWeber called List Machine (a free software given out by Frank Kern earlier)

I have installed it on the site for testing, please have a look here and enter your email to get to the next page.

http://www.kennelsearch-offers.com/signup.php

Once you get to the next page you will see a link, to be used to email it to 3 other people and invite them to subscribe as well.

We would like to simplify this process (and will send a copy back to Frank Kern out of gratitude for the original work), and have the following:

1.
Modify the script to have 3 text fields for email addresses all underneath each other, no longer one manual link to be picked up for referring – too complicated.

2.
Be able to modify the email text in the backend, so that all referred contacts receive our email copy with one “SUBMIT” click .

3. Continue the flow, so that once the 3 invitees have confirmed their subscription, the first person who started off, can then access our second tier offer page.

If you run through the process you will see that most of it is already there.

I will send through the plugin as well as a link to the video to fully understand how it works.

Turnaround 3 days, budget $50

Please only experienced PHP champs apply, thank you for your consideration.

Warm regards
Uwe

Simple Sql Search Modification

Simple Sql Search Modification

I need a revised search string for the following:

There are two tables TRACKER and HISTORY. The TRACKER table contains unique liens for items and the HISTORY table has lines that record the location history for each item in the TRACKER table. I will provide both tables after selecting a programmer.

I need a search to tell me which barcodes are in a certain location at any given time. Below is the search that someone else made for me.

$trackerdb is the TRACKER table
$historydb is the HISTORY table

$result = mysql_query(”
SELECT DISTINCT h.barcode, h.location, $trackerdb.*
FROM $historydb AS h
LEFT JOIN $historydb AS h2 ON h.time < h2.time AND h.barcode = h2.barcode
INNER JOIN $trackerdb ON h.barcode = $trackerdb.file_barcode
WHERE h2.time IS NULL AND h.location LIKE ‘” . mysql_real_escape_string($_GET[‘find_location’]) . “%’
ORDER BY h.time DESC;
“);
if (!$result) { include(“./dberror.html”); }
$num_rows = mysql_num_rows($result);
echo(“<DIV class=’maintext’>Found ” . $num_rows . ” file(s) in location ” . $_GET[‘find_location’] . “<BR>”);
if ($num_rows == 0) {
echo(“Unable to find any files”);
exit(); }

The problem is it is not displaying accurate results. I think this is because is uses a LIKE parameter and the historical location information has places like “Chirs A.” “Chirs D.” “Christoper”

When I need to see what is in the location Chris D. it will return items with Christopher.

I need the search argument changed so that it will correctly output only the barcodes from the TRACKER that are presently in the searched location.

Payment escrow is ok. Payment only released when code is tested working ok.

Php Sofware Web Adjustments

Php Sofware Web Adjustments

I purchased software sometime ago in which i had someone customize. All the work had not been complete and i need a few adjustment made. as far as
*activating logo that should be embedded in video player,
*adding facebook, twitter, youtube, myspace icons on homepage,
*homepage the featured videos (two) keeps rotating with other videos that are not supposed to featured.
*Logo of company should be placed inside of each page in which video are viewed when clicked on.
*Date of each video section needs to be fixed, last programmer just left date to change each day instead of video date posted.
similar to worldstarhiphop

Onlinemarketpoint.com Clone

Onlinemarketpoint.com Clone

I need a complete clone but much better design and logo. OMP(onlinemarketpoint.com) One thing I don’t want contest section. I have basic idea about PHP so no cheater are allowed to bid. Its an urgent project, I will choose some good bid in 5days.

Please provide your similar portfolio, and mention the words “MILAN” in your bid or the bid will be ignored.

Thanks and happy Bidding

Customized Guestbook W/ Admin

Customized Guestbook W/ Admin

I need a customizable PHP guestbook script that will add entries to a MySQL database. Also an output system that will be held in the main html site to display all the approved entries. A search function that will allow users to search by the different fields. And a Latest Entry system that will display the latest entry added to the db.
I will also need an Admin section that allows access to the database entry information (add/edit/approve/delete). Also the ability to add/edit/delete fields within the guestbook entry. And I will need the option of an email to be sent to the admin whenever a new entry is added with links to approve/edit/delete the entry from the email.

This is a personal project/hobby so my budget isn’t large.

Please contact me if you require more info before bidding.

Perl Script

Perl Script

Need simple script that passes an MySQL id, makes query and parses content using a remote remote template. Content=question and answer within FAQ database. Prefer it be done in Perl, but PHP will work.
Template already complete and the script that passes the ID already working. I have a script that for this, but for some reason no longer functions. Prefer the script stand-alone as much as possible (minimum required Perl modules).

Convert To Multi-user Site

Convert To Multi-user Site

I currently have a fairly simple FAQ site that uses a mysql database.
I was designed for one user to input information into the questions. I want to change the site so that it can accomodate multiple users.

That means it must have a simple account system built into it so that one can:

create a basic account (current database must be modified to accept user id etc.)

make a paypal payment via monthly subscription, I will provide priceing details. This will happen when creating the account.

log in the site using their user id

add their own questions via an existing form.

save the info to the database. when the month is up, they will be sent an email that they are being billed for a new month or the must cancel.

Upon receipt of your bid, I will allow access to the site. Ask questions and modify your bid as necessary before I award.