Modifying My Flv Player

Modifying My Flv Player
Hi all,

Well i am going to be using a flv player for a website, however it needs to be able to display mid-roll text ads (similar to youtube’s player) which displays the link, title, description and possibly a picture (just logo sized). And that the player gets this info from an xml file or php and mysql. I have all the .fla files so just wondering whether it will be possible to do. feel free to pm about any of you ideas or if you want some more specifics.

Thanks

Combine 2 Php Scripts Together

Combine 2 Php Scripts Together
Hi there

I have 2 scripts that i want combined into one.
Previous work has been done on both scripts, so i can login to them with one password from admin area.

What i need done is intergrate both scripts into one, with one setup process.

At the moment i have to setup 2 database`s to install both scripts, but would like to just have one.

I have complied a sample setup page of what i would like it to look like.

I have a 2 day deadline to get this sorted out, starting from the moment your bid is accepted and a small budget.

Payment will be made as soon as i have seen a test site, that i can actually setup and login to.

The person who starts this project will need to contact me for a license to be issued, so that they can setup thtest site for me, the software will not work without me setting up a license, from my main domain.

I hope this can be done…

Thanks

Gaming Multi-user Website

Gaming Multi-user Website

Hi,

We are trying to accomplish a project. When it is done, you could register and use a CMS solution with your own domain. Think about wordpress.com in which you get something like yourblogname.wordpress.com.

We already have the CMS solution, based on a custom portal and a phpBB forum.

Which we need is the webpage for registration in which you could enter your own information and then, enjoy your product. We even have the scripts which work to clone the “demo” site and more code. That’s because we only will offer the service localized in Spanish and this product already exists on other language.

If more code and explanation were needed, we could try to provide it from the original service from which we are partners.

We thought to use Joomla as the platform to register just because it’s open source, we know how to work with it and also it provides some great options to show news, have community and such kind of things. However, if you have another idea of what to use (even a custom CMS) it shouldn’t be a problem for us.

The service will run in Linux (Debian) with MyDNS to stablish the DNS and have custom urls on the fly.

In short, the developer must have PHP, MySQL and Linux skills.

Dedicated 2010 Developer Asap

Dedicated 2010 Developer Asap
Greetings,

PLEASE BE SURE TO READ BELOW CAREFULLY-

I am looking for a DEDICATED web development specialist to work on a super project which will be a social video network site-
I already have the script so I only need a re-skin and about 30% of customisations, meaning the script already provides 70% of whats needed.

You MUST have general all-round skills in the most common areas.
You MUST be dedicated to TIME and AVAILABILITY- meaning I am really looking for someone who works from home preferably or small office and has a lot of time generally to dedicate to my project.
I am NOT looking for someone who cannot be seen available online mostly.
You MUST NOT have any other daytime jobs-
PLEASE NOTE: I will be looking for a constant update of work being carried out, at least every 2hrs- If you are NOT prepared to be dedicated DO NOT BID…

You MUST answer YES to all 4 questions below to bid and for me to respond: DO NOT BID IF YOU HAVE ANSWERED (NO) TO ANY ONE OF THESE QUESTIONS.

1) ARE YOU AVAILABLE NOW TODAY???
2) ARE YOU AVAILABLE FOR AT LEAST THE NEXT 2 WEEKS???
3) ARE YOU SURE THAT YOU WILL BE ONLINE ON CHAT AT MOST STAGES THROUGHOUT THE DAY???
4) ARE YOU 100% SURE THAT YOU HAVE THE SKILLS REQUIRED???

Please also tell me WHY? I should choose you???

Thanks

Google Ranking For Joomla Si 2

Google Ranking For Joomla Si 2

For one of our clients we have a Joomla website of about 50 pages. Now we want the website to be better found in Google and the source of the pages is already filled with keywords. We would like to have:
– The website found by Google when corresponding keywords are used (since the market isn’t very big in the business of this webiste that shouldn’t be hard)
– Google analytics inserted

WordPress Blogs Setup

WordPress Blogs Setup
This should be a really easy job for someone with wordpress experience. I have 5 websites that I need wordpress installed on and plugins set up on.

I will provide the list of plugins, login information, settings, database information etc so they can be set up.

I will also provide the themes that I want each to use.

$50
Time for completion 48 hours.

Joomla Fix And File Updating

Joomla Fix And File Updating

My site uses CMS Joomla and has suddenly stopped functioning properly and thus cannot preview or edit in joomla. In additional, the flash and map integration function in the website that was working before is not linked or working properly now.

Looking for an expert who is qualified and secure to revise the site which includes: fixing and updating the site to latest joomla version, installing various add-on to increase security, and fine tuning joomla to work properly.

Exclusive Free PSD Templates for Premium Members

Exclusive Free PSD Templates for Premium Members

We’re going to try something a bit different this week for our Premium members. I have three exclusive, and fantastically designed PSD web templates available, built by the very talented Dany Duchaine. Help give back to Tuts+ by signing up for a Premium account.

Each of these three PSD themes are fully-featured, containing at least five subpages. If you’re ready to build your next website, but aren’t much of a designer, one of these templates, exclusive to our Premium members, will surely do the trick!

A&D
A&D
A&D

Join Net Premium

NETTUTS+ Screencasts and Bonus Tutorials

For those unfamiliar, the family of TUTS sites runs a premium membership service. For $9 per month, you gain access to exclusive premium tutorials, screencasts, and freebies from Nettuts+, Psdtuts+, Aetuts+, Audiotuts+, and Vectortuts+! For the price of a pizza, you’ll learn from some of the best minds in the business. Sign up for a Premium account!



The Intricacy of Simplicity: CSS3

The Intricacy of Simplicity: CSS3

Ever wondered how a particular effect was achieved in a web design, and, after zooming in several clicks, you found that the author added several subtle shadows, borders, gradients, etc? In the past, this was achieved simply by slicing out an image, and setting it as a background of some element. Luckily, with CSS3, we can be afforded much more flexibility. Now, while the code for such a simple effect might be a bit tedious, it’s well worth it, and that’s what we’ll review in today’s written and video quick tip!


Video Version

Rather watch this screencast on Screenr.com?


Text Version

It’s amazing that something this simple requires that much code, but, it’s not too rough, and can easily be abstracted away to a snippet for future use.


Step 1. Create the Mark-up

To make our project as cut-and-paste as possible, we’re only working with an empty div. Create a new index.html file, and paste in the following:

<body>
     <div id="box">

	</div>
</body>

Step 2. Create the Canvas

Next, we’ll add some basic styling for the body element. This is just for the presentation, and can easily be removed. Within style tags in your header, add:

/* Nothing special here. Just the canvas. */
body {
	width: 500px;
	margin: 60px auto 0;
	background: #666;
}
Body Styling

Step 3. Styling the Box

Now, we’ll create our box, supplying a width and height.

#box {
	/* Just a box */
	width: 500px;
	height: 500px;
}
Box

Step 4. Rounded Corners

We should all know about CSS rounded corners by now. Let’s go ahead and implement that.

/* Rounded corners */
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
Rounded corners

Note that we’re also supplying the final spec, of “border-radius,” in addition to Mozilla and Webkit’s versions.


Step 5. Border Colors

Mozilla offers a handy property, called “-moz-border-*-colors.” This allows us to set an infinite number of colors for a border. To achieve a subtle “double-border” effect, let’s implement this property.

/* Set a base border and color */
border: 2px solid white;

/* Multiple border colors in Gecko */
-moz-border-top-colors: #292929 white;
-moz-border-right-colors: #292929 white;
-moz-border-bottom-colors: #292929 white;
-moz-border-left-colors: #292929 white;

Note how the number of colors we supply are the same as the border width that we set at the beginning (2px). Also, don’t place commas after each hex value; I made that mistake at first!

Border Colors

Step 6. Compensating for Webkit

To the best of my knowledge, webkit doesn’t currently support border-colors, though it’s possible that I’m wrong. If I am, please leave a comment and let me know! Anyhow, to mimic this effect as best as we can in Safari and Chrome, we’ll use box-shadow.

/* Compensate for Webkit. Not as nice, but works. */
-webkit-box-shadow: 0 -1px 2px #292929;

Note that the provided values refer to the X offset, Y offset, blur, and shadow color, respectively. By passing -1px as the Y offset, we can push the shadow upwards.

In Safari

Step 7. CSS Background Gradients

The final step is to supply a subtle background gradient for our box. However, we must be sure to provide a fallback solid color for the browsers that don’t support CSS gradients.

/* Background subtle gradient, with fallback to solid color */
background: #e3e3e3;
background: -moz-linear-gradient(top, #a4a4a4, #e3e3e3);
background: -webkit-gradient(linear, left top, left bottom, from(#a4a4a4), to(#e3e3e3));

Unfortunately, Mozilla and Webkit don’t quite agree on the syntax for gradients, which makes the process extra irritating. If it’s too confusing, you can use a new service called CSS3 Please to auto generate each browser’s syntax; it’s very cool!

Final Product

You’re Done!

It’s amazing; looking over our final image, it’s hard to tell what we actually did! But this is a good thing; subtlety is key in all aspects of design. Thanks for reading/viewing!


Final Code

/* Nothing special here. Just the canvas. */
body {
	width: 500px;
	margin: 60px auto 0;
	background: #666;
}

#box {
	/* Just a box */
	width: 500px;
	height: 500px;

	/* Rounded corners */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;

	border: 2px solid white;

	/* Multiple border colors in Gecko */
	-moz-border-top-colors: #292929 white;
	-moz-border-right-colors: #292929 white;
	-moz-border-bottom-colors: #292929 white;
	-moz-border-left-colors: #292929 white;

	/* Compensate for Webkit. Not as nice, but works. */
	-webkit-box-shadow: 0 -1px 2px #292929;

	/* Background subtle gradient, with fallback to solid color */
	background: #e3e3e3;
	background: -moz-linear-gradient(top, #a4a4a4, #e3e3e3);
	background: -webkit-gradient(linear, left top, left bottom, from(#a4a4a4), to(#e3e3e3));
}



Html Slicing For Joomla Page

Html Slicing For Joomla Page

I have an EASY to do slicing for and HTML joomla landing page.

This really is an easy to do project and should be fast for someone who knows what they are doing.

This page consists of text, a few graphics, and an easy to install javascript snippet for the aweber webform. (Plugin required for Joomla to use the javascript).

This really is an easy, straight forward project.

PLEASE NOTE:

—- EXPERTS ONLY!!! ——

THIS NEEDS TO BE 100% to my satisfaction. I need it to look exactly like the provided .psd file.

Feel free to PM with any questions you may have.

Thanks!