User SchizoDuckie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T09:47:53Zhttp://stackoverflow.com/feeds/user/18077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/108699/good-php-orm-library/109889#1098895Answer by SchizoDuckie for Good PHP ORM Library?SchizoDuckie2008-09-21T00:40:41Z2009-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#11150060Answer by SchizoDuckie for ORM and Active Record Pattern in PHP?SchizoDuckie2009-07-12T00:19:58Z2009-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#9142170Answer by SchizoDuckie for How can I select the tag-name and attributes AND values of those attributes with ONE regular expression?SchizoDuckie2009-05-27T06:13:53Z2009-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#9012851Answer by SchizoDuckie for PHP Subversion Setup FTPSchizoDuckie2009-05-23T10:41:30Z2009-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> <?php
// make sure you have a robot account that can't commit ;)
$username = Settings::Load()->Get('svn', 'username');
$password = Settings::Load()->Get('svn', 'password');
$repos = Settings::Load()->Get('svn', 'repository');
echo '<h1>updating from svn</h1><pre>';
// 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' => 'index.php');
if(!empty($_GET['justthisone']) && 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("</pre><h1>Done!</h1>");
</code></pre>
http://stackoverflow.com/questions/847278/google-maps-using-marker-clusterer-map-hangs-why/847833#847833-1Answer by SchizoDuckie for Google Maps using Marker CLusterer - map hangs !!! Why!SchizoDuckie2009-05-11T12:18:30Z2009-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#1617784Answer by SchizoDuckie for What is the best IDE for PHP ?SchizoDuckie2008-10-02T11:14:32Z2009-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#8384661Answer by SchizoDuckie for Active Record implementation of this SQL ?SchizoDuckie2009-05-08T06:25:20Z2009-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#7775960Answer by SchizoDuckie for Is Quercus a viable replacement for PHP in Java environments?SchizoDuckie2009-04-22T14:48:22Z2009-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#7385104Answer by SchizoDuckie for Easiest Form validation library for PHP?SchizoDuckie2009-04-10T18:51:18Z2009-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><?
/**
* 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' => "^[0-9]{4}[-/][0-9]{1,2}[-/][0-9]{1,2}\$",
'amount' => "^[-]?[0-9]+\$",
'number' => "^[-]?[0-9,]+\$",
'alfanum' => "^[0-9a-zA-Z ,.-_\\s\?\!]+\$",
'not_empty' => "[a-z0-9A-Z]+",
'words' => "^[A-Za-z]+[A-Za-z \\s]*\$",
'phone' => "^[0-9]{10,11}\$",
'zipcode' => "^[1-9][0-9]{3}[a-zA-Z]{2}\$",
'plate' => "^([0-9a-zA-Z]{2}[-]){2}[0-9a-zA-Z]{2}\$",
'price' => "^[0-9.,]*(([.,][-])|([.,][0-9]{2}))?\$",
'2digitopt' => "^\d+(\,\d{2})?\$",
'2digitforce' => "^\d+\,\d\d\$",
'anything' => "^[\d\D]{1,}\$"
);
private $validations, $sanatations, $mandatories, $errors, $corrects, $fields;
public function __construct($validations=array(), $mandatories = array(), $sanatations = array())
{
$this->validations = $validations;
$this->sanatations = $sanatations;
$this->mandatories = $mandatories;
$this->errors = array();
$this->corrects = array();
}
/**
* Validates an array of items (if needed) and returns true or false
*
*/
public function validate($items)
{
$this->fields = $items;
$havefailures = false;
foreach($items as $key=>$val)
{
if((strlen($val) == 0 || array_search($key, $this->validations) === false) && array_search($key, $this->mandatories) === false)
{
$this->corrects[] = $key;
continue;
}
$result = self::validateItem($val, $this->validations[$key]);
if($result === false) {
$havefailures = true;
$this->addError($key, $this->validations[$key]);
}
else
{
$this->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->errors))
{
$errors = array();
foreach($this->errors as $key=>$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->corrects))
{
$corrects = array();
foreach($this->corrects as $key) { $corrects[] = "'INPUT[name={$key}]'"; }
$output .= '$$('.implode(',', $corrects).').removeClass("unvalidated");';
}
$output = "<script type='text/javascript'>{$output} </script>";
return($output);
}
/**
*
* Sanatizes an array of items according to the $this->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'=>'float');
*/
public function sanatize($items)
{
foreach($items as $key=>$val)
{
if(array_search($key, $this->sanatations) === false && !array_key_exists($key, $this->sanatations)) continue;
$items[$key] = self::sanatizeItem($val, $this->validations[$key]);
}
return($items);
}
/**
*
* Adds an error to the errors array.
*/
private function addError($field, $type='string')
{
$this->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"=> array("regexp"=>'!'.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' => 'anything',
'email' => 'email',
'alias' => 'anything',
'pwd'=>'anything',
'gsm' => 'phone',
'birthdate' => 'date');
$required = array('name', 'email', 'alias', 'pwd');
$sanatize = array('alias');
$validator = new FormValidator($validations, $required, $sanatize);
if($validator->validate($_POST))
{
$_POST = $validator->sanatize($_POST);
// now do your saving, $_POST has been sanatized.
die($validator->getScript()."<script type='text/javascript'>alert('saved changes');</script>");
}
else
{
die($validator->getScript());
}
</code></pre>
<p>To validate just one element:</p>
<pre><code>$validated = new FormValidator()->validate('blah@bla.', 'email');
</code></pre>
<p>To sanatize just one element:</p>
<pre><code>$sanatized = new FormValidator()->sanatize('<b>blah</b>', '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#7305251Answer by SchizoDuckie for securing a webpage without headersSchizoDuckie2009-04-08T15:28:10Z2009-04-08T15:28:10Z<p>Your solution is </p>
<pre><code><?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#7085751Answer by SchizoDuckie for Make an option selected based on $_GET. Is this even possible?SchizoDuckie2009-04-02T06:52:56Z2009-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#6893590Answer by SchizoDuckie for What is the best way to learn Touch Typing?SchizoDuckie2009-03-27T11:16:49Z2009-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#6775398Answer by SchizoDuckie for What are alternatives to SQL database storage for a web site?SchizoDuckie2009-03-24T14:02:02Z2009-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#6563891Answer by SchizoDuckie for Disable context menu in Internet Explorer controlSchizoDuckie2009-03-17T23:10:14Z2009-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#6533671Answer by SchizoDuckie for Building PHP uploader for gif/jpg/png/pdf/doc, wmv files, feasible, or should I buy something?SchizoDuckie2009-03-17T08:09:32Z2009-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#6095981Answer by SchizoDuckie for PHP file uploads being "hijacked" by partial uploadsSchizoDuckie2009-03-04T07:42:59Z2009-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#5859341Answer by SchizoDuckie for How to execute a PHP spider/scraper but without it timing outSchizoDuckie2009-02-25T13:12:11Z2009-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#5850114Answer by SchizoDuckie for I need a php regular expression that replaces one tag with anotherSchizoDuckie2009-02-25T07:07:50Z2009-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#5849991Answer by SchizoDuckie for How to make PDO run SET NAMES utf8 each time I connect, In ZendFramework.SchizoDuckie2009-02-25T07:00:56Z2009-02-25T07:00:56Z<p>fear my <a href="http://www.google.nl/search?rlz=1C1GGLS%5FnlNL291NL303&sourceid=chrome&ie=UTF-8&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 => "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#5561221Answer by SchizoDuckie for Can I include CURL library in my PHP script as a classSchizoDuckie2009-02-17T09:50:10Z2009-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#5500850Answer by SchizoDuckie for Should PHP frameworks generate JavaScript?SchizoDuckie2009-02-15T00:49:32Z2009-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#5500820Answer by SchizoDuckie for Widgets on a webapplicationSchizoDuckie2009-02-15T00:46:24Z2009-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#5445160Answer by SchizoDuckie for Is there any opensource software (desktop or web-based) similar to Macromedia Contribute?SchizoDuckie2009-02-13T02:28:33Z2009-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#5404392Answer by SchizoDuckie for How to check if directory contents has changed with PHP?SchizoDuckie2009-02-12T08:10:35Z2009-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-interface1[PHP] ORM Query results: Arrays vs Result handle wrapped in Iterator interfaceSchizoDuckie2009-02-10T08:55:08Z2009-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 > 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->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#5263733Answer by SchizoDuckie for Resize iframe height according to content height in itSchizoDuckie2009-02-08T21:00:45Z2009-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><body onload='parent.resizeIframe(document.body.scrollHeight)'>
</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#4676820Answer by SchizoDuckie for What generally causes PHP to encounter a stack overflow?SchizoDuckie2009-01-22T00:46:42Z2009-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-support4What is the best solution for remote desktop / visual support?SchizoDuckie2009-01-21T10:21:41Z2009-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#4559750Answer by SchizoDuckie for Ajax: Partial refresh of a parent page (update a div) from "lightbox" windowSchizoDuckie2009-01-18T21:56:56Z2009-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><form onsubmit="$(this).send({update: 'yourParentDiv', onComplete: function() { lightBox.close() } })">
</code></pre>
http://stackoverflow.com/questions/454940/protecting-adobe-air-apps/455223#4552230Answer by SchizoDuckie for protecting adobe air appsSchizoDuckie2009-01-18T14:34:10Z2009-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#177368Comment by SchizoDuckie on How can I find an application's base url?SchizoDuckie2009-03-20T18:01:16Z2009-03-20T18:01:16ZEnable 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#177368Comment by SchizoDuckie on How can I find an application's base url?SchizoDuckie2009-03-20T17:59:03Z2009-03-20T17:59:03ZTry 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#549967Comment by SchizoDuckie on Howto: PHP/Javascript communicationSchizoDuckie2009-02-15T00:53:10Z2009-02-15T00:53:10ZI 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#540439Comment by SchizoDuckie on How to check if directory contents has changed with PHP?SchizoDuckie2009-02-12T19:26:29Z2009-02-12T19:26:29ZAs 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#540439Comment by SchizoDuckie on How to check if directory contents has changed with PHP?SchizoDuckie2009-02-12T19:25:46Z2009-02-12T19:25:46ZI 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#540439Comment by SchizoDuckie on How to check if directory contents has changed with PHP?SchizoDuckie2009-02-12T14:35:21Z2009-02-12T14:35:21ZWhy 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#539237Comment by SchizoDuckie on Can I stop CakePHP fetching all rows for a query?SchizoDuckie2009-02-12T02:15:52Z2009-02-12T02:15:52ZActually, 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/…</a>http://stackoverflow.com/questions/531536/php-orm-query-results-arrays-vs-result-handle-wrapped-in-iterator-interface/531560#531560Comment by SchizoDuckie on [PHP] ORM Query results: Arrays vs Result handle wrapped in Iterator interfaceSchizoDuckie2009-02-11T08:38:30Z2009-02-11T08:38:30ZThanks, 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#464744Comment by SchizoDuckie on What is the best solution for remote desktop / visual support?SchizoDuckie2009-01-21T10:35:29Z2009-01-21T10:35:29ZThese 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#443345Comment by SchizoDuckie on Howto get filename from which class was included in PHPSchizoDuckie2009-01-14T19:13:37Z2009-01-14T19:13:37ZSo, 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#434771Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward?SchizoDuckie2009-01-12T12:36:53Z2009-01-12T12:36:53Zand 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#433793Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward?SchizoDuckie2009-01-11T23:13:55Z2009-01-11T23:13:55ZSimple 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#433793Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward?SchizoDuckie2009-01-11T23:11:15Z2009-01-11T23:11:15ZPlease 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#433885Comment by SchizoDuckie on Does PHP Have an Equivalent of Java's RequestDispatcher.forward?SchizoDuckie2009-01-11T22:57:37Z2009-01-11T22:57:37ZYes, 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#390426Comment by SchizoDuckie on How to programmatically determine the document root in PHP?SchizoDuckie2008-12-24T12:31:19Z2008-12-24T12:31:19ZThat is kindof useless to run that script on <i>every</i> run.
Better handle it with some .htaccess instead of setting it.