
trq
Staff Alumni-
Content Count
30,999 -
Joined
-
Last visited
-
Days Won
26
trq last won the day on September 10 2014
trq had the most liked content!
Community Reputation
255 ExcellentAbout trq

-
Rank
Prolific Member
- Birthday 06/12/1975
Profile Information
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
The simplest way to gain request-start to request-end speed is to cache using something like akamai.
-
CodeIgnitor will teach you nothing.
-
Codelgniter is an abomination and a dying project so forget it. Any of the other 3 are probably worthwhile though I don't hear much about Cake these days (but that is likely just the circles I hang in). As for where to start. This question gets asked all the time and the answer is always the same. Try them all and see. If I were in your position I would spend a weekend with each, and then decide. They are all very capable, so it's just personal opinions as to which one you like best.
-
How do you debug php? Which debugger do you use?
trq replied to renatov's topic in Editor Help (Dreamweaver, Zend, etc)
It is. I use it on a daily basis with a few large Symfony2 based applications. It's a great tool. http://thorpesystems.com/blog/debugging-php-in-vim I'm pretty interested in taking a look at http://phpdbg.com one of these days too as it ships with PHP5.6. -
vim for Windows? Yuk.
-
2 & 3 will never happen using vim's autocompletion. And 1, well, vim gets its context from a few different locations depending on the keystroke you use to start completion. Generally, I only ever use the context of the current buffer. This meens variables will only be completed if they already exist in the current buffer. Not that I use completion often anyway.
-
Not at all. That's why I said I rarely use it.
-
vim's code completion is the best (quickest and most flexible) Ive used, not that I use it often.
-
Silex (http://silex.sensiolabs.org) is an awesome micro-framework built on the shoulders of Symfony (another great though full stack framework).
-
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
$lstr needs to be the second argument to prepare() not query(). -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
Post your current code. -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
WHERE ".S_DB.".wpSlug in(%s)"), $lstr); -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
Instead of using variables directly within your query, you use placeholders. You then pass your variables in as extra arguments to prepare(). -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
Have you looked at the documentation for the prepare method? It looks similar to sprintf, and it looks like your code is not using it properly.