User SchizoDuckie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:47:53Z http://stackoverflow.com/feeds/user/18077 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/108699/good-php-orm-library/109889#109889 5 Answer by SchizoDuckie for Good PHP ORM Library? SchizoDuckie 2008-09-21T00:40:41Z 2009-07-20T18:45:20Z <p>I've been developing Pork.dbObject on my own. (a simple PHP orm / Active Record implementation) The main reason is that i find most orms's too heavy. </p> <p>The main thought of Pork.dbObejct is to be light-weight and simple to set up. No bunch of xml file, just one function call in the constructor to bind it, and an addRelation or addCustomRelation to define a relation to another dbObject.</p> <p>Give it a look: <a href="http://www.schizofreend.nl/pork.dbobject/" rel="nofollow">Pork.dbObject</a></p> http://stackoverflow.com/questions/1113716/orm-and-active-record-pattern-in-php/1115006#1115006 0 Answer by SchizoDuckie for ORM and Active Record Pattern in PHP? SchizoDuckie 2009-07-12T00:19:58Z 2009-07-12T00:19:58Z <p>I tried to keep it light-weight and understandable. Even comes with it's own Mootools based Class Generator :)</p> <p><a href="http://www.schizofreend.nl/Pork.dbObject/" rel="nofollow">http://www.schizofreend.nl/Pork.dbObject/</a></p> <p>check it out :)</p> http://stackoverflow.com/questions/913320/how-can-i-select-the-tag-name-and-attributes-and-values-of-those-attributes-with/914217#914217 0 Answer by SchizoDuckie for How can I select the tag-name and attributes AND values of those attributes with ONE regular expression? SchizoDuckie 2009-05-27T06:13:53Z 2009-05-27T06:13:53Z <p><a href="http://www.google.nl/search?q=do%2Bnot%2Buse%2Bregular%2Bexpressions%2Bto%2Bparse%2Bhtml" rel="nofollow">You should not be using regular expressions to parse HTML </a></p> http://stackoverflow.com/questions/900594/php-subversion-setup-ftp/901285#901285 1 Answer by SchizoDuckie for PHP Subversion Setup FTP SchizoDuckie 2009-05-23T10:41:30Z 2009-05-23T10:41:30Z <p>I use the following solution. Just install the SVN client on your webserver, and attach this into a privately accessible url:</p> <pre><code> &lt;?php // make sure you have a robot account that can't commit ;) $username = Settings::Load()-&gt;Get('svn', 'username'); $password = Settings::Load()-&gt;Get('svn', 'password'); $repos = Settings::Load()-&gt;Get('svn', 'repository'); echo '&lt;h1&gt;updating from svn&lt;/h1&gt;&lt;pre&gt;'; // for secutity, define an array of folders that you do want to be synced from svn. The rest should be skipped. $svnfolders = array( 'includes/' ,'plugins/' ,'images/' ,'templates/', 'index.php' =&gt; 'index.php'); if(!empty($_GET['justthisone']) &amp;&amp; array_search($_GET['justthisone'], $svnfolders) !== false){ // you can also just update one of above by passing it to $_GET $svnfiles = array($_GET['justthisone']); } foreach($svnfiles as $targetlocation) { echo system("svn export --username={$username} --password {$password} {$repos}{$targetlocation} ".dirname(__FILE__)."/../{$targetlocation} --force"); } die("&lt;/pre&gt;&lt;h1&gt;Done!&lt;/h1&gt;"); </code></pre> http://stackoverflow.com/questions/847278/google-maps-using-marker-clusterer-map-hangs-why/847833#847833 -1 Answer by SchizoDuckie for Google Maps using Marker CLusterer - map hangs !!! Why! SchizoDuckie 2009-05-11T12:18:30Z 2009-05-11T12:18:30Z <p>Markerclusterer sucks. Use this one:</p> <p><a href="http://googlemapsapi.martinpearman.co.uk/clustermarker" rel="nofollow">http://googlemapsapi.martinpearman.co.uk/clustermarker</a></p> <p>My demo: <a href="http://www.stopdetelefoongids.nl/stats/" rel="nofollow">http://www.stopdetelefoongids.nl/stats/</a> (source in /includes/maps.js )</p> http://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php/161778#161778 4 Answer by SchizoDuckie for What is the best IDE for PHP ? SchizoDuckie 2008-10-02T11:14:32Z 2009-05-10T11:01:08Z <p>Too bad no one mentioned PHPDesigner. It's really the best IDE i've came across (and i believe i've tried them all).</p> <p><a href="http://www.mpsoftware.dk/phpdesigner.php" rel="nofollow">PHPDesigner Website</a>.</p> <p>The main pro of this one is that it's <em>NOT</em> Java based. This keeps the whole thing quick.</p> <h3>Features:</h3> <ul> <li>Intelligent Syntax Highlighter - automatic switch between PHP, HTML, CSS, and JavaScript depending on your position!</li> <li>PHP (both version 4 and 5 are supported)</li> <li>SQL (MySQL, MSSQL 2000, MSSQL 7, Ingres, Interbase 6, Oracle, Sybase)</li> <li>HTML/XHTML</li> <li>CSS (both version 1 and 2.1 are supported)</li> <li>JavaScript</li> <li>VBScript</li> <li>Java</li> <li>C#</li> <li>Perl</li> <li>Python</li> <li>Ruby</li> <li>Smarty</li> </ul> <h3>PHP:</h3> <ul> <li>Support for both PHP 4 and PHP 5</li> <li>Code Explorer for PHP (includes, classes, extended classes, interfaces, properties, functions, constants and variables)</li> <li>Code Completion (intellisense) for PHP - code assist as you type</li> <li>Code Tip (code hint) for PHP - code assist as you type</li> <li>Work with any PHP frameworks (access classes, functions, variables etc. on the fly)</li> <li>PHP object oriented programming (OOP) including nested objects</li> <li>Support for PHP heredoc</li> <li>Enclose strings with single- or double quotes, linefeed, carriage return or tabs</li> <li>PHP server variables</li> <li>PHP statement templates (if, else, then, while…)</li> <li>Powerful PHP Code Beautifier with many configurations and profile support</li> <li>phpDocumentor wizard</li> <li>Add phpDocumentor documentation to functions and classes with one click!</li> <li>phpDocumentor tags</li> <li>Comment or uncomment with one click!</li> <li>Jump to any declaration with filtering by classes, interfaces, functions, variables or constants</li> </ul> <h3>Debug (PHP):</h3> <ul> <li>Debug with Xdebug</li> <li>Breakpoints</li> <li>Step by step debugging</li> <li>Step into</li> <li>Step over</li> <li>Run to cursor</li> <li>Run until return</li> <li>Call stack</li> <li>Watches</li> <li>Context variables</li> <li>Evaluate</li> <li>Profiling</li> <li>Multiple sessions</li> <li>Evaluation Tip</li> <li>Catch errors</li> </ul> http://stackoverflow.com/questions/837733/active-record-implementation-of-this-sql/838466#838466 1 Answer by SchizoDuckie for Active Record implementation of this SQL ? SchizoDuckie 2009-05-08T06:25:20Z 2009-05-08T06:31:16Z <p>You definately have to rethink tis yes... Why in the name of all that is holy are you abusing group_concat to implode something into HTML from SQL? What happens if there is a " character in the field you're concatting?</p> <p>Good rule of thumb is: Use your database for storage Use your PHP for fetching the data and transforming it to HTML or PDF, or whatever kind of output you want.</p> <p>Also, you might want to read up on using JOINS ? You're now running 2 queries where one with some joins and a well-built where clause will suffice.</p> http://stackoverflow.com/questions/777356/is-quercus-a-viable-replacement-for-php-in-java-environments/777596#777596 0 Answer by SchizoDuckie for Is Quercus a viable replacement for PHP in Java environments? SchizoDuckie 2009-04-22T14:48:22Z 2009-04-22T14:48:22Z <p>Well, if you check the copyright at the bottom of the Quercus page you see it's updated until '06 so i don't garantee any PHP 5.x support.</p> <p>But why would you even want to have the dual overhead like that? You can run java from php too :)</p> http://stackoverflow.com/questions/737385/easiest-form-validation-library-for-php/738510#738510 4 Answer by SchizoDuckie for Easiest Form validation library for PHP? SchizoDuckie 2009-04-10T18:51:18Z 2009-04-10T19:04:15Z <p>I wrote a simple class of my own, combining some regexes i collected over the years with PHP's sanatize and filter functions.</p> <pre><code>&lt;? /** * Pork Formvalidator. validates fields by regexes and can sanatize them. Uses PHP filter_var built-in functions and extra regexes * @package pork */ /** * Pork.FormValidator * Validates arrays or properties by setting up simple arrays * * @package pork * @author SchizoDuckie * @copyright SchizoDuckie 2009 * @version 1.0 * @access public */ class FormValidator { public static $regexes = Array( 'date' =&gt; "^[0-9]{4}[-/][0-9]{1,2}[-/][0-9]{1,2}\$", 'amount' =&gt; "^[-]?[0-9]+\$", 'number' =&gt; "^[-]?[0-9,]+\$", 'alfanum' =&gt; "^[0-9a-zA-Z ,.-_\\s\?\!]+\$", 'not_empty' =&gt; "[a-z0-9A-Z]+", 'words' =&gt; "^[A-Za-z]+[A-Za-z \\s]*\$", 'phone' =&gt; "^[0-9]{10,11}\$", 'zipcode' =&gt; "^[1-9][0-9]{3}[a-zA-Z]{2}\$", 'plate' =&gt; "^([0-9a-zA-Z]{2}[-]){2}[0-9a-zA-Z]{2}\$", 'price' =&gt; "^[0-9.,]*(([.,][-])|([.,][0-9]{2}))?\$", '2digitopt' =&gt; "^\d+(\,\d{2})?\$", '2digitforce' =&gt; "^\d+\,\d\d\$", 'anything' =&gt; "^[\d\D]{1,}\$" ); private $validations, $sanatations, $mandatories, $errors, $corrects, $fields; public function __construct($validations=array(), $mandatories = array(), $sanatations = array()) { $this-&gt;validations = $validations; $this-&gt;sanatations = $sanatations; $this-&gt;mandatories = $mandatories; $this-&gt;errors = array(); $this-&gt;corrects = array(); } /** * Validates an array of items (if needed) and returns true or false * */ public function validate($items) { $this-&gt;fields = $items; $havefailures = false; foreach($items as $key=&gt;$val) { if((strlen($val) == 0 || array_search($key, $this-&gt;validations) === false) &amp;&amp; array_search($key, $this-&gt;mandatories) === false) { $this-&gt;corrects[] = $key; continue; } $result = self::validateItem($val, $this-&gt;validations[$key]); if($result === false) { $havefailures = true; $this-&gt;addError($key, $this-&gt;validations[$key]); } else { $this-&gt;corrects[] = $key; } } return(!$havefailures); } /** * * Adds unvalidated class to thos elements that are not validated. Removes them from classes that are. */ public function getScript() { if(!empty($this-&gt;errors)) { $errors = array(); foreach($this-&gt;errors as $key=&gt;$val) { $errors[] = "'INPUT[name={$key}]'"; } $output = '$$('.implode(',', $errors).').addClass("unvalidated");'; $output .= "alert('there are errors in the form');"; // or your nice validation here } if(!empty($this-&gt;corrects)) { $corrects = array(); foreach($this-&gt;corrects as $key) { $corrects[] = "'INPUT[name={$key}]'"; } $output .= '$$('.implode(',', $corrects).').removeClass("unvalidated");'; } $output = "&lt;script type='text/javascript'&gt;{$output} &lt;/script&gt;"; return($output); } /** * * Sanatizes an array of items according to the $this-&gt;sanatations * sanatations will be standard of type string, but can also be specified. * For ease of use, this syntax is accepted: * $sanatations = array('fieldname', 'otherfieldname'=&gt;'float'); */ public function sanatize($items) { foreach($items as $key=&gt;$val) { if(array_search($key, $this-&gt;sanatations) === false &amp;&amp; !array_key_exists($key, $this-&gt;sanatations)) continue; $items[$key] = self::sanatizeItem($val, $this-&gt;validations[$key]); } return($items); } /** * * Adds an error to the errors array. */ private function addError($field, $type='string') { $this-&gt;errors[$field] = $type; } /** * * Sanatize a single var according to $type. * Allows for static calling to allow simple sanatization */ public static function sanatizeItem($var, $type) { $flags = NULL; switch($type) { case 'url': $filter = FILTER_SANITIZE_URL; break; case 'int': $filter = FILTER_SANITIZE_NUMBER_INT; break; case 'float': $filter = FILTER_SANITIZE_NUMBER_FLOAT; $flags = FILTER_FLAG_ALLOW_FRACTION | FILTER_FLAG_ALLOW_THOUSAND; break; case 'email': $var = substr($var, 0, 254); $filter = FILTER_SANITIZE_EMAIL; break; case 'string': default: $filter = FILTER_SANITIZE_STRING; $flags = FILTER_FLAG_NO_ENCODE_QUOTES; break; } $output = filter_var($var, $filter, $flags); return($output); } /** * * Validates a single var according to $type. * Allows for static calling to allow simple validation. * */ public static function validateItem($var, $type) { if(array_key_exists($type, self::$regexes)) { $returnval = filter_var($var, FILTER_VALIDATE_REGEXP, array("options"=&gt; array("regexp"=&gt;'!'.self::$regexes[$type].'!i'))) !== false; return($returnval); } $filter = false; switch($type) { case 'email': $var = substr($var, 0, 254); $filter = FILTER_VALIDATE_EMAIL; break; case 'int': $filter = FILTER_VALIDATE_INT; break; case 'boolean': $filter = FILTER_VALIDATE_BOOLEAN; break; case 'ip': $filter = FILTER_VALIDATE_IP; break; case 'url': $filter = FILTER_VALIDATE_URL; break; } return ($filter === false) ? false : filter_var($var, $filter) !== false ? true : false; } } </code></pre> <p>Now this requires mootools for some of the javascript you see here, but you can easily change that to your favorite javascript framework. All it does is look up the element, and add the 'unvalidated' CSS class to it.</p> <p>Usage is as simple as i always ever wanted:</p> <p>Example:</p> <pre><code>$validations = array( 'name' =&gt; 'anything', 'email' =&gt; 'email', 'alias' =&gt; 'anything', 'pwd'=&gt;'anything', 'gsm' =&gt; 'phone', 'birthdate' =&gt; 'date'); $required = array('name', 'email', 'alias', 'pwd'); $sanatize = array('alias'); $validator = new FormValidator($validations, $required, $sanatize); if($validator-&gt;validate($_POST)) { $_POST = $validator-&gt;sanatize($_POST); // now do your saving, $_POST has been sanatized. die($validator-&gt;getScript()."&lt;script type='text/javascript'&gt;alert('saved changes');&lt;/script&gt;"); } else { die($validator-&gt;getScript()); } </code></pre> <p>To validate just one element:</p> <pre><code>$validated = new FormValidator()-&gt;validate('blah@bla.', 'email'); </code></pre> <p>To sanatize just one element:</p> <pre><code>$sanatized = new FormValidator()-&gt;sanatize('&lt;b&gt;blah&lt;/b&gt;', 'string'); </code></pre> <p>The coolest thing about this class is that you can send your form with an ajax or iframe target and execute the resulting script. No need to refresh the page or re-send the same form data back to the browser :) Also, if the script needs changing, there's no difficult overdesigned framework to analyze, just change it any way you want :)</p> <p>Oh yeah, feel free to use this anywhere you want. No licenses</p> http://stackoverflow.com/questions/729041/securing-a-webpage-without-headers/730525#730525 1 Answer by SchizoDuckie for securing a webpage without headers SchizoDuckie 2009-04-08T15:28:10Z 2009-04-08T15:28:10Z <p>Your solution is </p> <pre><code>&lt;?php die($errormessage); </code></pre> <p>Die will just halt your script, not go through start, don't collect any data that you shouldn't.</p> http://stackoverflow.com/questions/706110/make-an-option-selected-based-on-get-is-this-even-possible/708575#708575 1 Answer by SchizoDuckie for Make an option selected based on $_GET. Is this even possible? SchizoDuckie 2009-04-02T06:52:56Z 2009-04-02T06:52:56Z <p>You shouldn't use GET's to change form values on a page. You should use POST for that :)</p> <p>This way, if anyone crawls your page, they won't have 10 times the same page with just the select box changed :)</p> http://stackoverflow.com/questions/689341/what-is-the-best-way-to-learn-touch-typing/689359#689359 0 Answer by SchizoDuckie for What is the best way to learn Touch Typing? SchizoDuckie 2009-03-27T11:16:49Z 2009-03-27T11:23:56Z <p>You don't need to learn Dvorak. I can type 600+ Chars/minute on a querty pad, no problem.</p> <p>The key is: Repetition, repetition, repetition. What you're doing while you learn typing is creating new 'highways' straight form your brain's spelling center through your spine to your fingers. </p> <p>Hence, a good typist will spell a word in his mind, and his fingers 'automatically' type those characters because there's a 10 lane highway from his brain to his fingers. In your case, it's a modest 3 lane highway.</p> <p>Practice, practice, practice. Good training for if you already know how to type : <a href="http://www.play4traffic.com" rel="nofollow">www.play4traffic.com</a></p> <p>There's also loads of typing tutor programs available online, but the key is repetition and persistance.</p> <p>My native language is Dutch, so in english it's not as good. I tried the test you gave:</p> <pre><code>317 points, so you achieved position 194065 of 2927935 on the ranking list You type 476 characters per minute You have 80 correct words and you have 4 wrong words </code></pre> http://stackoverflow.com/questions/677253/what-are-alternatives-to-sql-database-storage-for-a-web-site/677539#677539 8 Answer by SchizoDuckie for What are alternatives to SQL database storage for a web site? SchizoDuckie 2009-03-24T14:02:02Z 2009-03-24T14:02:02Z <p><a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> is invented for this. </p> <p>It's just a flat-file that contains a complete SQL database. You can query, update, insert, delete, there's little to no overhead in installation and all you need is the driver (which comes standard in PHP ) </p> <blockquote> <p>SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. </p> </blockquote> <p>Kind of weird that nobody mentioned this already?</p> http://stackoverflow.com/questions/656350/disable-context-menu-in-internet-explorer-control/656389#656389 1 Answer by SchizoDuckie for Disable context menu in Internet Explorer control SchizoDuckie 2009-03-17T23:10:14Z 2009-03-17T23:10:14Z <pre><code>AddHandler Me.WebBrowser1.Document.ContextMenuShowing, AddressOf WebContextMenuShowing </code></pre> <p>I litterally copied your question and worked my google-fu on it...</p> <p><a href="http://www.codeproject.com/KB/miscctrl/WebBrowserContextMenu.aspx" rel="nofollow">This was on the first result page</a> :-P</p> http://stackoverflow.com/questions/651902/building-php-uploader-for-gif-jpg-png-pdf-doc-wmv-files-feasible-or-should-i-b/653367#653367 1 Answer by SchizoDuckie for Building PHP uploader for gif/jpg/png/pdf/doc, wmv files, feasible, or should I buy something? SchizoDuckie 2009-03-17T08:09:32Z 2009-03-17T08:09:32Z <p>I'm building sort of the same right now using FancyUpload from digitarald for Mootools 1.2.1</p> <p>check this example: <a href="http://digitarald.de/project/fancyupload/2-0/showcase/photoqueue/" rel="nofollow">http://localhost/fancyupload/showcase/photoqueue/</a> to see how cool that is.</p> <p>Just make sure you read up on how to pass a session to Flash (using GET / POST parameters!! Your session cookies will not work. ) and do some checks on the filetype.</p> <p>Personally, i'd not let my users upload video's. Just use youtube and embed that stuff.</p> <p>Oh yeah, and if you want to have thumbnails of thet stuff that's uploaded, go for ImageMagick installed on your server along with Ghostscript. Imagemagick can then even generate thumbnails from PDF's!</p> http://stackoverflow.com/questions/609064/php-file-uploads-being-hijacked-by-partial-uploads/609598#609598 1 Answer by SchizoDuckie for PHP file uploads being "hijacked" by partial uploads SchizoDuckie 2009-03-04T07:42:59Z 2009-03-04T07:42:59Z <p>First off, check you PHP version.</p> <p>Second, check your file upload limits and POST_MAX_SIZE in php.ini</p> <p>It might just be that someone tries to upload a file that's too large :-)</p> http://stackoverflow.com/questions/585871/how-to-execute-a-php-spider-scraper-but-without-it-timing-out/585934#585934 1 Answer by SchizoDuckie for How to execute a PHP spider/scraper but without it timing out SchizoDuckie 2009-02-25T13:12:11Z 2009-02-25T13:12:11Z <p>take a look at how <a href="http://www.sphider.eu/" rel="nofollow">Sphider (PHP Search Engine)</a> does this. </p> <p>Basically you will just process some part of the sites you need, do your thing, and go on to the next request if there's a continue=true parameter set.</p> http://stackoverflow.com/questions/584085/i-need-a-php-regular-expression-that-replaces-one-tag-with-another/585011#585011 4 Answer by SchizoDuckie for I need a php regular expression that replaces one tag with another SchizoDuckie 2009-02-25T07:07:50Z 2009-02-25T07:07:50Z <p>DO NOT USE REGULAR EXPRESSIONS TO PARSE HTML</p> <p><a href="http://wiki.tcl.tk/4164" rel="nofollow"><strong>do not use regular expressions to parse HTML</strong></a></p> <p><em>do not use regular expressions to parse HTML</em></p> <p><a href="http://www.codinghorror.com/blog/archives/001016.html" rel="nofollow"><strong><em>do not use regular expressions to parse HTML</em></strong></a></p> <p><a href="http://blog.mikeseth.com/index.php?/archives/1-For-the-2,295,485th-time-DO-NOT-PARSE-HTML-WITH-REGULAR-EXPRESSIONS.html" rel="nofollow">do not use regular expressions to parse HTML</a></p> <p><a href="http://kore-nordmann.de/blog/do%5FNOT%5Fparse%5Fusing%5Fregexp.html" rel="nofollow">do not use regular expressions to parse HTML</a></p> <p>do you need more clarification?</p> <p>Use DomDocument::LoadFromHTML ;)</p> http://stackoverflow.com/questions/584676/how-to-make-pdo-run-set-names-utf8-each-time-i-connect-in-zendframework/584999#584999 1 Answer by SchizoDuckie for How to make PDO run SET NAMES utf8 each time I connect, In ZendFramework. SchizoDuckie 2009-02-25T07:00:56Z 2009-02-25T07:00:56Z <p>fear my <a href="http://www.google.nl/search?rlz=1C1GGLS%5FnlNL291NL303&amp;sourceid=chrome&amp;ie=UTF-8&amp;q=php%2Bpdo%2Bmysql%2Bset%2Bnames%2Butf%2B8%2Bconnect" rel="nofollow">google-fu</a></p> <pre><code>$pdo = new PDO( 'mysql:host=mysql.example.com;dbname=example_db', "username", "password", array(PDO::MYSQL\_ATTR\_INIT\_COMMAND =&gt; "SET NAMES utf8")); </code></pre> <p>first hit ;)</p> http://stackoverflow.com/questions/555415/can-i-include-curl-library-in-my-php-script-as-a-class/556122#556122 1 Answer by SchizoDuckie for Can I include CURL library in my PHP script as a class SchizoDuckie 2009-02-17T09:50:10Z 2009-02-17T09:50:10Z <p>There is a Pure PHP Curl implementation called <a href="http://code.blitzaffe.com/pages/phpclasses/category/52/fileid/7" rel="nofollow">libCurlEmu</a> </p> <p>Just bear in mind: you should <em>only</em> use this kind of stuff as a last resort if you can't get the extensions to work.</p> http://stackoverflow.com/questions/549506/should-php-frameworks-generate-javascript/550085#550085 0 Answer by SchizoDuckie for Should PHP frameworks generate JavaScript? SchizoDuckie 2009-02-15T00:49:32Z 2009-02-15T00:49:32Z <p>Personally, I like to write my Javascript by hand, unobtrusively so that i just have to add an extra event to document.domReady with for example the correct parameters. That little trigger function then gets the ball rolling.</p> <p>Best practice of the day: </p> <blockquote> <p>Keep frontend-code and backend code untangled as much as you can</p> </blockquote> http://stackoverflow.com/questions/549974/widgets-on-a-webapplication/550082#550082 0 Answer by SchizoDuckie for Widgets on a webapplication SchizoDuckie 2009-02-15T00:46:24Z 2009-02-15T00:46:24Z <p>What kind of confirmation are you looking for from us? If it's your system, your widgets, then just run them the way you think is best ?</p> <p>What you describe sounds a lot like a solid setup. Just go for it I'd say and not ask StackOverflow? :-P</p> http://stackoverflow.com/questions/515462/is-there-any-opensource-software-desktop-or-web-based-similar-to-macromedia-con/544516#544516 0 Answer by SchizoDuckie for Is there any opensource software (desktop or web-based) similar to Macromedia Contribute? SchizoDuckie 2009-02-13T02:28:33Z 2009-02-13T02:28:33Z <p>There is a commercial solution:</p> <p><a href="http://www.activecampaign.com/visualedit/" rel="nofollow">http://www.activecampaign.com/visualedit/</a> It has a free trial, i think that's exactly what you need :) You'll need a database though (for as far as i read)</p> http://stackoverflow.com/questions/540339/how-to-check-if-directory-contents-has-changed-with-php/540439#540439 2 Answer by SchizoDuckie for How to check if directory contents has changed with PHP? SchizoDuckie 2009-02-12T08:10:35Z 2009-02-12T08:10:35Z <p>You're thinking the wrong way.</p> <p>You should execute your directory indexer script as soon as someone's uploaded a new file and it's moved to the target location.</p> http://stackoverflow.com/questions/531536/php-orm-query-results-arrays-vs-result-handle-wrapped-in-iterator-interface 1 [PHP] ORM Query results: Arrays vs Result handle wrapped in Iterator interface SchizoDuckie 2009-02-10T08:55:08Z 2009-02-10T09:05:17Z <p>Okay, here's one for the pro's:</p> <p>For a couple of years now, i've been working on my own PHP ORM/ActiveRecord implementation that i named <a href="http://www.schizofreend.nl/Pork.dbObject" rel="nofollow">Pork.dbObject.</a></p> <p>It's loosly based on the 'make your own site with rails in 5 minutes' movie we all saw a couple of years ago. You can do things like:</p> <pre><code>$clients = dbObject::Search("Client", array("ID &gt; 500")); </code></pre> <p>or </p> <pre><code>$client = new Client(218); // fetch row with id 218 from client table </code></pre> <p>or </p> <pre><code>$projects = $client-&gt;Find('Project'); </code></pre> <p>This will fetch one or more rows from the database, wrap them in a dbObject and return them in one array, or return false of there are no results.</p> <p>All of this has been working perfectly in dozens of sites and backends, but now my colleague is using it to create a huge logparser and here starts the memory usage problems..</p> <p>The queries he runs can return over 20.000 rows, maybe even more, which is ofcourse not a very good thing to wrap into an object wrapper all at once and return as a single array.</p> <p>The obvious solution would be to return an object that implements the <a href="http://nl3.php.net/manual/en/class.iterator.php" rel="nofollow">Iterator</a> interface instead of an array. It shouldn't instantly fetch all the records from the resultset, but just hold the result resource for the generated database query and use mysql_fetch_* internally when you traverse the object as if it was an array.</p> <p>Now we get to my real question: Can I, without any problems just do this? Are databases able to handle multiple open resultsets, and mix them and keep them in memory for a while?</p> <p>For example, fetch 20 objects, loop them, let each of these 20 fetch 5 others, wich in their turn also fetch 3 others. This would create a loop where a number of different result handles will be kept in memory.</p> <p>I know i can't serialize one of these objects, but will i be able to implement this without any problems in PHP5, or will database interfaces give me problems?</p> http://stackoverflow.com/questions/525992/resize-iframe-height-according-to-content-height-in-it/526373#526373 3 Answer by SchizoDuckie for Resize iframe height according to content height in it SchizoDuckie 2009-02-08T21:00:45Z 2009-02-08T21:00:45Z <p>To directly answer your 2 subquestions: No, you cannot do this with Ajax, nor can you calculate it with PHP.</p> <p>What I have done in the past is use a trigger from the iframe'd page in window.onload (NOT domready, as it can take a while for images to load) to pass the page's body height to the parent.</p> <pre><code>&lt;body onload='parent.resizeIframe(document.body.scrollHeight)'&gt; </code></pre> <p>Then the parent.resizeIframe looks like this:</p> <pre><code>function resizeIframe(newHeight) { document.getElementById('blogIframe').style.height = parseInt(newHeight) + 10 + 'px'; } </code></pre> <p>Et voila, you have a robust resizer that triggers once the page is fully rendered with no nasty contentdocument vs contentWindow fiddling :)</p> <p>Sure, now people will see your iframe at default height first, but this can be easily handled by hiding your iframe at first and just showing a 'loading' image. Then, when the resizeIframe function kicks in, put 2 lines extra inthere that will hide the loading image, and show the iframe for that faux Ajax look.</p> <p>Ofcourse, this only works from the same domain, so you may want to have a proxy PHP script to embed this stuff, and once you go there, you might aswell just embed your blog's RSS feed directly into your site with PHP.</p> http://stackoverflow.com/questions/466884/what-generally-causes-php-to-encounter-a-stack-overflow/467682#467682 0 Answer by SchizoDuckie for What generally causes PHP to encounter a stack overflow? SchizoDuckie 2009-01-22T00:46:42Z 2009-01-22T00:46:42Z <p>[off-topic]</p> <pre><code>$stackoverflow = file_get_contents('http://stackoverflow.com/tags/php'); // voila, php encountered stackoverflow ^-^ </code></pre> http://stackoverflow.com/questions/464715/what-is-the-best-solution-for-remote-desktop-visual-support 4 What is the best solution for remote desktop / visual support? SchizoDuckie 2009-01-21T10:21:41Z 2009-01-21T11:56:38Z <p>We are currently investigating different remote-desktop support solutions to help our clients if they have any problems with our software and I would like some input on the best solutions out there.</p> <p>We have the following needs / wishes:</p> <ul> <li>Cross platform</li> <li>Preferrably no installation on the user-end</li> <li>Should penetrate firewalls and not be bothered by antivirus stuff.</li> <li>Should leave no residu behind after support.</li> </ul> <p>I know of VNC, logmeinrescue.com, dameware remote control, msn remote desktop and many others, but which one is the best?</p> http://stackoverflow.com/questions/455856/ajax-partial-refresh-of-a-parent-page-update-a-div-from-lightbox-window/455975#455975 0 Answer by SchizoDuckie for Ajax: Partial refresh of a parent page (update a div) from "lightbox" window SchizoDuckie 2009-01-18T21:56:56Z 2009-01-18T21:56:56Z <p>Erh.. Are you sure you know what you're doing here?</p> <p>Your 'modal' popup has never left the 'parent' page. Therefore, you can just update any DIV from the form request you know the ID of, close the lightbox, and vwalla.</p> <p>I'm a mootools guy myself, but since prototype is kinda the same i'm guessing it's something like this:</p> <pre><code>&lt;form onsubmit="$(this).send({update: 'yourParentDiv', onComplete: function() { lightBox.close() } })"&gt; </code></pre> http://stackoverflow.com/questions/454940/protecting-adobe-air-apps/455223#455223 0 Answer by SchizoDuckie for protecting adobe air apps SchizoDuckie 2009-01-18T14:34:10Z 2009-01-18T14:34:10Z <p>You can not protect anything that's webbased or javascript based, purely because there is complete sourcecode.</p> <p>Anyone who knows how to use 'right click' could copy your files. You can obfuscate your code, but you cannot protect it. If you think that this shouldn't be possible, write a desktop app in a 'real' programming language.</p> http://stackoverflow.com/questions/176712/how-can-i-find-an-applications-base-url/177368#177368 Comment by SchizoDuckie on How can I find an application's base url? SchizoDuckie 2009-03-20T18:01:16Z 2009-03-20T18:01:16Z Enable mod_rewrite in apache .htaccess in /application/ RewriteEngine On RewriteRule ^includes/ - [L] [OR] #do not apply to /includes OR RewriteRule ^images/ - [L] #do not apply to /images RewriteRule ^.* index.php #rewrite everything to index.php Parse $_SERVER['REQUEST_URI'] for your path! http://stackoverflow.com/questions/176712/how-can-i-find-an-applications-base-url/177368#177368 Comment by SchizoDuckie on How can I find an application's base url? SchizoDuckie 2009-03-20T17:59:03Z 2009-03-20T17:59:03Z Try URL rewriting. Just rewrite everything to an index.php in /application/ (except some http resources ofcourse) Make that index.php forward it to the correct subfolder. http://stackoverflow.com/questions/549427/howto-php-javascript-communication/549967#549967 Comment by SchizoDuckie on Howto: PHP/Javascript communication SchizoDuckie 2009-02-15T00:53:10Z 2009-02-15T00:53:10Z I do the same, but i target my javascript POST's to URL mappings instead of JSON, and i try to send as much plain HTTP POST stuff as i can. This way, you'll have the advantage of being able to use the same code also from a non-ajaxed trigger. (like a form submit) http://stackoverflow.com/questions/540339/how-to-check-if-directory-contents-has-changed-with-php/540439#540439 Comment by SchizoDuckie on How to check if directory contents has changed with PHP? SchizoDuckie 2009-02-12T19:26:29Z 2009-02-12T19:26:29Z As i re-read your response, you mean exactly the same solution as I do. http://stackoverflow.com/questions/540339/how-to-check-if-directory-contents-has-changed-with-php/540439#540439 Comment by SchizoDuckie on How to check if directory contents has changed with PHP? SchizoDuckie 2009-02-12T19:25:46Z 2009-02-12T19:25:46Z I really think <i>you</i> are not getting the question. He wants to have the cache to be refreshed if there is a new file uploaded into the directory where they place their photos. My solution is to wait for that trigger, then delete the cache. Whats the problem? http://stackoverflow.com/questions/540339/how-to-check-if-directory-contents-has-changed-with-php/540439#540439 Comment by SchizoDuckie on How to check if directory contents has changed with PHP? SchizoDuckie 2009-02-12T14:35:21Z 2009-02-12T14:35:21Z Why should you not be able to delete the cached items? Have you not heard of chmod? http://stackoverflow.com/questions/538921/can-i-stop-cakephp-fetching-all-rows-for-a-query/539237#539237 Comment by SchizoDuckie on Can I stop CakePHP fetching all rows for a query? SchizoDuckie 2009-02-12T02:15:52Z 2009-02-12T02:15:52Z Actually, i'm implementing this stuff right now using PDO and buffered queries. I return an object from my find function that implements iterable, and has a handle to the statement. <a href="http://stackoverflow.com/questions/531536/php-orm-query-results-arrays-vs-result-handle-wrapped-in-iterator-interface" rel="nofollow" title="php orm query results arrays vs result handle wrapped in iterator interface">stackoverflow.com/questions/531536/&hellip;</a> http://stackoverflow.com/questions/531536/php-orm-query-results-arrays-vs-result-handle-wrapped-in-iterator-interface/531560#531560 Comment by SchizoDuckie on [PHP] ORM Query results: Arrays vs Result handle wrapped in Iterator interface SchizoDuckie 2009-02-11T08:38:30Z 2009-02-11T08:38:30Z Thanks, this is exactly what i'm looking for. I'm rewriting everything to use PDO now. http://stackoverflow.com/questions/464715/what-is-the-best-solution-for-remote-desktop-visual-support/464744#464744 Comment by SchizoDuckie on What is the best solution for remote desktop / visual support? SchizoDuckie 2009-01-21T10:35:29Z 2009-01-21T10:35:29Z These are not the kind of solutions you can use for anyone that needs your support. This is more for remote management of servers. http://stackoverflow.com/questions/442780/howto-get-filename-from-which-class-was-included-in-php/443345#443345 Comment by SchizoDuckie on Howto get filename from which class was included in PHP SchizoDuckie 2009-01-14T19:13:37Z 2009-01-14T19:13:37Z So, what if you now use script C, which includes a file that has your first example (A), and then your example includes the second file from autoloading, file (B) You would have the wrong filename. http://stackoverflow.com/questions/433774/does-php-have-an-equivalent-of-javas-requestdispatcher-forward/434771#434771 Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward? SchizoDuckie 2009-01-12T12:36:53Z 2009-01-12T12:36:53Z and it wil fail miserably if PHP is running in safe mode... http://stackoverflow.com/questions/433774/does-php-have-an-equivalent-of-javas-requestdispatcher-forward/433793#433793 Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward? SchizoDuckie 2009-01-11T23:13:55Z 2009-01-11T23:13:55Z Simple reason why this would be wrong: What if the included script relies on $_SERVER['REQUEST_URI'] being something specific for protection? http://stackoverflow.com/questions/433774/does-php-have-an-equivalent-of-javas-requestdispatcher-forward/433793#433793 Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward? SchizoDuckie 2009-01-11T23:11:15Z 2009-01-11T23:11:15Z Please not that a Request.Forward() is not the same as an include! Request.forward gives you a 'clean request' starting from your entrance point. So you walk the whole request with no residu leftovers from the current request (like in-memory variables, objects, you name it) http://stackoverflow.com/questions/433774/does-php-have-an-equivalent-of-javas-requestdispatcher-forward/433885#433885 Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward? SchizoDuckie 2009-01-11T22:57:37Z 2009-01-11T22:57:37Z Yes, but .forward does something like this too FAIK. You do not have any environmental stuff that's associated with the current request. Therefore, another 'http request' has to happen, you do not want to execute this script in the same scope. as it can cause problems with defined variables. http://stackoverflow.com/questions/390276/how-to-programmatically-determine-the-document-root-in-php/390426#390426 Comment by SchizoDuckie on How to programmatically determine the document root in PHP? SchizoDuckie 2008-12-24T12:31:19Z 2008-12-24T12:31:19Z That is kindof useless to run that script on <i>every</i> run. Better handle it with some .htaccess instead of setting it.