login
Forgot?
Login with Facebook

Don't have an account? Register one now!

Looking for CakePHP developer

Bids 
17
Avg Bid
$193 USD
CLOSED
  • Project ID:

    499396
  • Project Type:

    Fixed
  • Budget:

    $30-$250 USD

Project Description:

Hi there,

I am urgently looking for a developer to assist me on an hourly basis. Experience required:

CakePHP : Expert
HTML/CSS : Expert
jQuery : Good
MySQL : Good
Subversion: Good
Joomla : Junior/Optional
Kannel : Optional

I do not want bids from a company, I want to deal with an individual to build a relationship with. I will need at least 20 hours per week of availability and I want someone who is reliable so if you tend to not respond to emails or messages, do not bother!

Please send sample CakePHP code with any bids or they will not be considered. Please bid with your hourly rate.

Thank you,
Donald

Skills required:

PHP

Project posted by:

donaldjackson South Africa
(3 Reviews)

Last seen:

Public Clarification Board

4 messages

  • link2vijays

    hai, my hourly rate is 10$. Unfortunately i cant attach the sample code now. i want to know what kind of development process first. my hourly rate is not constant.

    over 2 years ago

  • d2006

    Hi,
    Hope things are doing well.
    I am interested about your project.
    I have 3 yrs exp in php & currently i am working in cakephp also.

    I am waiting to hear from you.

    Thanks & regards,
    Dipanwita

    over 2 years ago

  • rahulthipse

    Hello Sir

    I have 4+yrs experience with HTML,CSS,JavaScript,AJAX,PHP,MYSQL

    I have done Couple of project in CakaPHP Framework.

    Here : http://www.biztrader.com/

    I like to work on this project.

    Please let me know your comments asap

    Thanks

    over 2 years ago

  • ojha143

    sir/madam,

    we r ready to work .
    we have experience on php,cakephp,joomla,smarty.


    we can make project as per ur requirement.


    thks.

    over 2 years ago


If you are the project creator or one of the bidders, please Log In for more options.


All Bids ()

SSYES India
SSYES
India From India     Offline
$200 in 5 days 
0
over 2 years ago
4.9

4.7

11 Reviews
62% Completion Rate
Hi, Please can you refer my PM for more details. Warm Regards
parthcoder India
Logo Relaese.jpg
parthcoder
India From India     Offline
  Freelancer Orientation (90%, 100th percentile)
  Foundation LimeExchange Member
$250 in 7 days 
0
over 2 years ago
4.4

4.0

13 Reviews
42% Completion Rate
Please see PMB for more details.
uniquelo India
logo.jpg
uniquelo
India From India     Offline
  Foundation LimeExchange Member
  Foundation EUFreelance.com Member
$200 in 7 days 
0
over 2 years ago
4.9

3.7

8 Reviews
41% Completion Rate
Hi, I have very good exp. over Cake php. please check pmb thanks
tygas
23f7217.jpg
tygas
    Offline
$250 in 1 day 
0
over 2 years ago
5.0

2.0

1 Review
100% Completion Rate
array ('rule' => array ('minLength', 8 ), 'message' => 'Password must be at least 8 characters long' ) ); public $uses = array ('Project', 'User', 'Cat', 'Budget', 'Bid', 'Pcb', 'Review' ); #set variab... more
array ('rule' => array ('minLength', 8 ), 'message' => 'Password must be at least 8 characters long' ) ); public $uses = array ('Project', 'User', 'Cat', 'Budget', 'Bid', 'Pcb', 'Review' ); #set variables private $databases = array ( 1 => "MySQL", 2 => "PostgreSQL", 3 => "MS SQL", 4 => "MS Access", 5 => "Kita" ); private $OS = array ( 1 => "Linux", 2 => "Mac", 3 => "Windows" ) ; function beforeFilter() { if (! isset ( $_SESSION )) session_start (); $this->set ( "version", VERSION ); if ($this->Session->check ( 'User' ) OR isset($_SESSION['User'])) { $this->set ( 'userinfo', $_SESSION['User'] ); } //~ lg($this->Session->read('User')); if ($this->Session->check ( 'Admin' ) OR isset($_SESSION['Admin'])) { $this->adminStats (); $this->set ( 'Admin', 1 ); } $this->set ( 'databases', $this->databases ); $this->set ( 'OS', $this->OS ); } function index() { #homepage #display in order of newest for all $this->listCats (); $featured = $this->Project->findAll ( 'Project.featured = 1 AND Project.paid = 1 AND Project.date_end >= ' . date ( "U" ) . ' AND Project.status != 1', '', 'date_created DESC', 50 ); for($x = 0; $x Bid->findCount ( 'Bid.project_id = ' . $featured [$x] ['Project'] ['project_id'] ); for($y = 1; $y 0) { $featured [$x] ['Project'] ['cat' . $y] = $this->catName ( $featured [$x] ['Project'] ['cat' . $y] ); } } } $standard = $this->Project->findAll ( 'Project.featured = 0 AND Project.paid = 1 AND Project.date_end >= ' . date ( "U" ) . ' AND Project.status != 1', '', 'date_created DESC', 50 ); for($x = 0; $x Bid->findCount ( 'Bid.project_id = ' . $standard [$x] ['Project'] ['project_id'] ); less
PHPXHTMLCSS India
PHPXHTMLCSS
India From India     Offline
$150 in 7 days 
0
over 2 years ago
5.0

1.6

5 Reviews
12% Completion Rate
Hi, please see PM for details, thank you.
anaknewbie Indonesia
anaknewbie
Indonesia From Indonesia     Offline
  Foundation EUFreelance.com Member
$250 in 30 days 
0
over 2 years ago
model : function paginateBookmarked(){ $this->recursive = 0; $this->bindModel( array('belongsTo' => array('PhotoAlbum') ) ); ... more
model : function paginateBookmarked(){ $this->recursive = 0; $this->bindModel( array('belongsTo' => array('PhotoAlbum') ) ); $result = array( 'fields'=>'Bookmark.bookmark_id', 'contain' => array( 'PhotoAlbum'=>array( 'fields'=>array('title','slug'), 'conditions'=>array('AND'=>array('PhotoAlbum.active'=>'1','PhotoAlbum.status'=>'1')), 'User'=>array('fields'=>array('username','id'),'conditions'=>array('User.status'=>'1')), 'Photo'=>array( 'fields'=>array('thumb'), 'conditions'=>array('AND'=>array('Photo.status'=>'1','Photo.primary'=>'1')), 'PhotoFolder'=>array('fields'=>'name'), ), ) ), 'limit' => 10, 'order'=>'Bookmark.bookmark_id DESC' ); return $result; } Controller : function newBookmark(){ Configure::write('debug',0); if ($this->RequestHandler->isAjax() && $this->RequestHandler->isGet()){ $result = $this->Bookmark->newBookmark($this->userId); if(!empty($result)){ $this->Json->result($result); }else{ $this->Json->error('1'); } } $this->autoRender = false; } I have 2 complicate website build by CakePHP and Jquery. AJAX, JSON format and nice design.  less
agphp India
agphp
India From India     Offline
  Foundation LimeExchange Member
$220 in 3 days 
0
over 2 years ago
I m 2yrs experience in cakephp.
ranesh Sri Lanka
ranesh
Sri Lanka From Sri Lanka     Offline
  Foundation EUFreelance.com Member
$100 in 3 days 
0
over 2 years ago
Hi I am a web developer, experienced in PHP,mysql, javascript,HTML,CSS,Joomla and ajax. But i am not good jQuery. I have been worked in several projects and I have good knowledge of web technologies. I will show ... more
Hi I am a web developer, experienced in PHP,mysql, javascript,HTML,CSS,Joomla and ajax. But i am not good jQuery. I have been worked in several projects and I have good knowledge of web technologies. I will show you the sites I have done through PM. I am available immediatly to start work. Please check PM Thanks Ranesh R  less
vhsleite Portugal
vhsleite
Portugal From Portugal     Offline
  Foundation EUFreelance.com Member
$100 in 7 days 
0
over 2 years ago
Hi. I'm really interested in your offer. I have 6+ years developing for the internet, using cakephp for almost 4 years now (started with v0.10 :) I'm sending you a PM with some more information. Hope to hear from you.
dumlee India
dumlee
India From India     Offline
$220 in 30 days 
0
over 2 years ago
0.0

0.0

0 Reviews
0% Completion Rate
Hi, I am an expert CakePHP developer with more than 3 yrs Exp in development of social networking sites which involved extensive use of --AJAX,--JQUERY,--Facebook API Integration. Looking forward to work with you fo... more
Hi, I am an expert CakePHP developer with more than 3 yrs Exp in development of social networking sites which involved extensive use of --AJAX,--JQUERY,--Facebook API Integration. Looking forward to work with you for a long term work relationship. Thanks. less
link2vijays India
link2vijays
India From India     Offline
$200 in 25 days 
0
over 2 years ago
Hi Donald, i have 1+ yr experienced in cakephp and something better in html and css too.
workercaptcha Bangladesh
workercaptcha
Bangladesh From Bangladesh     Offline
$200 in 30 days 
0
over 2 years ago
i am new.but i can do ur project.i am a cse student.so u can trust me
umeshsharma04 India
IMG00292-20101007-1000.jpg
umeshsharma04
India From India     Offline
  Foundation EUFreelance.com Member
$200 in 30 days 
0
over 2 years ago
0.0

0.0

0 Reviews
0% Completion Rate
Hi, I am really interested to work with you, because i am also looking for such kind of buyer. Let me tell you about myself, i am having 3 yrs of exp in PHP/MySQL/AJAX/Smarty/Jquery/Webservices/Cake/zend framewo... more
Hi, I am really interested to work with you, because i am also looking for such kind of buyer. Let me tell you about myself, i am having 3 yrs of exp in PHP/MySQL/AJAX/Smarty/Jquery/Webservices/Cake/zend framework. I can't provide the code because i work with a company but provide you the link for my work. which was developed in cake framework. i.e- www.augme.com I am looking further for communication. Thanks! less
uttamchand80 India
uttamchand80
India From India     Offline
$200 in 10 days 
0
over 2 years ago
I am Experienced PHP/MySQL developer.And have 1.5 year experience in Cake PHP
rahulthipse India
rahulthipse
India From India     Offline
$190 in 0 days 
0
over 2 years ago
Hello Please see PMB Thanks
ojha143 India
ojha143
India From India     Offline
$140 in 4 days 
0
over 2 years ago
plz check pm.
pzcloud18 India
pzcloud18
India From India     Offline
$210 in 7 days 
0
over 2 years ago
Hi we have years of experience and expertise in PHP. with our experienced and expert people we can assure you accurate,creative and timely results,according to your requirements.