tagged "javascript"

I have a merchant account setup through netbilling. I need this integrated with my existing site which is made with cakePHP. Further, I need integration with twitter and facebook connect. I also have a chat support script that I need integrated. The fourth thing I need is a tracking table in mysql. Every click into the site should be captured and cookied. The table should have columns: datetime, subid, referrerUrl, currentURL, previousVisitID, memberID, isExistingMember. The memberID should be saved here if/when the person signs up through the site. Please msg with your previous experience. I need a clean integration. Knowing jquery or something similar is a huge plus

Credit Site Clone

We would like a clone of www.creditmatchr.com including the page that is generated after a user submits their contact information and credit score in the form on the home page. It's a fairly simple site with only a few pages, but has some php/mysql database and javascript functionality.

Active Directory Reporting Scr

Active Directory brief Environment: • Windows 7 server • Active directory Languages: • Perl • Python • VB • JavaScript Brief We need a developer to write a program that, on a daily basis, queries Active Directory and emails a excel spread sheet with the defined details to a designated email address. This needs to be an automatic script and should not require user intervention.

Php Developer

Dear Php developer needed with knowledge of php,ajax,mysql,jquery,jhoomla and drupal

Soundcloud Parser / Ripper

see attatched file. I basically want a Soundcloud ripping script/program (pref script so i can use it as a cron), Must grab all mp3's on all pages & name them properly. escrow only. Prefer coders who will provide good service in case soundcloud update their url structures I am also interested in; * Facebook Player Parser / Ripper * 4Shared Folder Parser / Ripper (could be done via rss) * Mediafire Parser / Ripper

Cctld Whois

This project has a deadline. Requirements: Need the ability to search for domains gtld's and cctld's. Using REST method's I need to be able to enter 500 to 1000 names. Return 2 results sets (1) Return results in a grid that show the name and marks what has been "taken" or "available". (2) Return also the registrant name for each registered domain (if poosible) Need a UI that that will allow a user to enter the domains Provide the user search criteria (see attached images) Display the results in a grid (see attached images). The grid needs to be sortable. The UI will provide the ability to export the data an excel file. No sloppy coding No frameworks Just pure PHP coding using methods. Good PHP code should be structured. As much as possible, you should separate frontend HTML/CSS/JavaScript code from the backend logic. Good user UI design is required Documentation is required List of all the whois servers should be in a text file. The program will read the text file to know what servers to search. No tables in the html UI. Test site for me to see a demo of the solution. Project Objectives: Deliver a really cool UI that will allow the user enter names and return the search results in a grid that is easy to use. Project Deliverables: HTML/CSS/JavaScript UI Text file that contains all the whois servers (as many as you can find) Source code (written in PHP) Deployment instructions If you have a better suggestion on how to collect ccTLD info via bulk request - let me know. Bad PHP Coding: 1. <? 2. echo("<p>Search results for query: " . 3. $_GET['query'] . ".</p>"); 4. ?> Good PHP Coding: <?php if (isset($_GET['query'])) { echo '<p>Search results for query: ', htmlspecialchars($_GET['query'], ENT_QUOTES), '.</p>'; } ?> I want good code. thx
I need someone to work long term on a flash based or java based programming project that will require 3d rendering skills. An experience in flash or javascript apps is a MUST you must show me BOTH your java/flash work AND your 3d modeling work before we discuss details of project. PMB me with your contact info (this is FEATURED so it is WITHIN SL Guidelines) AND with your PORTFOLIO. You MUST MUST MUST show flash app or java applications in your portfolio along with 3D rendering. Do NOT contact me BEFORE you PMB me or you will be ignored. If you do not PMB me with the word "tryout" you will be ignored. This is a long term project but first version (which is what will be outlined) must be complete with in 60 days. I will expect NIGHTLY updates. Payment 100% upon COMPLETION of project or set milestones. No source can be encrypted or withheld. Check my feedback, you will love working with me.

Auto Populate Form Fields With Suggestion

I am working on a project that automates the form filling process. The user is having to type the same person's info over and over. So I want to make it easier by asking if it's the same person, and it it is, then auto filling the fields. I have a number of text fields for a person's name and address, city state zip. Below, I have another set of fields asking for the same information (name, address, city, state, zip.) After the first set is filled out, and then the person goes to fill out the second set beginning with 'name,' using ajax or jquery the field should suggest the first name that was entered above. If the user accepts, it will auto-populate all of the same info that was already typed. So if I've already typed in 'John's' information, if I go to fill in the second name field and I type in the letter 'J', it should suggest 'John', if I press enter, it will autofill John's name in the field, as well as all the address info. The fields all already have unique IDs that I can't change, however, the name can be whatever we want. So I will need this to work by using the fields name as the identifier.

Simple Js Needed To Set A Cookie

Part 1: Need a simple, clean, short Javascript to set a cookie when it is run. Needs to work in IE and Firefox. The variable in the cookie will be set by a name passed to the JS. Example: www.test.com/track.js?var=gr&c=mg The value should be 1. Cookie name should be set by the c variable. Part 2: read.js When this JS runs it should check to see if a variable is present and if it is run another JS. Eaxample: read.js?var=gr&c=mg If cookie mg is present and variable var is 1, then it should run a JS. Example: run.js * Needs to be completed in 24 hours.

Secure Web Application Proxy

This is based on the idea of rendering all legitimate JavaScripts syntactically incorrect, so that every JavaScript that is eventually executed by a browser can be concluded to be malicious. Therefore, the first step for deploying SWAP is to identify all legitimate script calls in the original Web application, and to replace each one by a unique identifier, a script ID. This effort has to be repeated every time a change is made to the application that alters or adds JavaScript code. Fortunately, it is easily possible to automate this step. Generally, in order to locate legitimate scripts in the original Web application, it is advisable to utilize a similar mechanism as the JavaScript detection component later used to identify malicious scripts . This ensures that no legitimate scripts are overseen and later erroneously reported as malicious. Since we assume that all legitimate scripts are shipped with the software and not user-contributed, obviously, this step should be performed on a fresh installation of the application, without any user-provided content in the application database. Note, that in the case where legitimate scripts are stored in the database, also these scripts must be encoded into script IDs. For the applications we used for testing, applying simple bash scripts using grep and sed on the source code was sufficient to accomplish the task. There are three requirements for a script ID: First, it must not contain any valid HTML tags, so that except of removing the script, the structure of the Web page is preserved. Second, it must not contain what would be interpreted as JavaScript by a browser, so that when rendering a page it is safe to conclude that all script executions stem from illegitimately injected scripts. Third, the mapping must be reversible, so that after probing a page for scripts, the original condition with functional JavaScript code can be reestablished. For our prototype implementation, we defined a set of strings that directly indicate the presence of JavaScript code, such as the script tag