Joomla Yoo Zoo And Zomsocial

Joomla Yoo Zoo And Zomsocial
I Need A Highly Experienced Php Developer That Knows Joomla! Yoo Zoo Component And JomSocial Component Inside Out!…

Pmb Me For Details But Take Time To Write The Message and Dont Send Auto Generated PMB’S

I Am A Developer Also Just Dont Know These That Well So You Will Be Working Along Side Me On My Server…

Thanks
Deepak

Blog Page

Blog Page
looking to create a simple blog with some sort of content auto feed, loaded up with ad banners in sneaky places ( looks like included in content), looking for a simple page that will get good google ranking, already have ‘keyword’blog.com just want to make money with traffic, don’t figure to be a very hard project, so please no crazy bids! thanks

Classifieds Ads Portal

Classifieds Ads Portal
I need a professional classifieds ads portal for multi country use, preferably with IP detection Technology for country identification with single domain , the site must be designed with SEO friendly URLs, Powerful and robust admin system and must be guaranteed bug free.

WHAT I NEED IS CLASSIFIEDS ADS PORTAL FOR:

1.advertising worldwide by state and cities.
2.Post ads in multiple cities and in multiple categories.
3.Business directory.
4.Forum using third party script..
5.Jobs area. 6.Events listing with calendar.
7.shop page for multiple listings.
8.Banners advertising management system for advertising banners by country , states and cities on home page or category pages.
9.Built in payment system.
10.Multi country use with IP detection Technology for country identification.
11.Seo friendly URLS
12.CMS must be Simple and easy to use.
13.Open source.
14.Preferably JAVA, PHP, MYSQL.
15.W3c validated.
16.Data entry for countries, states, cities and terms and conditions must be included in the price.
17.Installation to my host must be included in the price.
18.Google adsense integration to ads area

PLEASE READ THE FILE ATTACHED.

The site must be open source with crispier professional look, I will need full design done with heavy graphics designed with bright colours, I want a very up market crisp look that will appeal to all the advertisers who are typically buying and selling specialist items, It needs to be very simple and easy to use, also must be easily search able by major search engines and a fast loading site.

Please don’t ask me to visit your company profile or portfolio, just provide me links to 2 or 3 classifieds websites that you have developed and proven successful, you need to give me the user ID and password of the front and back ends of the website to prove those are developed by you.

I know some of you may already have the scripts ready, Please post fully functional demo, If you don’t have a demo please don’t bid your bid will be deleted, as I don’t wish to waste your time or mine.

Communication is the key so regular update is a must, Selected Bidder must be able to provide me with DAILY updates as well as links to previews designs every step along the way.

The winning Bidder will be required to sign NDA for the software and All open Source code and copyrights license must be included in the bid price.
No upfront payment will be made Escrow only.
any fees involved will be your responsibility.
Only bid if you agree with payment terms

I am fed up of time wasters , only bid if you are willing to show me a demo.

After the completion of the development and launch of this site, I will immediately give the winning developer first refusal for other project I have waiting a real estate site and also regular maintenance and major upgrades for this project, please mention �HONEST� to prove that you have read the whole description and terms.

Please provide me a complete proposal and Happy Bidding!

I am fed up of time wasters who can’t read and understand English, only bid if you are willing to show me a demo, and don’t bid stupid prices.

Please bid sensibly!

WordPress & Clickbank Website

WordPress & Clickbank Website
I am looking to hire you to setup sales-letter mini-sites in WordPress on ClickBank – please do not bid if you do not have WP sales letter websites and ClickBank experience.

You’d be provided with everything to get the job done = WP theme to use, all images and text, and access to all necessary accounts.

WordPress websites that I need set up, looks a lot like this one: http://howtopayzerotax.com/ = has an opt-in page, sales letter page, Payment page, 1-time-offer page, thank you page, and download page.

All this is done using WP Spire theme I provide.

Here are 5 main things that need to be done:
1. Upload WP & theme to server using provided FTP info
2. Set up & format all 7 main pages; opt-in page, sales page, disclaimers, 1-time-offer/upsell page, thank you page, download page, & affiliate page (all text provided). Important part here is to format sales letter correctly.
3. Connect/link the “opt-in page” and “thank you” page to provided autoresponder
4. Set up/register the website with ClickBank using provided account.
5. Create ClickBank & PayPal links using provided accounts and make use buyer is redirected to thank you page after 1-time-offer page.

This is an easy job for any WordPress guru who worked with sales letters.

I will pay $20 dollars for every WordPress mini-site setup, and can provide many repeat jobs IF turnaround is FAST. If you think it will take you more than 3 days to setup a wordpress site wit 7 main pages, please DO NOT BID.

I will pay via escrow immediately upon completion of website.

Thank you for taking the time to read my project. I really appreciate it.

Experienced Writer/s Needed

Experienced Writer/s Needed
I need a long term article writer/s for an upcoming weight loss campaign.

First to be short-listed I need you to complete a short 400 word ezine ready article using the keyword “best acai berry products”
with a compelling headline, article summary and a short bio box soft-selling a free acai berry weight loss trial offer.

As this is just a test to find a competent writer please place a bid of no more than $2 for this ONE article.

Later we can negotiate the cost for ongoing work.

The article must be unique, well written, informative, pass copyscape and compel reader to take action.

IMPORTANT: Please submit samples with your offer.

Special consideration will be given to those who have experience writing in the weight loss niche and many positive feedbacks

I will be selecting more than one writer for this project.

Thank you

Experienced Developer Php Cre

Experienced Developer Php Cre
We require an experienced developer who knows CRE/OsC well. We’ve several projects that we need completing on our website that require knowlege of PHP & API.

These include:

– Inventory feature w/ API links to our eBay listings.
– Registration security feature callback (API).
– PCI compliance.

Developer must be contactable via MSN/SKYPE & phone. Contact us via PM for further info. Please include examples of your recent work.

10+ regular expressions for efficient web development

10+ regular expressions for efficient web development

Validate an URL

Is a particular url valid? The following regexp will let you know.

/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \?=.-]*)*\/?$/

Source: http://snipplr.com/view/19502/validate-a-url/

Validate US phone number

This regexp will verify that a US phone number is valid.

/^(\+\d)*\s*(\(\d{3}\)\s*)*\d{3}(-{0,1}|\s{0,1})\d{2}(-{0,1}|\s{0,1})\d{2}$/

Source: http://snippets.dzone.com/posts/show/597

Test if a password is strong

Weak passwords are one of the quickest ways to get hacked. The following regexp will make sure that:

  • Passwords will contain at least (1) upper case letter
  • Passwords will contain at least (1) lower case letter
  • Passwords will contain at least (1) number or special character
  • Passwords will contain at least (8) characters in length
  • Password maximum length should not be arbitrarily limited
(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$

Source: http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=297

Get code within <?php and ?>

If for some reason you need to grab all the code contained within the <?php and ?> tags, this regexp will do the job:

<\?[php]*([^\?>]*)\?>

Source: http://snipplr.com/view/12845/get-all-the-php-code-between/

Match tel: urls

In a recent post, I showed you how you can use iPhone special link prfixes to automatically call someone.
This regular expression will match those tel: urls.

^tel:((?:\+[\d().-]*\d[\d().-]*|[0-9A-F*#().-]*[0-9A-F*#][0-9A-F*#().-]*(?:;[a-z\d-]+(?:=(?:[a-z\d\[\]\/:&+$_!~*'().-]|%[\dA-F]{2})+)?)*;phone-context=(?:\+[\d().-]*\d[\d().-]*|(?:[a-z0-9]\.|[a-z0-9][a-z0-9-]*[a-z0-9]\.)*(?:[a-z]|[a-z][a-z0-9-]*[a-z0-9])))(?:;[a-z\d-]+(?:=(?:[a-z\d\[\]\/:&+$_!~*'().-]|%[\dA-F]{2})+)?)*(?:,(?:\+[\d().-]*\d[\d().-]*|[0-9A-F*#().-]*[0-9A-F*#][0-9A-F*#().-]*(?:;[a-z\d-]+(?:=(?:[a-z\d\[\]\/:&+$_!~*'().-]|%[\dA-F]{2})+)?)*;phone-context=\+[\d().-]*\d[\d().-]*)(?:;[a-z\d-]+(?:=(?:[a-z\d\[\]\/:&+$_!~*'().-]|%[\dA-F]{2})+)?)*)*)$

Source: http://tools.ietf.org/html/rfc3966#section-3

Validate US zip code

When building a registration form, it is common to ask the user’s zip code. As forms are often boring, there’s a strong chance that the user will try to register false data. This regular expression will make sure he entered a valid American zip code.

^[0-9]{5}(-[0-9]{4})?$

Source: http://reusablecode.blogspot.com/2008/08/isvalidzipcode.html

Validate Canadian postal code

This regexp is very similar to the previous one, but it will match Canadian postal codes instead.

^[ABCEGHJ-NPRSTVXY]{1}[0-9]{1}[ABCEGHJ-NPRSTV-Z]{1}[ ]?[0-9]{1}[ABCEGHJ-NPRSTV-Z]{1}[0-9]{1}$

Source: http://reusablecode.blogspot.com/2008/08/isvalidpostalcode.html

Grab unclosed img tags

As you probably know, the xhtml standard requires all tags to be properly closed. This regular expression will search for unclosed img tags. It could be easily modified to grab any other unclosed html tags.

<img([^>]+)(\s*[^\/])>

Source: http://snipplr.com/view/6632/grab-any-unclosed-xhtml-img-tags/

Find all CSS attributes

This regexp will find CSS attributes, such as background:red; or padding-left:25px;.

\s(?[a-zA-Z-]+)\s[:]{1}\s*(?[a-zA-Z0-9\s.#]+)[;]{1}

Source: http://snipplr.com/view/17903/find-css-attributes/

Validate an IBAN

I have recently worked on a banking application and this one was definitely a life-saver. It will verify that the given IBAN is valid.

[a-zA-Z]{2}[0-9]{2}[a-zA-Z0-9]{4}[0-9]{7}([a-zA-Z0-9]?){0,16}

Source: http://snipplr.com/view/15322/iban-regex-all-ibans/

Validate a BIC code

Another one very useful for any banking application or website: This regexp will validate a BIC code.

([a-zA-Z]{4}[a-zA-Z]{2}[a-zA-Z0-9]{2}([a-zA-Z0-9]{3})?)

Source: http://snipplr.com/view/15320/bic-bank-identifier-code-regex/

If you’re interested in regular expressions, make sure you have read our “15 PHP regular expression for developers” post.

Like CatsWhoCode? If yes, don’t hesitate to check my other blog CatsWhoBlog: It’s all about blogging!

10+ regular expressions for efficient web development

Full-time Programmer

Full-time Programmer
Full-time, long-term, programmer and web designer needed.

Are you an enthusiastic, skilled and creative programmer and web designer? Do you love taking on new challenges and coming up with creative solutions to programming problems? Are you willing to work from home, yet be available to take part in team discussions by skype?

Then you might just be the new team member that we need.

We are a growing online company that is entirely virtual – that means that all our team members work from home. We currently have two full-time programmers and need to add a third and maybe a fourth.

We currently have an urgent need for a new project to be built. Once that is done, there will be plenty of ongoing work for you – from small tweaks to existing sites, to the creation of brand new sites and applications.

Essential Skills required include:

Excellent English skills. All communications with us will be in English, and all code should be well documented in English as well as using english names for variables.
Adobe AIR
PHP
HTML
Javascript & AJAX
CSS
MySQL
Familiarity with building and hacking WordPress plugins
graphic skills

Desirable Skills:

Internet Marketing
server maintenance (Linux )
familiarity with using SVN and TRAC
Flash
Java

The current task involves building an AIR desktop application that can interface with our online server and can visit other websites, present the captcha for the human user to solve, and submit to the other website’s onine web forms.

Since our heads of department are in British Columbia, Canada (Pacific time zone), we will need you to be available on skype during our normal work hours (give or take an hour or two at each end). This may mean that you are working nights in your time zone. This is essential, as otherwise communication is too difficult. We also expect you to NOT be working on other projects that might distract you from our work.

Pay is based on an hourly rate for a 40 hour week, plus we also offer profit sharing bonuses. And we will even pay you for upto an additional 5-hours per week of self-development time – you can use this time for any type of self-improvement: learning new skills or languages, improving your fitness, or enhancing your spirituality. All we ask is that you report to us with a weekly breakdown of your work and self-improvement activites.

You will be resonsible for your own taxes etc. In that respect you will be working as a contractor. However, all code or other intellectual property that you produce for us will be owned exclusively by us and will be resident on our servers.

If you are interested in a new challenge, please would to complete the following steps:

1. Send us a sample of PHP and javascript code that you have written as well as a resume of what you have done and what skill you have. Send us links to software, web designs, or writing you have created so we can see proof of your talents.
2. Create a short video cover letter. Record yourself speaking in a 3+ minute video and upload it to YouTube with the title Allegretto Cover Letter. Highlight your passions, motivations for applying, and your love for the internet. Tell us how your skills and expertise would contribute to this stellar team and convince us that you are the right person to join our team.
3. Give us a link to your video, and tell us your salary expectations.
4. As a final step, we will probably give you a very small AIR test project and will want to interview you by skype.

Any questions, please ask!
Please communicate through the PMB

Note: Please don’t worry about over-doing your video cover letter—the best cover letters we’ve seen were around 20 minutes. You don’t need special effects or any form of video editing (unless you choose to).

WordPress Thesis Theme Customi

WordPress Thesis Theme Customi
We are a Canadian-American Company with offshore office in the Philippines. We currently have our hands full and would want to outsource this project.

-We are in need of a designer/coder who will customize our Thesis theme for us. You should be creative and would be able to provide mockups for us to choose from. You have the liberty to create a design from whatever creative idea you have. We will be requiring that all the PSD files and other images that you will use on this project would also be submitted together with the finished work.

WE ARE LOOKING FOR THAT WOW FACTOR!!!

Please send us also your portfolio so that we can choose the right coder/designer for this job.

The full details will be disclosed to the chosen coder.

Happy bidding!

Fix Website Problems 2

Fix Website Problems 2
Hello I have a small website that a previous coder/designer left us hanging with after being paid for the job he didn’t complete it like promised and has caused me and my clients a massive amount of problems by not completing the job as promised I really need someone who can start work right now and help me work out numerous small issues on the site and also maybe help me make a WORKING wysiwyg editor to edit the pages with because he gave us one that is so buggy it doesn’t even work like he promised… I don’t have a very big budget as this is for a non profit site. so please if someone out there has a kind heart and can do this for 20.00 and help me knock the few remaining problems out today that would be much appreciated…

I need someone who is good in php/mysql as well as graphic design as far as editing images and correcting image related issues like changing the text on a header for example or re making the header using the proper images if need be to correct the header text..

Php Script Small Change

Php Script Small Change
Hi,

I use the attached PHP script for sending a user to a certain page once they have subscribed. I want all the features to remain in the script and I require below to be added.

I want the script modified so that it ALSO sends an email to the person who has signed up. I just want to give the user a quick message and give them a link.

The project will go to the least expensive bid. It must be completed within 1 or 2 days

Regards,
Thomas

Psd – Word Press

Psd – Word Press
It is very important that the site look EXACTLY like the PSD. I have gone back and forth with the client so many times I am dizzy. I do not want the coding process to be anything like this. It’s final, the client has signed off on this design and so we move forward…

The requirements are as follows:
The index page has slideshow that automatically rotates pictures. The SSI text overlay must appear over slideshow.
There must be several word press “template pages” that the client can choose from when adding additional pages. I will attach screen shots of each page here on SL. If there are questions about functionality, please post them publicly so everyone can see.

WordPress Site Updates 2

WordPress Site Updates 2
I need few quick edits done on another personal website of mine, www.webcopyconversionexpert.com – I can pay you $20 just to update a few things
– Need to add 2 main tabs; Bio and Method –> i’ll provide text for these pages
– Edit text on several pages –> I’ll provide updated text
– Put a “star” image in the right corner of every page, link it to the contact form on home page -> I’ll provide the image
– Add 1 field to the contact form
– Create a pop-under for bottom of the screen, like this one: http://www.undergroundtraininglab.com/

This is very easy for WordPress expert. Budget is $20 and turn-around time is ONE Day. If you like to work slow, please don’t bid.

Thank you for taking the time to read my project. I really appreciate it.

Programmer ( Php Css )

Programmer ( Php Css )
This is a simple project that you can do in 2,3 days
Specific Request :
– good knowledge of joomla and css.

My request are these :
(know hotelscombined.com)

For website Paris Hotels :
a) You shift the website (joomla) of venicehotelsnear on new domain (I will send the file of backup). You don’t forget to put the editor ().
b) You replace “Venice” with “Paris” in Homepage and in different pages.
c) To setup the hotel search box of hotelscombined.com for new website www.?????????.com
d) This page http://hotels.venicehotelsnear.com/City/Venice.htm is created from hotelscombined, you should do a similar thing ( on this address http://hotels.???parishotels????.com/City/nammeofthe city.htm. ().

For website Amsterdam Hotels :
a) You shift the website (joomla) of venicehotelsnear on new domain (I will send the file of backup). You don’t forget to put the editor ().
b) You replace “Venice” with “Amsterdam” in Homepage and in different pages.
c) To setup the hotel search box of hotelscombined.com for new website www.?????????.com
d) This page http://hotels.venicehotelsnear.com/City/Venice.htm is created from hotelscombined, you should do a similar thing ( on this address http://hotels.???????.com/City/nameofthe city.htm. ).

For website London Hotels :
a) You shift the website (joomla) of venicehotelsnear on new domain (I will send the file of backup). You don’t forget to put the editor ().
b) You replace “Venice” with “London” in Homepage and in different pages.
c) To setup the hotel search box of hotelscombined.com for new website www.?????????.com
d) This page http://hotels.venicehotelsnear.com/City/Venice.htm is created from hotelscombined, you should do a similar thing ( on this address http://hotels.???????.com/City/nameofthecity.htm. ).

Delivery time : 2,3 day.

When you have finished all the points of a website, I will do the payment. My budget is 240 USD, then 80 USD for every website.