Search Results

2
votes
2answers
143 views

Any tips for switching from CakePHP to Ruby on Rails?

I've been wanting to make the switch from PHP. Anyone care to highlight the similar classes or the key differences between CakePHP and Ruby on Rails? Thank you! …
0
votes

Installing cake php on xampp

Have you checked if your database user name and password is correct? Also ensure that your database does exist. The following is the default username and password (actually, no pas …
0
votes

Best PHP Framework Training Resource?

I recommend CakePHP. …
0
votes

best IDE / Editor for PHP

I use NetBeans for PHP and like it very much. …
1
vote

How to use the php command line interactively?

I believe you can use include. You can include files relative to the location you called the command. …
0
votes

good book about PHP with good exercises

Just a note, if you intend to use a particular framework, you may want to check out books on those frameworks first then move on to read more on PHP language itself. This could help you get started …
1
vote

Variable naming conventions in CakePHP

There isn't a right or wrong answer to this. I usually name it: $active_sites = $this->Site->find('all',array('conditions'=>array('Site.active' => '1'), 'recursive' => …
1
vote

ORM and Active Record Pattern in PHP?

You can take a look at these questions though they're not exactly PHP specific: Are there …
0
votes

php local development, apache www directory permissions

It doesn't matter, I personally placed it in /var/www/ and put it under the www-data group, and placed my username into the www-data group. You add yourself into the group with: …
0
votes

loaded php.ini file doesn’t ‘work’

There could be multiple php.ini. In the case of XAMPP, there is one at "U:\xampp\php\" and one in "U:\xampp\apache\bin". The former is for PHP CLI. …