Location: ..., United States
Member since: April 2012
+ Software Engineer\n+ Database Administrator\n+ System Admin, Linux, Windows, Java Server Expert.\n+ Assistant Teaching.\nWork with : \n- C/C++, Java, C# Programming Guru\n- eCommerce, Wordpress, Open Cart, Joomla, Drupal, Magento, TYPO3, MODX, vBB, etc.\n- Windows Server, Linux Server, TomCat , JBossServer\n- Mathematics.\n- Malware removal*\n- Hacking recovery*\n- Website monitoring\n- Security Audit\n\nWORDPRESS:\n+ Install and config the project\n+ Plugin: Customise and create new plugin with MVC structure\n+ Template: Create, adjust the template (include design graphics or not) with tabl...eless w ordpress design (CSS / DIV)\n+ Migrate & Upgrade: Are you using t he websi te withou t wordpress or with wordpress and you want to migrate or upgrade to wordpress with higher version? I can do this very fast and exactly for you.\n+ Advanced SEO (search engine optimization)\ n\nI can do that for you, if you like and I'm glad I have a chance to work with you all.\n\nTrust me for your project and you will see the value of difference!
[read more]
5.0
3 days ago
“ Very easy to work with, and very fast.got exactly what I was after..Very easy to work with, and very fast.got exactly what I was after.. ”
6 days ago
“ Very good Freelancer. He did a great job and worked quickly. Thank you pivn.Very good Freelancer. He did a great job and worked quickly. Thank you pivn. ”
17 days ago
“ Excellent work. He knew exactly how to handle the issue & resolved it immediately. Would definitely hire again. Thank youExcellent work. He knew exactly how to handle the issue & resolved it immediately. Would definitely hire again. Thank you ”
I have an existing website in Wordpress that I'm migrating from one provider over to 1and1.com. The old provider was hacked and they didn't patch their system very well. I have a download of the entire wordpress installation and the database SQL file. I'd like you to install WordPress on the new 1and1 account, upload the content and configure it so that it's viewable again and we can continue to modify content through the wp-admin page.Speed is very important on this project. Once we accept your bid, we need to have the site live again in a very short amount of time.Thanks for submitting your bids on this project.I have an existing website in Wordpress that I'm migrating from one provider over to 1and1.com. The old provider was hacked and they didn't patch their system very well. I have a download of the entire wordpress installation and the database SQL file. I'd like you to install WordPress on the new 1and1 account, upload the content and configure it so that it's viewable again and we can continue to modify content through the wp-admin page.Speed is very important on this project. Once we accept your bid, we need to have the site live again in a very short amount of time.Thanks for submitting your bids on this project.
I have a Wordpress website/blog here: http://dietthatreallyworks.comI am trying to set up a way to search a database. See the Carb Database page.When a food is input, and Search is pressed, I want to execute the php code below.The database is not part of the Wordpress site but is hosted on the same server.I can send you the database. 'Mcarbs','Fiber' => 'Mfiber','Sugar' => 'Msugar','Sodium' => 'Msodium','Saturated Fat' => 'Msatfat','Total Fat' => 'Mlipid','Cholesterol' => 'Mchol');// Get the search variable from URL$var = @$_GET['q'];//trim whitespace from the stored variable$trimmed = trim($var);// rows to return$limit = 1000;// check for a search parameterif (strlen($trimmed) == 0 || strlen($var) == 0) {// echo 'We don't seem to have a search parameter!';exit;}//connect to your databasemysql_connect('localhost', '***', '***') or die('Unable to connect to database'); // host, username, passwordmysql_select_db('***') or die('Unable to select database'); // database//specify database// DEPRECATED mysql_select_db('carbs') or die('Unable to select database'); // Build SQL Query $query = 'SELECT * FROM `carbs` WHERE `Desc` LIKE '%' . mysql_real_escape_string($trimmed) . '%' ';// $query = 'select * from carbs where Desc like '%$trimmed%'';// $numresults = $query->num_rows();// $numresults=mysql_query($query);// $numrows=mysql_num_rows($numresults);// $numrows = $query->num_rows(); ????// next determine if s has been passed to script, if not use 0if (empty($s)) {$s = 0;}// get results$query .= ' LIMIT $s,$limit';$result = mysql_query($query) or die('Couldn't execute query');// $result = mysql_query($query) or die('Couldn't execute query');// display what the person searched forecho 'You searched for: \'' . strip_tags($var) . '\'';echo 'Results by food and serving sizes. '[No data]' means information not in database. Unless otherwise specified, results are in grams of carbs which is what we use to count our carbs.Search Results KeyCarbs: Total carbsFiber: Total fiberSugar: How many of the total carbs are simple carbsSodium: Milligrams of saltSaturated fat: How much bad fatTotal fat: Good and bad fat combinedCholesterol: Milligrams of cholesterol';$count = 1 + $s ;// now you can display the results returnedwhile ($row = mysql_fetch_array($result)) {// $food = $row['Desc'];// $calories = $row['Energy_Kcal'];// $protein = $row['Protein_(g)'];echo ''; $count++ ;echo '' . $row['Desc'] . ''; echo 'Serving size 1: ' . $row['GmWt_Desc1'] . ': ';foreach ($carbs_1 as $key => $value) {echo $key . ': ' . $row[$value . '1'] . ', ';}echo '';echo 'Serving size 2: ' . $row['GmWt_Desc2'] . ': ';foreach ($carbs_1 as $key => $value) {echo $key . ': ' . $row[$value . '2'] . ', ';}} echo ''; $currPage = (($s/$limit) + 1);//break before pagingecho '';// next we need to do the links to other resultsif ($s >= 1) { // bypass PREV link if s is 0$prevs = ($s-$limit);print ' I have a Wordpress website/blog here: http://dietthatreallyworks.comI am trying to set up a way to search a database. See the Carb Database page.When a food is input, and Search is pressed, I want to execute the php code below.The database is not part of the Wordpress site but is hosted on the same server.I can send you the database. 'Mcarbs','Fiber' => 'Mfiber','Sugar' => 'Msugar','Sodium' => 'Msodium','Saturated Fat' => 'Msatfat','Total Fat' => 'Mlipid','Cholesterol' => 'Mchol');// Get the search variable from URL$var = @$_GET['q'];//trim whitespace from the stored variable$trimmed = trim($var);// rows to return$limit = 1000;// check for a search parameterif (strlen($trimmed) == 0 || strlen($var) == 0) {// echo 'We don't seem to have a search parameter!';exit;}//connect to your databasemysql_connect('localhost', '***', '***') or die('Unable to connect to database'); // host, username, passwordmysql_select_db('***') or die('Unable to select database'); // database//specify database// DEPRECATED mysql_select_db('carbs') or die('Unable to select database'); // Build SQL Query $query = 'SELECT * FROM `carbs` WHERE `Desc` LIKE '%' . mysql_real_escape_string($trimmed) . '%' ';// $query = 'select * from carbs where Desc like '%$trimmed%'';// $numresults = $query->num_rows();// $numresults=mysql_query($query);// $numrows=mysql_num_rows($numresults);// $numrows = $query->num_rows(); ????// next determine if s has been passed to script, if not use 0if (empty($s)) {$s = 0;}// get results$query .= ' LIMIT $s,$limit';$result = mysql_query($query) or die('Couldn't execute query');// $result = mysql_query($query) or die('Couldn't execute query');// display what the person searched forecho 'You searched for: \'' . strip_tags($var) . '\'';echo 'Results by food and serving sizes. '[No data]' means information not in database. Unless otherwise specified, results are in grams of carbs which is what we use to count our carbs.Search Results KeyCarbs: Total carbsFiber: Total fiberSugar: How many of the total carbs are simple carbsSodium: Milligrams of saltSaturated fat: How much bad fatTotal fat: Good and bad fat combinedCholesterol: Milligrams of cholesterol';$count = 1 + $s ;// now you can display the results returnedwhile ($row = mysql_fetch_array($result)) {// $food = $row['Desc'];// $calories = $row['Energy_Kcal'];// $protein = $row['Protein_(g)'];echo ''; $count++ ;echo '' . $row['Desc'] . ''; echo 'Serving size 1: ' . $row['GmWt_Desc1'] . ': ';foreach ($carbs_1 as $key => $value) {echo $key . ': ' . $row[$value . '1'] . ', ';}echo '';echo 'Serving size 2: ' . $row['GmWt_Desc2'] . ': ';foreach ($carbs_1 as $key => $value) {echo $key . ': ' . $row[$value . '2'] . ', ';}} echo ''; $currPage = (($s/$limit) + 1);//break before pagingecho '';// next we need to do the links to other resultsif ($s >= 1) { // bypass PREV link if s is 0$prevs = ($s-$limit);print '
Six Corners Association, the sole service provider for Special Service Area #28, is seeking bids for a migration of its 13-page website (www.sixcorners.com) to a new content management system.Six Corners Association, the sole service provider for Special Service Area #28, is seeking bids for a migration of its 13-page website (www.sixcorners.com) to a new content management system.
I Had some one work on a word press site which needs to be completed, I was paying him $50 for that and i am willing to pay the same ...its all installed but needs text transferred from old site and pics from the theme. Need it done urgently but you need to have this theme with you http://demo.themovation.com/?color=black. please contact me ASAP if you can do this.I Had some one work on a word press site which needs to be completed, I was paying him $50 for that and i am willing to pay the same ...its all installed but needs text transferred from old site and pics from the theme. Need it done urgently but you need to have this theme with you http://demo.themovation.com/?color=black. please contact me ASAP if you can do this.
I need an speed and yslow grade optimization expert help me to raise my sites performance using www.gtmetrix.com as a guide. Right now its is At a A grade for page speed but a C grade for yslow.. I want to optimize my site to rank as best as possible.I always pay on time.Merchant00I need an speed and yslow grade optimization expert help me to raise my sites performance using www.gtmetrix.com as a guide. Right now its is At a A grade for page speed but a C grade for yslow.. I want to optimize my site to rank as best as possible.I always pay on time.Merchant00
My Joomla website www.trustech.org has broken links in menu which needs to be fixed and prevent robots from automatically signing up as membersThis should be a simple fix for a joomla developerPlease only bit if you are a joomla developer. I will have to check your profile and I need this done in less than 5 daysPlease check the website before bidding and tell me if you what to fix. This is not a try and error projectThanksMy Joomla website www.trustech.org has broken links in menu which needs to be fixed and prevent robots from automatically signing up as membersThis should be a simple fix for a joomla developerPlease only bit if you are a joomla developer. I will have to check your profile and I need this done in less than 5 daysPlease check the website before bidding and tell me if you what to fix. This is not a try and error projectThanks
I need a sys admin to help me trouble shoot error logs: here is a sample message:The chkservd sub-process with pid 29048 was running for 1331 seconds. The sub-process was terminated as it exceeded the time between checks of 300 seconds. Please check /var/log/chkservd.log and /usr/local/cpanel/logs/tailwatchd_log to discover the causeI always pay my workers on time.Merchant00I need a sys admin to help me trouble shoot error logs: here is a sample message:The chkservd sub-process with pid 29048 was running for 1331 seconds. The sub-process was terminated as it exceeded the time between checks of 300 seconds. Please check /var/log/chkservd.log and /usr/local/cpanel/logs/tailwatchd_log to discover the causeI always pay my workers on time.Merchant00
I need 250 interview questions for Java core technology. Questions should be practical one and needs to be given along with appropriate answers. If example code is needed to explain the concept then that code needs to be given along with the answers.Strict Note: There are already plenty of question and answers available on the net, but we do not want to replicate same set of questions and if content of questions matches with any existing website then work will not be accepted or revised, and consequently project will be rejected. So if you have real working experience with core java and you can produce these questions and answers based on your experience then I welcome you, otherwise I request not to bid for the project.Your question flow should be like an interviewer starts with basics and type of questions he/she asked.Here is sample questions and answers:Q: What is Java?A: Java is a high-level programming language originally developed by Sun Microsystems and released in 1995.Q: What are then supported platforms for Java?A: Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX, like Redhat Linux, CentOS, Ubuntu etc.I need 250 interview questions for Java core technology. Questions should be practical one and needs to be given along with appropriate answers. If example code is needed to explain the concept then that code needs to be given along with the answers.Strict Note: There are already plenty of question and answers available on the net, but we do not want to replicate same set of questions and if content of questions matches with any existing website then work will not be accepted or revised, and consequently project will be rejected. So if you have real working experience with core java and you can produce these questions and answers based on your experience then I welcome you, otherwise I request not to bid for the project.Your question flow should be like an interviewer starts with basics and type of questions he/she asked.Here is sample questions and answers:Q: What is Java?A: Java is a high-level programming language originally developed by Sun Microsystems and released in 1995.Q: What are then supported platforms for Java?A: Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX, like Redhat Linux, CentOS, Ubuntu etc.
Our site was hacked and all the malicious code was then taken out by our hosting provider. We then went into Google Webmaster Tools to request a review on our site, and it does not detect any Malware on our site. And yet when you do a search on our name (World Horizons on google.com.au) you can still get the 'this site may be compromised' warning. Can you assist us fix the problem?Our site was hacked and all the malicious code was then taken out by our hosting provider. We then went into Google Webmaster Tools to request a review on our site, and it does not detect any Malware on our site. And yet when you do a search on our name (World Horizons on google.com.au) you can still get the 'this site may be compromised' warning. Can you assist us fix the problem?
Our website (cprfirstaid.com.a) is loading quite slowly. I've installed several plugins to optimize our databases and PHP files etc. But we're not seeing much improvement.Our load times are pretty horrible, and we're getting bad bounce rates etcYou should be skilled in this.ThanksOur website (cprfirstaid.com.a) is loading quite slowly. I've installed several plugins to optimize our databases and PHP files etc. But we're not seeing much improvement.Our load times are pretty horrible, and we're getting bad bounce rates etcYou should be skilled in this.Thanks
I have a server that needs immediate help. Something is causing it to be unresponsive. You need to work on this right now and fix within the hour. Budget is $30 for this task.I have a server that needs immediate help. Something is causing it to be unresponsive. You need to work on this right now and fix within the hour. Budget is $30 for this task.
For a given use case, draw UML use case diagram, implement solution in java, and document solution in writing. Must be proficient in UML, Java, AND writing!For a given use case, draw UML use case diagram, implement solution in java, and document solution in writing. Must be proficient in UML, Java, AND writing!
Make wordpress updates on wordpress websites. If you do a good job you can do more than one and turn this into a continues job.Make wordpress updates on wordpress websites. If you do a good job you can do more than one and turn this into a continues job.
Need experience web developer able to configure hosting setting for existing blog site. Should be a quick and easy set up. Needed Asap.Need experience web developer able to configure hosting setting for existing blog site. Should be a quick and easy set up. Needed Asap.
Hi, I am looking to start web hosting company need advice on how to setup web server on my own network so i dont use reseller companies. And need advice how to have the server running etc. 2 ) how to get domains 3) maintenance on servers training etc.Hi, I am looking to start web hosting company need advice on how to setup web server on my own network so i dont use reseller companies. And need advice how to have the server running etc. 2 ) how to get domains 3) maintenance on servers training etc.
I need tutorials on basics of html, javascript, css and php languages for absolute beginners. I need 15 lessons/articles (300+ words) on html and also other mentioned languages covering their basics. These tutorials should pass 100% in copyscape. For Web Designers writing these tutorials is extremely easy as there is no need for any research. My budget is $30. I will prefer those who offer LESS RATES.Total 60:15 lessons for HTML15 lessons for Javascript15 lessons for Css15 lessons for PhpEach lesson should contain 300+ words.....The deadline is 15 days....These tutorials should cover all the basics of respective language.I need tutorials on basics of html, javascript, css and php languages for absolute beginners. I need 15 lessons/articles (300+ words) on html and also other mentioned languages covering their basics. These tutorials should pass 100% in copyscape. For Web Designers writing these tutorials is extremely easy as there is no need for any research. My budget is $30. I will prefer those who offer LESS RATES.Total 60:15 lessons for HTML15 lessons for Javascript15 lessons for Css15 lessons for PhpEach lesson should contain 300+ words.....The deadline is 15 days....These tutorials should cover all the basics of respective language.
I need 20 lessons about English grammar for beginners , Articles should cover those subjects: AdjectivesAdverbsArticlesClausesCompoundsConditionalsNounsPronounsPluralsPossessivesPrepositionsVerbsIrregular verbsModal verbsPassive voicePhrasal verbsSubjunctiveArticles must be unique, handwriting, and pass plagiarism tests. The buyer will be allowed to edit, change the content, and remove the author name.I need 20 lessons about English grammar for beginners , Articles should cover those subjects: AdjectivesAdverbsArticlesClausesCompoundsConditionalsNounsPronounsPluralsPossessivesPrepositionsVerbsIrregular verbsModal verbsPassive voicePhrasal verbsSubjunctiveArticles must be unique, handwriting, and pass plagiarism tests. The buyer will be allowed to edit, change the content, and remove the author name.
Hello, this is a private project. I just need a trust freelancer to make long term business. I am ready to make payment.Hello, this is a private project. I just need a trust freelancer to make long term business. I am ready to make payment.
Hi freelancers,I need advice with an assignment. All the details are attached.Can you help?Regards,JamesHi freelancers,I need advice with an assignment. All the details are attached.Can you help?Regards,James
Suddenly our eFront system from http://www.efrontlearning.net/ is not allowing any logins or registrations. I attempted an upgrade and it hangs on step 2.We just need someone to fix it.Suddenly our eFront system from http://www.efrontlearning.net/ is not allowing any logins or registrations. I attempted an upgrade and it hangs on step 2.We just need someone to fix it.
PISOFT Company
Project Manager
Master of Software Engineering
2009-2011
CCNA
Cisco
Freelancer
| content | aux0 | aux1 | aux2 | aux3 | aux4 | aux5 | aux6 | aux7 | aux8 | aux9 |
|---|
| content | aux0 | aux1 | aux2 | aux3 | aux4 | aux5 | aux6 | aux7 | aux8 | aux9 |
|---|
+ Software Engineer\n+ Database Administrator\n+ System Admin, Linux, Windows, Java Server Expert.\n+ Assistant Teaching.\nWork with : \n- C/C++, Java, C# Programming Guru\n- eCommerce, Wordpress, Open Cart, Joomla, Drupal, Magento, TYPO3, MODX, vBB, etc.\n- Windows Server, Linux Server, TomCat , JBossServer\n- Mathematics.\n- Malware removal*\n- Hacking recovery*\n- Website monitoring\n- Security Audit\n\nWORDPRESS:\n+ Install and config the project\n+ Plugin: Customise and create new plugin with MVC structure\n+ Template: Create, adjust the template (include design graphics or not) with tabl... [read more]eless w ordpress design (CSS / DIV)\n+ Migrate & Upgrade: Are you using t he websi te withou t wordpress or with wordpress and you want to migrate or upgrade to wordpress with higher version? I can do this very fast and exactly for you.\n+ Advanced SEO (search engine optimization)\ n\nI can do that for you, if you like and I'm glad I have a chance to work with you all.\n\nTrust me for your project and you will see the value of difference!
As you use Freelancer.com to complete work, you'll earn badges which appear on your profile.
Elite Badges are very difficult to obtain, obtainable by only our most dedicated users.
Pro Badges are somewhat uncommon but still obtainable with little effort.
Standard Badges are common and easy to obtain.
Freelancer.com (formerly GetAFreelancer, Scriptlance and vWorker/Rentacoder) is the world's largest freelancing, outsourcing and crowdsourcing marketplace for small business. Hire freelancers to work in software, writing, data entry and design right through to engineering and the sciences, sales and marketing, and accounting & legal services.
Find freelance jobs and make money online! We have freelance coders, writers, programmers, designers, marketers and more. Getting the best web design, custom programming, professional writing or affordable marketing has never been easier!
© Copyright 2013 Freelancer Technology Pty Limited (ACN 142 189 759)
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)