Programmation > PHP/MySQL
creating a search engine and some SEO advice
we need to create a search engine like thishttp://www. indeed. com< / a>take note that the search automatically search jobs by location, and thats what we need, and a radius search for farther location but within the specified rangeshould be done using php, mysqlwe also need some Search Engine Optimization (SEO) advice as to whether an internal search engine can be crawled by spiders and if not how can it be crawled - like what steps to take so w can add it to the plans on creating this feature, pls send a plan on how you can help in Search Engine Optimization (SEO) and let us know your qualifications on building this search engine, any samples will helppls use the wordsandnbsp; andnbsp; - rebuilding search - as heading on your application
HTML5 Canvas/CSS3/JavaScript Expert
Expert Wordpress + Jquery Developer Required...
Need a WordPress developer with jquery plugin experience. andnbsp; andnbsp; Only apply for this position if you have worked OR you have created jquery slideshow related plugin in the past. andnbsp; andnbsp; I will ask you about your experience if you apply. This type of theme i want to create: http://demo. idesigneco. com /? theme=ecophoto< / a>
A2Billing Developer
BuddyPress 2+
iPhone file syncing app
Complex Web Application
PHP & Mysql Zend Framework Senior Webmaster and IT Specialist
We need installation or integration of PHPFox, com and aMember. com script. I would like to have the amember script (see http://www. amember. com/docs/Main_Page) setup< / a> and modify as follows1) All logins and registration go through amember script (zend-framework) 2) Allow the inputting of various activity records by member and/or chapter (subgroup) within protected areas (see attached) 3) Display results of the various activity records within protect area4) Integrate with phpfoxAlso need a person to create HTML pages and also integrate log-ins between websites. We will also provide you with basic HTML landing/squeeze web-pages templates. You will need to be able to modify the landing web-pages, upload streaming files and set up cron and auto responders. You will also create mysql databases and data submission pages.
JSON Web Extractor with PHP / MySQL
We are looking for a php-programmer who needs to create a php script, which extracts data from an open source JSON web interface (e. g. like http://www. alpinaut. com/api /). < / a>The extracted data has to be stored in a mySQL database. What we will provide you---------------------------------- We will explain the whole concept in a crystal clear way so that you will have no confusion in understanding the requirements. What we will need from you-------------------------------------1. References of interface projects you already developed2. Expected timeframe for completion. 3. Fixed rate4. You should be ready to revise your work until all the requirements are completely satisfied. 5. We expect that you stick to agreed timelines. 6. We are looking for a freelancer, not an agency! Please note, we are a serious buyer and we need only a serious programmer, who thoroughly TESTS his projects to ensure that all functionality works as designed and expected. We will never compromise on quality and will never accept a substandard product. You should apply only if you are confident that you can deliver quality. Budget---------Give us a indicative pricing about the effort you need to program the app. The exact budget we will discuss during the interview. Donandrsquo; t expect any upfront payment. Please reply with the code word andldquo; Lady Gaga " so that I know that you have read the whole description.
Website Administrator
Part Time Developer
Creative Front-End BOSS
database develop;ment
Backend Tool To Scrape Data & Grab API Data & Store in SQL
======================================I have a large scale project in mind and I 'd like YOU to help me with part 1. All going well, this could evolve into a lot more work for you. ======================================We are going to start off with a tool that scrapes data from Google's keyword tool (https://adwords. google. com/select/KeywordToolExternal). We will store that in a database table. Next, we will use Namecheap's API to check for domain availability, marking the results back in the database. Pretty simple. To make it a bit more smart, scraping will made through private proxies to spread the load. We will also de-duplicate repeat keywords. That's the summary; full details are provided in the details section. Remember, this is just part 1 to get the ball rolling. The tool gets seriously cool later on:) Part 1 really doesn't have a UI. But later on it will have some basic features. However, design isn't important since the tool is not public-facing. Serious bonus points if you were able to make use of something like Twitter's Bootstrap library (http://twitter. github. com/bootstrap /) and Glyphicon's icons (http://glyphicons. com /) to make it user friendly and slick. I 'd welcome use of PHP and MySQL for this task as I am able to code a little and would then be able to make tiny tweaks myself. If you have a strong preference for another language, then just let me know. You will notice that I have a glowing profile on oDesk, so rest assured that I am great to work with:) All applicants must understand the task details before submitting their bid. Please also include the word " bananas " in your bid so that I know you have read this! Template answers will be ignored! ======================================Full Specification: ======================================The tool starts off with a large empty textarea box. This is where users will enter in a line separated list of keywords (they 'll typically put in around 50 each time). A submit button then adds those keywords into a 'queue ' (ie, into the database with a status of 0 = newly added, we should also store the timestamp of entry, and give each keyword an incremental ID number). The form then refreshes blank and that's all the user sees. Next, the tool needs to fetch data from Google's keyword tool. https://adwords. google. com/select/KeywordToolExternal< / a> is the URL. They use CAPTCHAs if you are not logged in, so we need to have a dummy Google account that is logged in with a cookie to be able to fetch the data. The keywords will go into the " word or phrase " textarea. We also need to select only the " [Exact] " " match type " option. Location should be only " United States " and the rest as per default. We are going to get back a bunch of results broken down into two sections; " search terms " and " keyword ideas ". We are interested in booth. We need to collect and store: " global searches ", " local searches ", and " CPC ". We will also have a database field to store keyword type; 1 for " search terms ", 0 for " keyword ides ". Google provides the resulting data in CSV/XML which might be easier to parse into the database than scraping the HTML table. We are then going to do a domain availability lookup for keywords where local search volume is >1000 and CPC is >$1. We will use Namecheap's free API: http://developer. namecheap. com/docs/doku. php? id=api-reference: domains: check< / a> (I can provide you with the API access code/key, or you can create your own free account for testing). We need to check for availability for. com /. net /. org domain names for the keyword phrase, removing word spacing. So if the keyword is " free ipod nano " then the domain we want to check for is " freeipodnano. com ", " freeipodnano. net " and " freeipodnano. org ". We will have three fields in the database and use 0/1 for availability. That's the process. But we need to add in an additional process that limits the amount of scraping we are doing from our server's IP. I will provide a list of around 50 private proxies (http://proxybonanza. com /). We should make use of them all to spread the load. I suggest only submitting 5 keywords per IP each 15-minutes. Maybe be need to use something like a CRON job to process another batch of KWs every 15-minutes? It would be really great if we could even find a way for those 15-minutes to be less predictable (ie. generating a random 0-5 minute time to add on to the 15, or perhaps sleep/rand would be useful?). The scraper should do what it can to appear as close to a real user as possible (so using a browser user-agent, for example). We don't need to worry about this kind of balancing when performing availability checks with Namecheap. Lastly, we can also filter duplicates. So when the user submits their list of keywords, we can ignore those already in the database. Also, when we fetch for suggestions, we can ignore those that are already present.
SMS API intrgation and site development
This portal basically for selling Bulk SMS, where users can register online to create an account and purchase credit through pay pal then send SMS from the web interface. The website is live and its www. smsworldonlne. com< / a>, this is a cms website its done in php and mysql, now we need to do the changes in same technology. More information's the API have been attached the required features are as follows: 1- Single SMSandnbsp; andnbsp; 2- Bulk SMS 3- Group SMS (add/edit/delete feature required) 4- Personalized message (send bulk sms to different customers with individual message by attaching csv of excel sheet) Number Message971508584953 XXXXXXX971555496932 YYYYYYY5- Schedule of Message6- Delivery report setup7- Required mobile operators prefix based price deduction feature and for that we need to have in admin price list uploading system with csv or excel format. 8- Prices and coverage menu updating system through uploading Prices and coverage csv or excel format. 9- misuse's blocking system, users should not able to register more than one time.


