Animated Intro Page

Animated Intro Page
I Need A Animated Intro Page Like:
http://www.unrealtournament.com/us/main.html?month=June&day=2&year=1987&x=62&y=17

For My Site:
http://bioprotege-inc.sytes.net/roleplay_realm/#General_Rules.php

Like how the 3 lines drip down and then come flat like the ground i like that for my site

it would be like the white crossed backgrounds on my site be like the red on the given example on the site i showed as an example

and the border around the 3 lines be like #a6a6a6 and have the same look and feel as the animation on the given example so itmatches my templat

And need an logo and under that an enter button nd a script made so that under the enter button there be 2 check marks one check mark would be skip intro for a week and the other one would be like Skip intro for a month so the user if he dont want to watch the intro every time he comes in he dont have to

and id like the animation on the enter button to me like the mouse over on this site http://www.templatemonster.com/flash-templates/27322.html but w/o the red borders and such just how it floats up and blurs down and has cool bubbles or something coming from it id like the mouse over on my enter to be like that but match the site

and we can talk about project later i can send you a logo idea later once the animation on the 3 line drop down is completed

want to know more talk in my pmb!!

Photo And Video Gallery Site

Photo And Video Gallery Site
Need to implement a PSD website. The site has video and photo gallery. Need to be able to upload the video and photo in FLV in admin.
Series – is a collection of albums
Albums – is a collection of either photos or videos
Additional features include:
-In front page show the latest 4 video albums
-Video player page to show and select videos for each album
-Photo viewer page to show images with thumbnail scrolling
-There will be 2 gallery areas, one for members and one for guests
-Able to add detail to videos and photos such as Title, Subtitle, Description, Date
-Able to set “publish date” for content to go live
-Automatically create watermark to photos
-Search feature
-Total of 10 pages
– User area and admin area needed

You will be provided with:
-All PSD files
-Formal documentation for site
-diagrams of site
-Deadline: 14 days

Transcribe Exercise Video

Transcribe Exercise Video
I have an exercise DVD that I would like to have transcribed into a text document of descriptive exercise instruction.

Exercise DVD is approximately 30 minutes in length, with 5 basic exercise moves that I would like transcribed in detail. DVD has video segments of different exercise moves, to transcribe / describe in full detail.

Project must be by person who understands, reads and writes English in correct grammar, spelling, and with good form. Understanding of exercise, movement, kinesiology and body mechanics highly recommended.

Can provide more detail if needed.

Photo And Video Website

Photo And Video Website
Need to implement a PSD website. The site has video and photo gallery. Need to be able to upload the video and photo in FLV in admin.
Series – is a collection of albums
Albums – is a collection of either photos or videos
Additional features include:
-In front page show the latest 4 video albums
-Video player page to show and select videos for each album
-Photo viewer page to show images with thumbnail scrolling
-There will be 2 gallery areas, one for members and one for guests
-Able to add detail to videos and photos such as Title, Subtitle, Description, Date
-Able to set “publish date” for content to go live
-Automatically create watermark to photos
-Search feature
-Total of 10 pages
– User area and admin area needed

You will be provided with:
-All PSD files
-Formal documentation for site
-diagrams of site
-Deadline: 14 days

Page Editor & Admin

Page Editor & Admin
PHP – html editor & admin

Client is adding a very simple feature to his website. He currently has two pages (news & specials) that he is always adding to. He likes the format of listing a thumbnail, title and small description in row view linked to its own page for further expanded details.

An admin control is needed to add/edit/delete or paginate the row view of thumbnails, titles and descriptions for both the new page and the specials page.

Then

Within that admin offer a HTML editor so any person he chooses to update his site can easily “drag and drop” , change fonts, add photos, preview before publishing and/or just be creative to edit the area of the page that will contain the expanded new or special.

Each expanded page will be generated from the script and will have editable meta tags and hot links.

All controls including pagination, tags and content need to be in one easy admin area.

here is what is needed:
one Admin control
2 pages (news and specials) adminable creating the row view as described above.
Generated pages for each title linked from the row view page.

((( Bidding criteria / Winning Bidder / Deadline: )))

This project has a 30 day deadline.

Auto Bids or bids with statement such as “Can be done” will be banned forever.

Please look at the attachments carefully before bidding.

Must be available M-F business hours U.S. east coast time.

Must be available during business hours (see above) for daily on MSN during the project (((NO EXCEPTIONS)))

All work will be done on our server – no exceptions

Do not cut and past ANY previous example of links that do not relate to this type of project.

Payment – No exceptions

1/3 at 50% point and balance upon completion

½ of initial payment will be escrowed immediately.

Please read our reviews, We don’t play games and we pay very well. However payment are our on our terms and will NOT Alter.

Most important – Please read Carefully:
This project has a 30 day deadline if this is not something you can focus on then do not place a bid.

My Sql App Password Change

My Sql App Password Change
I would like a MySQL coder to assist me ‘step by step’ true my code to make sure that my old coder doesn’t have access to my SOL application true a master passord. If so change it.
Right now i can change my password any time, but i suspect he has a Master code.
You will not have any access to my SQL database, but we can chat, and i can copy paste any text. So the coder should know what i’m talking about.

Php Switch/case From Files

Php Switch/case From Files
Let me explain what I am after…

Right now, I have 1 php file with sections of code in a switch / case structure.

I have a drop down where you choose the chart you want to “run”.

That selection sets the “action” for the switch statement and the code block resides in the case block terminated witn an exit();

I want to break out each block of code in the case and save it to a file say “some chart that does something.php.inc” and the files will reside in a dir say ./charts

I was also thinking of having a companion file of the same name but with either a “.xml” (If you think XML is the way to go) or “.conf” (If a simple text file will do)

So now I have the “container” php file with all the setup of libs etc and functions.
At runtime, I envision reading the “./charts” directory and read each “config” file for the needed information to later build a “dynamic” dropdown AND “include” the “.inc” files holding the code so when done, it works as if it was all in one file like it is now.

So if I have 25 charts in the directory, the dropdown will have 25 choices and the title and value came from the “conf” file and be able to execute the proper “case” as it did before.

Here is a “before” psuedo look at the single file method I have now:

<?php
/*==========================================================================*\
|| # ——————————————————————– # ||
\*==========================================================================*/

define(‘LOCATION’,’admin’); // <- Ignore this
require_once(‘./../../functions/config.php’); // <- Ignore this

// Auto-load all of our classes
include_once(‘config.inc.php’); // <- Ignore this

.
.
.
switch ($action)
{
case ’01’: // <- Value from “config file”
// ########## CHART 01 ####################################
// Right now, this holds the code to generate this “chart”
// I would like to “INCLUDE” this code here from external
// file and execute it.
break;

case ’02’: // <- Value from “config file”
// ########## CHART 02 ####################################
// Right now, this holds the code to generate this “chart”
// I would like to “INCLUDE” this code here from external
// file and execute it.
break;

.
.
.
}

// This is where we build the list of Charts

// Chart 01
$reportaction = ‘<select name=”action” style=”font-family: verdana”><option value=”01″‘; // <- Value from “config file”
if (isset($system->GPC[‘action’]) AND $system->GPC[‘action’] == ’01’) // <- Value from “config file”
{
$reportaction .= ‘ selected=”selected”‘;
}
$reportaction .= ‘>Chart01 </option>’; // <- Value from “config file”

// Chart 02
$reportaction .= ‘<option value=”02″‘; // <- Value from “config file”
if (isset($system->GPC[‘action’]) AND $system->GPC[‘action’] == ’02’) // <- Value from “config file”
{
$reportaction .= ‘ selected=”selected”‘;
}
$reportaction .= ‘>Chart02 </option>’; // <- Value from “config file”
// Chart 03
$reportaction .= ‘<option value=”03″‘; // <- Value from “config file”
if (isset($system->GPC[‘action’]) AND $system->GPC[‘action’] == ’03’) // <- Value from “config file”
{
$reportaction .= ‘ selected=”selected”‘;
}
$reportaction .= ‘>Chart03 </option>’; // <- Value from “config file”
.
.
.
.
// Chart 10
$reportaction .= ‘<option value=”10″‘; // <- Value from “config file”
if (isset($system->GPC[‘action’]) AND $system->GPC[‘action’] == ’10’) // <- Value from “config file”
{
$reportaction .= ‘ selected=”selected”‘;
}
$reportaction .= ‘>Chart10 </option>’; // <- Value from “config file”
$reportaction .= ‘>’.'</select>’;

// “$reportaction” holds the final dropdown”
// I need to build this dynamicaly from external “conf” files
// from “./charts” directory

// Various common functions follow below this point
.
.
.
?>

I hope this gives you a good idea of what I need to accomplish.

True PHP experts only please!

Thanks

Oscommerce / Zencart Icecat

Oscommerce / Zencart Icecat
Project title: Oscommerce / Zen Cart / Magento distribution connector with ICEcat.biz ( i have attached the details in word doc)

We are electronics company e-commerce website. I would like to move our current store to zencart / oscommerce or Magento shopping cart. we already have hosting package and would like to know how we can integrate… we work with top distributors to download our products… and our main concern is we would like to download all products details from ICEcat.biz site, which offers FREE products content.

this is how we want…

from our supplier we will have our custom price feed which include, the followings:

* SKU#
* MPN#
* Manufacturer
* product title
* category
* short description
* Images

from ICEcat.biz we want the following:

* Product Specification
* Full descriptions
* UPC code
* Images

The Description from ICEcat will be presented in the description tab
The images from ICEcat will be presented in the description tab
The Specification from ICEcat will be presented in the Specification tab
The product reviews from ICEcat will be presented in the reviews Tab.
(if available on ICEcat)

I don’t want to download duplicate proudcts, meaning I want the same product from my supplier and then that product details, specification, images from ICEcat.

I would like to upload new products from a distributor data feed
At the end of the project I expect to receive a data feed in TXT or CSV format

Purposes

This Project is intended to automate product import from multiple distributors into a Magento / Oscommerce / Zencart environment.

Project planning

1. Distributor automated imports
1.1 Mapping interface (manufacturers/categories)
1.2 Import interfaces
1.2.1 Synnex
1.2.2 Ingram
1.3 Distri import dashboard
1.4 Distributor selector
1.4.1 Backoffice: setting up rules for distributor selection
1.4.2 Import system: finding the best match across distributors
2. Content import from ICEcat
2.1 XML import of product datasheet & Sync mechanism to update product data
2.2 Product comparison functionality
2.3 Product lookup functionality
3. End-user price calculation module
3.1 Price rules interface
3.2 Price calculation mechanism
4. Real-Time stock & price check
4.1 Distri interfaces for real-time P&A
4.1.1 Synnex
4.1.2 Ingram
4.2 FrontOffice P&A check integration (AJAX driven, no pop-ups)
4.3 BackOffice P&A check integration into Purchase Advice
5. Purchase Advice Module
5.1 Create & save purchase advices
5.2 Consolidated purchase advices
6. Electronic ordering at distributors
6.1 Generic ordering mechanism
6.1.1 Synnex
6.2.2.1 Order
6.2.2.2 Status feedback and shipping advice
6.1.2 Ingram
6.2.2.1 Order
6.2.2.2 Status feedback and shipping advice
7. Initial environment setup
7.1. Custom look&feel design
7.2. Implementation in Magento
8. SEO optimization
8.1 URL Rewrites
8.2 Titles, meta tags (incl description and keyword) optimization
Basic points

Offers automated import

The purpose is to fully automate product offers import from distributors. Further extension of imports with adding new distris should be simple enough.

Import will need to have some mapping capabilities, which should be interfaced in the backoffice of the Magento. ICEcat can provide a categorization advise in most cases, but you have to be compatible with ICEcat category structure, which is multilevel and derived from UNSPSC. The same stands for manufacturers list.

Interface/screens required:
– Map vendors (from distri data into standard vendor)
– Map categories (from distri data into standard category)
– Distri import status screen (import dashboard)

Distri selector module

In case of multiple distributors connected, this module will be needed to resolve ambiguities in product assortment and optimize product coverage in shop.

It will create a best products selection, based on distri selection rules. Rules can sounds like:
– Find the best price among [SELECTION] offers

Where [SELECTION] could be defined by parameters:
– Manufacturer / Any manufacturer
– Category / Any category
– Partnumber

Assortment in the environment will be refreshed after every successful import job and / or in the end of batch session timeframe. Batch session timeframe = time when assortment updates in shop isn’t significant, e.g. from 01:00 till 07:00. This is to lower the server load.

Interface required:
– Distri selector rules input

ICEcat content import module

Content import module will import content from ICEcat XML repository. It will put it into a local database, and data will be shown on product details page.

Data to be imported are:
– Product names / descriptions
– Images / gallery / multimedia
– Specification
– Related products (x-selling / up-selling data)

Currently no backoffice interface is supposed for this data management, existing data storage tables should be used as much as possible.

Data will be stored in local database in a well-structured form, suitable for lookup and product comparison.

In the frontoffice there should be a possibility to compare selected products (in one category) and to find products matching certain criterias.

As soon as no backoffice for data management is supposed, all search settings are to be re-used as they are setup in ICEcat (ICEcat provides certain defaults, as you can see in www.icecat.biz)

The search will be filter-based – a user will have possibility to create a product filter based on:
– manufacturer
– stock (yes/no)
– price breaks
– Specification (search breaks will be based on ICEcat searchable features)

End-User Pricing

End user price is calculated on “Purchase price + Margin” model.

Margin could be calculated by a rules, which are defined in a backoffice. Rules format is
– If [CONDITION] then marge = [MARGE DEFINED]

Where a [CONDITION] is a combination of:
– Purchase price condition ( purchase price between A and B)
– Vendor = [A | Any]
– Category = [ A | Any]
– Product code = [A | None]

“A” is a parameter, as defined in rules setup. Rules are to be managed from a backoffice.

Real-Time stock & price check

As distributors provide interface for real-time Price and Availability (P&A) check, it could be implemented in front-office and backoffice to provide the real-time info on request.

In frontoffice it will be integrated via a link, which will start AJAX request for an update. Server will perform the parallelized requests to distributors and return the result to user page. No popups here, only a stock quantity will be updated and during a check there will be an indicdation that the request is currently in progress.

Purchase advice module

Purchase advise module should give a best economically efficient advice on ordering, on following parameters:
– Product price
– Shipping costs
– Product availability
Formalization of the computational task is:

order amount with stock > 0  max

purchase amount + order costs  min

This is an integer-valued multiple dimension multiple criteria task, which solution will cost a lot of CPU power(all possible combinations has to be checked to find the best alternative.

Before the purchase advice generation, stock / price information is validated at distributor.

a. Drop shipments
Dropshipments should have an individual advice (per-order)

b. Collection point orders
Module should create a shared consolidated purchase advice for all sales orders waiting for purchase

Purchase advice can be customized by shop manager & saved customized.

As soon as purchase advise is generated and accepted, orders status is changed so orders don’t get an advice more then once.

In the backoffice, the integration with real-time P&A is possible– to have the most up-to-date information, Purchase Advice module will automatically request P&A info on items which are to be purchased. This is to have the most up-to-date information for Purchase Advice creation.

Interface required:
– Sale orders list to PA
– PA preview
– PA management:
o Status flow
o Distri feedback
o View PA data (delivery info, order info)

Electronic ordering at distributors

As soon as purchase advice is verified by shopmanager, it could be automatically sent to distributor and purchased.

Each distributor have it’s own interface, so a “driver” for every distributor is required.

After order will be sent to distributor, it will be put on a status meaning “Purchased”. This is to avoid double orderings.

If during ordering an error happened, it will be put on special status “Error in upload”, which would indicate a problem in order upload.

Status feedback functionality will pickup data from distributor and import them into environment, so status handling data will be visible.

Initial environment setup

This involves creation of own look & feel design and customization of standard Magento templates to your own branded look & feel.

That includes custom look & feel graphical mockups creation. They will be approved by you, and then frontpage look and feel will be adjusted to match the mockups.

SEO optimization

Every category page and product detail page can be automatically optimized for a better SEO ranking:

• The page title and meta tags (description and keyword) will be customized
• URL will be adjusted in the following way: category.website.com/(subcategory)-mpn.html (or –productname.html)

There will be a possibility to optimize titles, meta tags (inc descriptions and keywords) for all category/product pages through BackOfficce.

Export to Google Shopping / Google Sitemaps

Export to google shopping / google sitemaps can be performed on a daily basis, automatically. The export file will contain information about all “in stock” products.
Efforts and costs estimation
Below are the rough costs & efforts estimation for the functionality as described above.

Item | Phase I
1. Distributor automated imports
1.1 Mapping interface (manufacturers/categories)
1.2 Import interfaces
1.2.1 Synnex
1.2.2 Ingram
1.3 Distri import dashboard
1.4 Distributor selector
1.4.1 Backoffice: setting up rules for distributor selection
1.4.2 Import system: finding the best match across distributors
2. Content import from ICEcat
2.1 XML import of product datasheet & Sync mechanism to update product data
2.2 Product comparison functionality
2.3 Product lookup functionality (filters)
3. End-user price calculation module
3.1 Price rules interface
3.2 Price calculation mechanism
4. Real-Time stock & price check
4.1 Distri interfaces for real-time P&A
4.1.1 Synnex
4.1.2 Ingram
4.2 FrontOffice P&A check integration (AJAX driven, no pop-ups)
4.3 BackOffice P&A check integration into Purchase Advice
5. Purchase Advice Module
5.3 Create & save purchase advices
5.4 Consolidated purchase advices
6. Electronic ordering at distributors
6.2 Generic ordering mechanism
6.2.1 Synnex
6.2.1.1 Order
6.2.1.2 Status feedback and shipping advice
6.2.2 Ingram
6.2.2.1 Order
6.2.2.2 Status feedback and shipping advice
7. Initial environment setup
7.1 Custom look&feel design and proofpaging
7.2 Implementation in Magento*
8. SEO optimization
8.1 URL Rewrites
8.2 Titles, meta tags (incl description and keyword) optimization
Export to Google Shopping / Google Sitemaps

Php Wishlist Script

Php Wishlist Script
What I need is a script written in PHP that will allow registered users to create their own wishlist.

First a user will need to click a link on a the navigation menu that states “Create a wishlist,” I would then like this to take them to a form where they create the title of the wish list. Each member should be able to create more then one list if they choose.

After it has been created they now get an option to “Add an item” to the wishlist. When one goes to add a item the following fields need to be available for the user to fill out..Title, Item Description, Estimated Cost, Primary URL(where they can post a link to the item they want), Secondary URL, Quantity Requested, and finally a drop down box for Priority of item (nice to have, i really want this, thinking about it).

Once the user submits this it gets added to their wishlist and is viewable by other registered members. This is the tricky part, I then want users to be able to cross items off of each others lists (like when they purchase the item and want to mark it so others know not to get it.) but while other users can view that the item that has been purchased the original user who posted the item cannot see that the item has been crossed off. The point of this is so that the person who posted the item will not be able to see what he is getting if he were to look at his list.

As items get crossed off I want them to stay on the lists but just be marked as purchased.

If this is hard to comprehend please check out the drupal module “wishlist” the demo is here.. http://wishlist.mclewin.com/

I love how that module works but I do not want to have to use drupal. (http://drupal.org/project/wishlist)

You can even download the wishlist module and use that as a basis for this project if it will help.

I can provide more detail and even screenshots of how I will want this to look if you need it.

Credit Point System For Joomla

Credit Point System For Joomla
I NEED THIS WITHIN 6 HOURS!

I have a joomla website that allows members to purchase memberships to view a web cam. I need a credit system setup that will:

1. Allow members to purchase credits.

2. Allow members to earn credits.

I also need the webcam software “Webcam XP” setup.

I pay on time and give bonuses to good, fast work. If you have a good reputation here at scriptlance and you do a good job here, I will send plenty more work your way. Lets go!