Phpmydirectory New Search 2

Phpmydirectory New Search 2
Hi, I want to add some functionality to my existing PhpMyDirectoy (PHP) software. Basically, I want to add some more functionality to Search.

Specifically:

The Search needs to be adjusted to have three different input fields (two are already existing) to search the listings with different criteria, Keyword (quick search, is already existing but may need modification to find “titles”), a Catagory Search, here a dropdown of existing Catagories is in place at the moment.

Location filed is already existing but needs to adjusted to find the cities accurately (remapping).

When the user inputs in to the fileds we would like a suggestion function. When the first letters are entered valid searches (Keywords, Catagory or Location should be suggested).

The existing Search can be viewed under:

http://www.localwebpages.co.nz/directory

TERMS AND CONDITIONS
1) You should have experience with MyPhpDirectory (PHP) software.
2) DO NOT BID IF YO DO NOT SPEAK GOOD ENGLISH.
3) You will work on my servers, I will provide you usernames and passwords for everything.
4) Escrow Payment is released when work is 100% done to my satisfaction.

Thanks!

Tags: PHP, MySQL, PhpMyDirectoy

Php Ecommerce Finishing

Php Ecommerce Finishing
Hi all PHP developers,

we are urgently looking for PHP developer/gugu to help us with one e-commerce website. It is a pure PHP website which is nicely build and structured and we need someone to finish it very urgently.

Templates have been done, project management, news module and we need order process, payment integration and cart facility, again all templates are done and completed. Past programmer has fell ill and can not complete the work.

we use SVN with preview server set up so all is ready for you to work on.

How To Integrate Google Analytics Tracking Into Your Apps In 7 Minutes

How To Integrate Google Analytics Tracking Into Your Apps In 7 Minutes

Ok, maybe that title is +- 3 minutes depending on how efficient you are ;) .

What?

So, why would you want to integrate Google Analytics into your iPhone application.  Duh, for the same reasons you would integrate it into your site.  Google has extended their killer analytics platform to include mobile devices including the iPhone and Android devices.

The analytics API gives you some very powerful options to get as nitty gritty as you would like in your application tracking.

Why?

Uhh, because stats are freakin sweet.  Even if you don’t have a million+ downloads of your app, it is still interesting to know how your users are using your application.  Being able to track every single action made by a user is priceless when thinking about the direction of your app including what features to add, improve, or scrap.

Imaging spending all of your time on some complex feature to find out that only 1% of your users even care about that feature.  How could you know that only 1% of your users actually care about that feature unless you are doing some sort of tracking.

So before you add that super duper all in one end all be all 1337 feature to your app, consider reading the rest of this tutorial and add stat tracking first.  It is quick and painless and I promise that it will be totally worth it.

Configuring your Google Analytics Account

Google Analytics is a free server provided by Google.  If you dont already have an account, you can sign up for one with your existing Gmail account.  http://google.com/analytics. Sign up and log in.

The first thing you will want to do is Add a new Website Profile.

On the next page:

  • Select Add a Profile for a new domain
  • Enter in some URL – This doesn’t really matter since google doesn’t use it to identify your app.  A good convention is iphone.yoursite.com or appname.yoursite.com so that you know these stats are for your iPhone app.
  • Select your country and timezone
  • Click Finish

Pretty simple… On the next screen, make sure you copy the Web Property ID. This number (begins with UA) is what we will be using to uniquely identify your application.

That’s all for the web side of things!  Now on to the iPhone part.

Download the Google Analytics Library and Add It To Your Application

This could not be easier.  Head on Over to http://code.google.com/apis/analytics/docs/tracking/mobileAppsTracking.html . They explain much of the steps  so you could read the rest there, but I will lay them out in detail here with screesnhots.  Download the Analytics SDK for iPhone and extract it.

There are 2 files that are important.  Drag both files from the Library folder into your XCode project.  These files are GANTracker.h and libGoogleAnalytics.a.

When XCode pops up the confirmation box, make sure that you check the box that says “Copy items into destination group’s folder (if needed)”.  This will ensure that the code gets place in your project directory.

Include CFNetwork and Link Against the sqlite framework

The google analytics framework requires the use of CFNetwork (for interent connection detection) and the sqlite framework (most likely to store events when the user does not have internet).

Let’s start by adding CFNetwork to the project. Right click on the frameworks folder and select Add -> Existing Frameworks.  Next, select CFNetwork.framework from the list and click Add.

Now we need to link the project against libsqlite3.0.dylib.  To do this Click Project -> Edit Active Target “<project name>” where <project name> is the name of your XCode project.

Next, click the + button at the bottom to bring up the library picker. Select libsqlite3.0.dylib and click Add

Including and Initializing the Tracker

Since the Analytics tracker is a singleton class, we only have to initialize it once and the rest of the application can use the same instance.

Let’s start by opening up the app delegate and adding the code to import the Google Analytics framework.

#import "GANTracker.h"

Now you need to initialize the tracker… Make sure you have the UA number handy that you received from Google earlier.  Add the following code to you applicationDidFinishLaunching method.

[[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-15609865-3"
				dispatchPeriod:10
				delegate:nil];

Make sure you replace my UA number with yours. The dispatchPeriod variable tells the tracker how often to report back to Google. Google suggests using 10 seconds in their example so we’ll stick to that.

Tracking Pageviews and Custom Events

Google gives you 2 different ways to track how your users use the application.  The first way is via pageviews.  Pageviews work just like they do in the browser as if the user navigated to a new page in your website.  Some examples of when to use pageview are when you have a tab interface or a flipside view controller.  I would not suggest using a pageview every time the user performs an action such as click a button.

The second way is via custom events.  These are really cool.  With custom events, you can easily see HOW your users are using your application.  Examples of events are button clicks, typing in a textbox, submitting high scores, etc…

We will see an example of implementing each of these methods and take a look at how they appear inside of the Google Analytics website.

Pageview method

Here is an example of a pageview when the user first launches the app.  Put this code inside of your applicationDidFinishLaunching method.

NSError *error;
if (![[GANTracker sharedTracker] trackPageview:@"/app_launched"
                                        withError:&amp;error]) {
     // Handle error here
   }

Note that the “app_launched” is essentially our page name similar to index.html or aboutus.php. You can add this code anywhere in you app that you want to add a page view. Make sure you include the GANTrack.h file and change the pagename for each new location.

Event method
Here is an example of an event that gets fired when the user presses a Save button.

- (IBAction) saveTheWorld:(id) sender
{
	NSError *error;
	if (![[GANTracker sharedTracker] trackEvent:@"button_click"
				             action:@"save_the_world"
					      label:@"my_label"
					      value:-1
					  withError:&amp;error]) {
		// Handle error here
	}
}

What’s really cool about event tracking is you have 3 levels of customization. You have the category, the action, and the label. How you organize it is up to you, but make sure the grouping makes sense. In the example above, I will use the category “button_click” every time a user clicks any button. The action will determine which button was clicked (in this case, it’s “save_the_world”). Finally, the label is just another level. I’d suggest using the UDID of the users device.

Now that we have implemented our code, let’s take a look inside of our Google Analytics account and see what the stats look like.

This is just some of our sample data from another app.  Notice the interface is exactly the same as it is when you are tracking website statistics.  It shows you unique visits as well as pageviews.  You get all of the advanced reporting too including time spent on each “page”.

Now we take a look at events.  To find the actions click Content -> Event Tracking inside of your Google Analytics Page.

In the above screenshot, we see tracking for an event called “clap”.  It shows us the number of times the users “clapped” within a given day.

Conclusion

One last thing I want to mention before concluding this tutorial. Google Analytics stats are 1 day behind.  What this means is, you won’t see your stats appear immediately.  So, before you comment here because you don’t see the stats appearing, please please please wait one day and check your stats again.  That is all :)

Be one of the cool kids, follow me on Twitter.

Happy iCoding

Wp Plugin Fix

Wp Plugin Fix
I have a client site that is using a WordPress plugin called Events Calendar.

The thing is proving really buggy. It has googlemaps integration but they look odd (the transparent pngs for the bubbles aren’t working) and the map only sometimes shows up.

In addition, it looks like one of the events (today’s event) has disappeared. Though I don’t know if the client did this accidentally.

So I need someone to fix this, get it working proprly **OR** get me a replacement ASAP. He has a meeting tonight and this has to be done in a few hours at the latest!

Attached is the link. I will give priority to those who can get it fixed

Video Submission Software

Video Submission Software

We require a video submitter script that will allow users to upload video files to the top video sharing sites automatically with a single click. Additional features are required but will only be discussed with qualifier coders via PMB.

If you have experience with this type of video submitter script, video distribution and/or video syndication software such as Tube Mogul or Traffic Geyser, please submit your fair market bid.

We will require all source code and a signed work for hire agreement.

Healthcare Tablet Solution

Healthcare Tablet Solution

I need to build a program that will work on variuos touch screens including dell, apple ipad and tufftab, the program will have various screens that either callout a blood pressure reading, a blood glucose reading, and one of many other readings relating to the medical field. The solution will then post these results to a securea patient and professional portal. The developer will be responsible for building the solution and portal that must be easily modified on our own. the solution will require to allow bluetooth devices to connect and provide medical readings to the ipad as well as an android java platform. A similiar example of what id like to build can be seen at healthanywhere.com.

the program will have a secured database and bluetooth connectivity. It will have the ability to operate in real time, with online and email access. it will be able to run two two inch screens that stream video continuously within the main interface. All code must be sent to us on completion with how-to modify instructions. There will be a total of 12-15 main gui interface areas of interest each with designated features/reading.

Tags: Programming, Multimedia, Software, iPad

Logoandbanner Creation Project

Logoandbanner Creation Project

1. We would like a logo with maybe a 2D or 3D dimension or an animation feel (I may not be using the proper technical terminology). For example, you can create a logo possible using the letters TOT(stands for the online television network) and make them dimensional. We are in the beginning stages of branding our site, so we need it to be powerful but simple and easy to remember. In the attached files, I am showing samples of the type of logos that are powerful, but yet simple and easy to remember. See attachment for examples of other online network logos.

2. A mini banner of the same logo to be put on Facebook fan page and so forth. for ex. see http://www.facebook.com/Wedding.Planning?ref=mf versus their logo on their website.

Please note: Not to be included on any portfolio for demo, commercial, or any reasons.

Actionscript Thermometer & Jqu

Actionscript Thermometer & Jqu

ActionScript Thermometer & JQuery Calendar

BUDGET: $50
Free scripts for both available on the internet, paying for modification of those scripts.

SEE ATTACHMENT
1. Please view the flash thermometer needed here ==>
http://www.retailsdirect.com/ViewGroupBargains.aspx (Bargain_Meter.swf)
Background inside and outside: Transparent or White, no borders

2. The fluid color need to start out light on bottom and get darker toward the top
light – http://www.retailsdirect.com/Bargain_Meter.swf?max1=10&join1=4&discount=1
dark – http://www.retailsdirect.com/viewgroupbargains.aspx

:: Need a way to change fluid color.

3. No numbers 1 – 10 on the left, use similar meter marker movement shown in the activeden thermometer. As the pointer moves up it shows numbers until it reaches current amount received.

4. Percentages on the right – 25%, 50% 75% and 100% is fixed.

5. Give thermometer a 3D dimension with vibrant color outline, same for the water.
example: http://activeden.net/item/thermometer-goal-meter-xml/21690
:: offer two different thermometer shapes.

6. Number to code for: Goal Amount and Received amount

7. Goal amount to appear at the top, and $0 on bottom.
:: The water rises as sales or donation increases.

8. See attachment for what needs to happen when more amount is received than the goal:
– thermometer bursts open with awesome flash effects and the fluid has continuous overflow,
– the left marker moves above thermometer and stops where the full amount raised is.

2. Calendar script as shown in attachment that blocks out previous days, like the one shown in attachment, also visit http://www.delta.com.
(a) Calendar does not allow date selection of previous days.
(b) Show next 12 months in Go to month:, not the 12 months of current year. For example, we are in March, Go to month should show April 2010 to March 2011
(c) Show “Today is Dayofweek, Month Day, Year” for example Today is Thursday, April 22, 2010

Thanks for your attention.

Rewards Facebook App Including

Rewards Facebook App Including
I WANT FACEBOOK APP LIKE THIS – INTEGRATED WITH CPALEAD.COM VIRTUAL CURRENCY

http://www.facebook.com/login.php?api_key=873049956e514e6af05fc3a45c9bf9d2&v=1.0&req_perms&next=http%3A%2F%2Fnoktral.com%2Ffb%2F&canvas=1

The script allows users to fill out surveys to earn points using the virtual currency widget of CPALead, and use those points to purchase gifts and rewards!

The script includes an customizable template as well to customize it to your liking.

The script has 7 tabs:

My Account – Users go here to find out their current points, recent history, referral activity, as well as status of redemptions!

Earn Points – This is where users go to fill out surveys and earn points!

Redeem Points – The store/catalog for users to redeem their points. You can customize in the admin panel to include various categories and items, including pictures, descriptions, and costs.

Invite Friends – A 100% working referral system that also gives users 10% extra points for every point their referrals use! This brings traffic to your app QUICKLY AND EASILY!

FAQ – Create a F.A.Q. for users of your app.

Support Forum – A fully functional support forum to handle tickets/questions/concerns.

Testimonial – Create fake (or implement REAL) testimonials regarding your app!

Aside from the tabs, the app also has an admin panel with the following tabs:

Catalog Management – Manage the catalog(categories) of your payout store.

Manage Items – Manage the specific items in your store including descriptions, pictures, and cost.

Pending Payouts – View pending payouts from users as well as approve/deny them.

Order History – Entire order history to keep track of orders.

Manage Users – Manage user information as well as manually add and subtract points.

Template – Edit the template of the app.

Points to User Overview (CSV) – Look at an overview Points-to-User of all your users.-

1. PLEASE SHOW FACEBOOK APP YOU HAVE CREATED

2. CODER MUST HAVE AT LEAST 15 REVIEWS

3. Also Thinking of buying this script
“http://www.myvouchergeek.com/discounted.php”

and if possible linking it into my exciting website “MyMicrojob.com” please me know if this is possible.