Frame Pages

Frame Pages
I have an advertising section on the site where members can read newsletters and earn points. They are suppose to read the ad for 30 seconds before they can claim any points.

I would like to update the site so instead of just making them read the ad for 30 seconds I would like to force them to visit the site for 30 seconds.

The top frame will include the 30 seconds timer and then the other frame will load our webpage or whatever it is we’re advertising. When the 30 seconds timer runs out, they will click a confirmation button in order for them to be credited.

So when they log into the members area, go to their inbox, and click on the ad they’re about to read, it should then load the page into this frame page and load the URL that is being advertised in the frame right below the timer. This should probably open up in a new window.

Thanks! Any questions please ask. I would like this started on as soon as possible.

I will select the winning programmer within 30 minutes to 2 hours so please stand by and ready to start if I select you.

Cup Creator

Cup Creator
I need you to create a system that I can use on various websites. This system must give my customers the ability to create a custom coffee mug, and then view the finished coffee mug in 3-D.

I want this program to work and look like cafepress but have more of the functions like zazzle installed here…

http://www.zazzle.com/custom/mugs
http://www.cafepress.com/designer/mug/

Go to the page above, and click on the “Create Mug” link. Everything that you see there is what I want to replicate in my new program.

Also, as I said, I want to give my clients the option to view there finished coffee mug in 3-D.

If you are familiar with this kind of work, and can do this for a very, very reasonable price, then please contact me.
I found a similar program on YouTube, Below….
YouTube

Domain Listing Script

Domain Listing Script
Hello,

We require a script (preferably written in PHP) which lists all domains hosted on a cPanel server.

We had a script several years ago which did this using the WHM Remote Access Key. It was only a few lines long, very simple.

Features:
Display total number of sites
Must be either real-time or use an automatically updated database
Each domain must be hyperlinked and open in a new window
Pagination
Multi-Server Support (list generated from multiple servers)

Any questions please don’t hesitate to ask.

Regards,
Richard

Convert WordPress Theme

Convert WordPress Theme
Hello,

I have a developer licence for city guide wordpress theme(http://www.woothemes.com/2010/03/cityguide) and I need to do some changes to the theme.

I need to create in the homepage , 12 positions (side by side),two in the TOP, above the MAP, with high visibility, and the other 10 positions, above.You can see a good example in the site (http://www.dog-shopper.net) , I want to show the listings has they show the products in the Dog-Shop. In the image “Popular choice” , It will show how much each listing payed.

The backofice must give me all the control has a bidding directory.
I also need to make some small changes to some fields.

I need someone with good flexibility, because this is a project that I don´t have the all picture now. I am not english native, but I think that you understand me.

Please , just bid if you know that you can do this. Don´t waste my and your time.

Building The Physical Model

Building The Physical Model
Lab 3 of 7: Building the Physical Model

Your assignment is due by Sunday, end of week, 11:59 p.m. (MT). Submit your assignment to the Dropbox located on the silver tab at the top of this page. For instructions on how to use the Dropbox, please click here.

L A B O V E R V I E W
Scenario/Summary

Beginning with this lab, and continuing through the remaining weeks you will be doing all of your work in Oracle itself. The editor interface to the Oracle server is SQL*Plus, and by now you have received your logon id and password and should have at least made sure you can connect. If for any reason you have not done so, please do so now before continuing any further. If for any reason you cannot connect then you need to let the instructor know ASAP so that any problems can be resolved.

Before attempting Lab #3, you need to be sure you have read through the SQL*Plus tutorial which can be found in Doc Sharing as well as under the SQL*Plus Tutorial tab in Week 3. This tutorial describes the functionality of the editor and will step you through the process of setting up and using the SQL*Plus in the iLab environment so that it will best serve your needs for the remainder of the labs required for this course.

The lab for this week addresses taking a logical database design (data model) and now transforming that into a physical model (tables, constraints, and relationships). As part of the lab, you will need to download the ZIP file titled “Lab 3 Support Document” from Doc Sharing. This ZIP file contains three documents: Lab 3 Relationship Diagram.doc, Lab 3 Meta Data Diagram.xls, and Lab 3 Input Data.doc. Your job will be to take the meta data defined in the data dictionary spreadsheet document, and using the relationship diagram as a guide define the table structures and constraints using both CREATE TABLE and ALTER TABLE statements. Once this has been done, you will need to write the INSERT INTO TABLE statements to insert the data provided into the table. The data should verify that the constraints you have created are valid and define the correct referential and data integrity constraints asked for.

Narrative/Case Study

For this lab you be working with command-line SQL to build a series of relational of tables, using SQL CREATE statements in a script file format for the Student Database and then populate those tables through the use of INSERT statements with sample data.

You will need to create a script file and name it mystudentdb.txt containing the following code:

The drop table statements listed later in the specifications of this lab.
The CREATE TABLE statements required to build the seven (7) tables.
The INSERT statements necessary to insert all of the sample data.
Seven select statements to verify that the data is in the tables and accessible.
To help you accomplish this task successfully you are being supplied with the following three documents which can be found in the Doc Sharing tab on the course web site:

A Relationship Diagram of the database showing in graphical form the 1-M relationships between the tables (336_Lab3_Relationship_Diagram.doc).
A Meta Data chart providing information about table names, column names, etc. Be sure to follow this reference exactly when constructing your CREATE TABLE statements (336_Lab3_Data_Dict.xls).
A listing of sample data to use when writing the INSERT statements to populate the tables (336_lab3_input_data.doc).
The following guidelines are being provided to help assist you in creating your script file:

Create the tables in the order shown in the data dictionary. Use the names for the tables and columns as listed in the Meta Data chart – DO NOT CHANGE THEM AS IT WILL AFFECT YOUR GRADE.
Creating CONTRAINTS –
Create all constraints as indicated in the data dictionary.
Constraint prefixes must be as follows:
Primary key constraint – PK
Foreign key constraint – FK
Check constraint – CC
Explicitly name all constraints PRIMARY KEY, FOREIGN KEY, and CHECK constraints to reflect:
ConstraintPrefix_TableName_ColumnName (For example, to name a PRIMARY KEY constraint on the SID column in the student table you would use PK_STUDENT_SID.)
For this lab you do not have to explicitly name NOT NULL constraints
Create all PRIMARY KEY and NOT NULL constraints within the CREATE TABLE statements at the column level (line level), unless the Primary Key is a combination Primary Key (yes, there is one). Combination Primary Key constraints must be created at the table level.
Create all FOREIGN KEY and CHECK constraints at the table level using ALTER TABLE statements.
All constraints must be added prior to populating the tables with data.
Create all of the tables and all of the constraints before populating any of the tables with data.
Insert statements must be in the same order as the tables are created (follow the order in the sample data file).
ALL character strings must be enclosed in single quotes. This includes alpha strings and alphanumeric (remember that any formatting within a numeric strings makes it alphanumberic).
If you are inserting a NULL, do not enclose the word NULL in single quotes, as this will insert the word NULL into the row. To insert a null you simply use the word NULL.

Deliverables

The deliverable for this lab will include the following documents.

Your script file. Make sure your name is in a comment area at the top of the script file.
Your lab output file created using a spool session in SQL*Plus. Be sure to use the SET ECHO ON session command when creating the output files so that both the SQL commands and results will show in the output.
Be sure your name is on all documents and that all documents have been included in a single ZIP file for this weeks assignments.

L A B S T E P S

STEP 1: The DROP statements

The following DROP TABLE statements must appear at the top of your script file. This will allow you to run and re-run your script file as often as you need to. The first time you run your script file you will get an ERROR on the drop statements say the Table or View does not exist. This is true since it has not been created yet, but the error is more informational than anything. After the first time you will not get this error again.

DROP TABLE ENROLLMENT CASCADE CONSTRAINTS PURGE;
DROP TABLE COURSE_SECTION CASCADE CONSTRAINTS PURGE;
DROP TABLE COURSE CASCADE CONSTRAINTS PURGE;
DROP TABLE TERM CASCADE CONSTRAINTS PURGE;
DROP TABLE STUDENT CASCADE CONSTRAINTS PURGE;
DROP TABLE FACULTY CASCADE CONSTRAINTS PURGE;
DROP TABLE LOCATION CASCADE CONSTRAINTS PURGE;

STEP 2: The CREATE TABLE statements

Next, define the CREATE TABLE statements for the seven tables that you are to create based upon the ERD and Data Dictionary that you have been given for this lab. Be sure to follow the guidelines given above on how and where to create the different types of constraints for each table.

STEP 3: The INSERT statements for the data

The final step of the lab will be to create the insert statements to insert the sample data into the tables created in Step 2. You might find it helpful to take the word document containing the sample data and save it as a text file. After doing this you could create the insert statements around the actual data that is in that file. The process for doing this should have been cover in one of the lectures for this unit. If it was not then ask your instructor to discuss this process with the class.

STEP 4: Testing and verifying your script

Now we come to the point of verifying that your script file works by creating all of the tables and inserting all of the data. To verify this you will need to create a output file and capture the results being returned to the session by using the spool COMMAND outlined in the tutorial “Using Oracle SQL*Plus”. This output file will be one of the files you will be turning in for grading.

This is the end of lab #3

Fix Php Website Error

Fix Php Website Error
I have a website to generate screenshot, and now the screenshots are not generated, and i have this error in log file:

PHP Warning: curl_setopt() [<a href=’function.curl-setopt’>function.curl-setopt</a>]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /var/www/vhosts/******/httpdocs/resources/inc/utils.php on line 1, referer: http://capturefullpage.com/screenshot.php

I look for somebody who can be able to fix it as soon as possible

Php Lance Website

Php Lance Website
I want a php lance website just like gaf( getafreelancer.com) or scriptlance. Even other such websites with database will work. I want it to be professional.
So plz bid only if you have done this before and show the sample of your work along with your bid. People with lowest bids have more chances of getting this project so a good rank is must. Also my budget is 75-100$ and so i m looking for a long time worker in my Company.
Rest details will be given on winning the bid.
-Entra Chief-

Page Restore

Page Restore
Hello,

I need to have my pervious search engine page put up. The code is on my server.. the previous programmer put up a different page on that url that should not have been there. He didnt finish restoring it. I need it restored completely asap with the correct footer and header that matches the rest of the site. Should not take long at all.

Modify Php Script

Modify Php Script
I hired a programmer to create a script for me that allows our users to develop electronic press kits (EPKs). The electronic press kits were created to work for models, photographers, musicians, directors, and writers. I need it to work for our business users as well. This requires some modification (or addition) of php code The site is based upon Phpfox 1.6v21. Having this experience would be helpful. This should be a quick job for someone who knows how to read php code, knows mysql and understands the phpfox content management system. Even if you don’t understand phpfox, it shouldn’t be too difficult, but you will need to search around the server directories to see where to manipulate the code. I need this done ASAP. Please respond only if you can get it done quickly.

Thanks.

Php Script Required

Php Script Required
1 – website 1 have databse of people and peopple search the data of birth manualy

step – 0 – submit first and last name and post code on website 1
step 1 – age found
step 2 – make year of birth with age found
step 3 – make manual search from 01 to 12 to find month
step 4 – make manual search from 01 to 31 to find days

all this human effort

so what i need is

linkage of a script that wil host on website 2 [coder created site] with website 1 and search all the steps i mentions above to reduce human effort .

more detail when scriptor contact me

WordPress Plugin – Q&a Game. 2

WordPress Plugin – Q&a Game. 2
I need a simple wordpress plugin, like and “arcade” game. No special design required:

It will be a questions and answers game with a scoreboard.

User:
+ Only registered users should be able to play.
+ Should see a question and be able to answer Yes, No or “I Don´t Know”. (these 3 answers should be editable by the admin, providing flexibility for different languages).
+ Points are given according to the answer.
+ If users make X errors the game is over.
+ Or the game will end after all the questions have been answered.
+ They should be able to see the top X results.
+ Scoreboard only shows the higher points of each user.
+ If possible, users should be able to play via handheld.

Admin:
– Determine how many times an user can play (including “no limit”).
– Create questions (including html support and no word limit) and decide if the correct answer is yes or no.
– There should be a limitless database of questions, freely editable at any time.
– Freeze the game, so no one can play (including the ability to schedule when (time or max points) the game will be freezed).
– Reset score button (with “are you certain…?” question before excluding)
– Select the number of maximum errors before the “game is over”.
– Select how many points (positive or negative) should be given to right, wrong and “I Don´t Know” answers.
– Select how many “top results” users should see.
– Should be able to see and edit all the results by the admin interface.
– Select registered users who should not be able to play.
– Questions should never repeat in the same “game”.
– The game will be shown where a code is present, no matter if in a page or post (like [gamename] ).

WordPress Plugin – Q&a Game 2.

WordPress Plugin – Q&a Game 2.
I need a simple wordpress plugin, like and “arcade” game. No special design required:

It will be a questions and answers game with a scoreboard.

User:
+ Only registered users should be able to play.
+ Should see a question and be able to answer Yes, No or “I Don´t Know”. (these 3 answers should be editable by the admin, providing flexibility for different languages).
+ Points are given according to the answer.
+ If users make X errors the game is over.
+ Or the game will end after all the questions have been answered.
+ They should be able to see the top X results.
+ Scoreboard only shows the higher points of each user.
+ If possible, users should be able to play via handheld.

Admin:
– Determine how many times an user can play (including “no limit”).
– Create questions (including html support and no word limit) and decide if the correct answer is yes or no.
– There should be a limitless database of questions, freely editable at any time.
– Freeze the game, so no one can play (including the ability to schedule when (time or max points) the game will be freezed).
– Reset score button (with “are you certain…?” question before excluding)
– Select the number of maximum errors before the “game is over”.
– Select how many points (positive or negative) should be given to right, wrong and “I Don´t Know” answers.
– Select how many “top results” users should see.
– Should be able to see and edit all the results by the admin interface.
– Select registered users who should not be able to play.
– Questions should never repeat in the same “game”.
– The game will be shown where a code is present, no matter if in a page or post (like [gamename] ).
– Admin should be capable of selecting between multiple sets of Q&A.
– Admin should be able to use more than one Q&A at the same time on different pages/posts. using something like [gamename1], [gamename2], etc.

**** NOTE ****
This is the second time I place the same project. At the first attempt, the programmer (Srinig) needed to abandon his projects due to personal difficulties, but he was kind and has given me the first 375 lines of code, so I can send you the files in the future if you agree in doing a discount price 🙂 .