Alan Storm
|
Registered User
|
Portland based Web Developer/Programmer/Engineer. Also, secret immortal (don't tell anyone)
|
|
8h |
answered | <!— --> comment brackets in PHP |
|
16h |
revised |
interface vs abstract class added 685 characters in body |
|
19h |
revised |
interface vs abstract class added 3 characters in body |
|
1d |
accepted | Performance tuning CakePHP application |
|
1d |
answered | interface vs abstract class |
|
2d |
accepted | Load method from current Controller |
|
2d |
answered | Load method from current Controller |
|
Nov 26 |
answered | PHP Zend Framework - Zend_Config and global state |
|
Nov 26 |
answered | Performance tuning CakePHP application |
|
Nov 25 |
revised |
PHP6 and its future: How to best handle Unicode in a future proof way? added 55 characters in body; edited title |
|
Nov 25 |
asked | Oracle: If Table Exists |
|
Nov 23 |
asked | Library for Parsing Whois Results |
|
Nov 23 |
comment |
Php HTML DOM parsing. What object/library/function are you using to parse the DOM? (i.e., what's in $ret[0]?) |
|
Nov 23 |
comment |
Magento Debugging Environment The Zend Framework is just a PHP Library, xDebug plays fine with it (you might be thinking of the Zend Platform) |
|
Nov 21 |
answered | php str_replace issue or bug? |
|
Nov 21 |
comment |
Robust, Mature HTML Parser for PHP I've be re-researching this, and discovered that the problem I was having with DomDocument's loadXML method was due to an older linked version of libxml. I've been working on more up-to-date systems and DomDocument::loadHTML works like a charm. |
|
Nov 21 |
comment |
Apache Mod Rewrite: RewriteRule with L argument. What’s wrong? Are these rules being put in .htaccess or in your main apache config (often http.conf)? That will change the behavior of mod_rewrite. |
|
Nov 21 |
answered | How to strip this part of my string ? |
|
Nov 20 |
comment |
Coding Standard Dupe: stackoverflow.com/questions/383659/… |
|
Nov 20 |
revised |
any special php function to make a string ‘url’ friendly for address-bar ? edited body |
|
Nov 20 |
accepted | any special php function to make a string ‘url’ friendly for address-bar ? |
|
Nov 20 |
comment |
any special php function to make a string ‘url’ friendly for address-bar ? Totally screwed up that regex (forgot the negation) |
|
Nov 20 |
revised |
any special php function to make a string ‘url’ friendly for address-bar ? added 1 characters in body |
|
Nov 19 |
comment |
any special php function to make a string ‘url’ friendly for address-bar ? That's an interesting point dusoft and worth investigating. However, you'd need to incorporate some kind of 'check the database to see if this key already exists and if it does then somehow make it unique' logic OR write some uber-complicated sanitizing method that creates a unique key each time while still maintaining the semantic value of the URL fragment. |
|
Nov 19 |
answered | any special php function to make a string ‘url’ friendly for address-bar ? |
|
Nov 19 |
revised |
Interactive Debugging and Breakpoints with Xdebug and the Zend Framework edited tags |
|
Nov 19 |
answered | Interactive Debugging and Breakpoints with Xdebug and the Zend Framework |
|
Nov 19 |
awarded | ● Populist |
|
Nov 18 |
asked | Interactive Debugging and Breakpoints with Xdebug and the Zend Framework |
|
Nov 18 |
asked | What’s the Difference Between Extension and zend_extension in php.ini? |
|
Nov 17 |
answered | Magento Debugging Environment |
|
Nov 17 |
revised |
magento extension installation edited tags; added 5 characters in body |
|
Nov 17 |
answered | magento extension installation |
|
Nov 16 |
asked | Using jQuery selectors to get form elements based on value or state |
|
Nov 16 |
revised |
correct HTTP header for json file added 13 characters in body |
|
Nov 16 |
awarded | ● php |
|
Nov 15 |
comment |
PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? Again, the point of the post wasn't the regular expression, which was simply copied from the OP. |
|
Nov 15 |
comment |
PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? @gumbo: the code sample was meant to be more illustrative of the concept of a wrapper function than is was fixing the particular regular expression @tom true enough, and my post is just an optinion on the subject. but this kind of optimization is often endless. For example, right now you're waiting on an answer to this question when you could be moving on and solving another problem in your app. Also, performance of string comparisions in PHP is hugely dependent on the input variables. |
|
Nov 15 |
revised |
PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? added 32 characters in body |
|
Nov 14 |
answered | PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? |
|
Nov 14 |
asked | What is the “right” Way to Provide a Zend Application With a Database Handler |
|
Nov 14 |
accepted | MVC… how and why, and what other good options are there (PHP)? |
|
Nov 12 |
comment |
Magento - How to filter a product collection using 2 category filters? It helps tremensoudly with Magento problems if you can 1. Post an example of PHP code you're using to apply the filter 2. For any variables in the code, let people know the object's class There's not a proper consistent shared vocabulary among Magento developers, so giving people as much context as possible with help then figure out an answer. |
|
Nov 12 |
comment |
How do I filter a collection by a YesNo type attribute? One last suggestion. Have you tried changing the value of the input back and forth between no and yes and then trying the filtering again? I've seen situations where an attribute has an "unset' value, but the default is displayed on the form. |
|
Nov 12 |
revised |
JSON vs. Serialized Array in database edited body |
|
Nov 11 |
comment |
How do I filter a collection by a YesNo type attribute? Is this a Yes/No that you setup yourself in the interface? Maybe eav business is missing some key bit of information when you set it up. That would be my next guess if it was my problem. Here's how I'd debug it. Dump the contents of your database using mysqldump (non-binary) Make a change to one of the Yes/No menus that works, and make another database dump. Diff the two files to see what's changed. Then, track down the similar areas of the database for your problem menu item and see if anything looks "wrong". (vague and tedious, but that's an undocumented system for you) |
|
Nov 11 |
revised |
get ip address in php added 6 characters in body |
|
Nov 11 |
comment |
php: pass large arrays of data through pages Be careful with this approach. It works when you have a single database, but if you ever need to scale past that it's not going to work reliably. The lage between a master DB replicating out to it's slaves is often longer than the lag between page loads. |
|
Nov 11 |
accepted | How to use Server Side Includes in Magento Description? |
|
Nov 11 |
answered | Magento design possible in all pages? |
