User DreamWerx - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T14:51:14Zhttp://stackoverflow.com/feeds/user/15487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/492549/how-can-i-insert-large-files-in-mysql-db-using-php/493275#4932750Answer by DreamWerx for How can i insert large files in mysql db using php?DreamWerx2009-01-29T20:30:00Z2009-01-29T20:30:00Z<p>The best answer is to use an implementation that is better and also works around that issue.
You can read an article <a href="http://www.dreamwerx.net/phpforum/?id=1" rel="nofollow">here</a>. Store 10MB, 1000MB, doesn't matter. The implementation chunks/cuts the file into many smaller pieces and stores them in multiple rows.. This helps with load and fetching so memory doesn't also become an issue.</p>
http://stackoverflow.com/questions/488518/polymorphic-domain-objects-based-on-data-mapper/488654#4886540Answer by DreamWerx for Polymorphic Domain Objects Based On Data MapperDreamWerx2009-01-28T17:55:34Z2009-01-28T17:55:34Z<p>What about having a setup like: </p>
<p>Table: Person , Sales Person, Customer Person, etc..
The person table stores the generic information about all sub-types of persons. Then there are other tables FK'd to the person table. It stores additional unique information about that sub-type.</p>
<p>Your objects would either extend, or call the generic 'person' object to access primary data, then call it's unique type object to get access the unique data for that sub-type?</p>
http://stackoverflow.com/questions/488635/php-matchmaker/488641#4886411Answer by DreamWerx for php matchmakerDreamWerx2009-01-28T17:52:12Z2009-01-28T17:52:12Z<p>I would suggest using APC to memcache the information in memory.. This would only work for 1 server. With multiple servers, you should look at something like memCacheD.</p>
http://stackoverflow.com/questions/455800/does-php-feature-short-hand-syntax-for-objects/455804#4558040Answer by DreamWerx for Does PHP feature short hand syntax for objects?DreamWerx2009-01-18T20:11:58Z2009-01-18T20:11:58Z<p>Not that I'm aware.. And why would you want to? Javascript is so limited in comparison? Objects should be described properly, and with scope and hinting, etc. </p>
http://stackoverflow.com/questions/439262/how-can-i-get-php-to-use-the-same-apc-cache-when-invoked-on-the-cli-and-the-web/440918#4409182Answer by DreamWerx for How can I get PHP to use the same APC cache when invoked on the CLI and the web?DreamWerx2009-01-13T21:44:41Z2009-01-13T21:44:41Z<p>Not possible.. The only way to accomplish something like what your asking is to use something like memcacheD. Or run what you need to run through your webserver. What's running CLI that you cannot run via a web script with a cronjob?</p>
http://stackoverflow.com/questions/411758/mysql-cant-set-maxallowedpackage-to-anything-grater-than-16mb/411871#4118711Answer by DreamWerx for mysql: can't set max_allowed_package to anything grater than 16MBDreamWerx2009-01-04T23:05:27Z2009-01-04T23:05:27Z<p>Extending the max_allowed_packet for this reason is the result of a bad implementation. I suggest reading <a href="http://www.dreamwerx.net/phpforum/?id=1" rel="nofollow">this</a> article/implementation for file storage. You can store files of any size.</p>
http://stackoverflow.com/questions/364989/smarty-benchmark-anyone/365537#3655371Answer by DreamWerx for Smarty benchmark, anyone?DreamWerx2008-12-13T18:24:09Z2008-12-13T18:24:09Z<p>Smarty itself is rather a large library... If your going to use Smarty, I suggest you use APC to cache the compiled version.. It will offset the rather large size of the Smarty library...</p>
http://stackoverflow.com/questions/360288/controller-inheritance-in-cake-php/360757#3607570Answer by DreamWerx for Controller inheritance in Cake PHP ???DreamWerx2008-12-11T20:23:07Z2008-12-11T20:23:07Z<p>Sure, you can easily subclass controllers in Cake.. and then you'd typically utilize their hook function such as 'beforeFilter', 'afterFilter', etc. to add runtime logic to your controllers.. I typically put at least 1 abstract controller between cakes controller and the final controller that you configure in the route.</p>
http://stackoverflow.com/questions/322931/how-to-split-data-over-mysql-tables/323477#3234773Answer by DreamWerx for How to split data over MySQL tablesDreamWerx2008-11-27T11:01:04Z2008-11-27T11:01:04Z<p>I would definately split the 'messages' table into multiple. Eg:</p>
<p>MessageStatus
Message
MessageText</p>
<p>This way if your displaying a list of items in someone inbox, you only need to scan the 'Message' table which is smaller and fixed length columns for max seek speed. When someone wants to open and see the message body you then hit the 'MessageText' table. The 'Message Status' is just a lookup table to join with a tinyint FK'd to the 'Message' table.</p>
<p>You'll have much more performance over 1 table with probably a mediumtext column.</p>
http://stackoverflow.com/questions/308156/apache-serves-blank-page/308465#3084650Answer by DreamWerx for Apache serves blank pageDreamWerx2008-11-21T11:21:10Z2008-11-21T11:21:10Z<p>If it's going to take some time to process a request/upload, you may want to consider creating a queue, where the user knows the file was successfully uploaded, and must just wait (can check status on a page perhaps); and you have a cronjob/background process to convert the file(s) and update them. This way it doesn't waste the users time at all.</p>
http://stackoverflow.com/questions/305179/is-there-a-way-to-see-a-prepared-query-as-it-will-be-executed-on-the-database/305442#3054423Answer by DreamWerx for Is there a way to see a prepared query as it will be executed on the database?DreamWerx2008-11-20T14:30:56Z2008-11-20T14:30:56Z<p>Turn on <a href="http://dev.mysql.com/doc/refman/5.0/en/query-log.html" rel="nofollow">mysql query logging</a> and it will log all queries to a text file for you to review.</p>
http://stackoverflow.com/questions/301714/corrupted-ajax-result/301743#3017431Answer by DreamWerx for corrupted ajax resultDreamWerx2008-11-19T12:26:21Z2008-11-19T12:26:21Z<p>I suggest getting Firefox + tamper data add-on.. You'll be able to see if your browser is downloading the javascript, and also view the ajax request + data to see what's going on. Also checkout the error console for javascript errors. I would start there.</p>
http://stackoverflow.com/questions/297713/how-do-you-output-contents-of-an-array-as-a-comma-separated-string/298402#2984021Answer by DreamWerx for How do you output contents of an array as a comma separated string?DreamWerx2008-11-18T10:41:46Z2008-11-18T10:41:46Z<p>Often this type of situation is people building an array from another table for use in a 2nd query.. If this is the case you can use a subquery to accomplish this. </p>
<p>Eg.
UPDATE Table SET Column = Value WHERE ID IN ( SELECT ID FROM Table2 WHERE CONDITIONS )</p>
http://stackoverflow.com/questions/295773/ajax-displaying-code-instead-of-result/295784#2957843Answer by DreamWerx for ajax displaying code instead of resultDreamWerx2008-11-17T15:06:01Z2008-11-17T15:06:01Z<p>Perhaps you don't have php short tags enabled? The full php on tag is <code>"<?php"</code>
Is the file extension one that is setup to be parsed by php?</p>
http://stackoverflow.com/questions/295523/mysql-maxallowedpacket-param-whats-the-catch/295725#2957250Answer by DreamWerx for MySQL max_allowed_packet param whats the catch?DreamWerx2008-11-17T14:48:19Z2008-11-17T14:48:19Z<p>I suggest not touching this variable, instead adjusting your storage implementation to handle any size files using the default settings.</p>
<p>Can you see <a href="http://www.dreamwerx.net/phpforum/?id=1" rel="nofollow">here</a> for an example.</p>
http://stackoverflow.com/questions/295112/php-simplexml-how-to-get-the-last-item/295177#2951770Answer by DreamWerx for PHP SimpleXML. How to get the last item?DreamWerx2008-11-17T09:30:35Z2008-11-17T09:30:35Z<p>You can start with this.. You'll be able to dig it out.. I don't like that they used the same tag name at 2 levels.. I try to avoid duplicate tag names.</p>
<pre><code><?php
$s = simplexml_load_file('in.xml');
$s->registerXPathNamespace('obix', 'http://obix.org/ns/schema/1.0');
$items = $s->xpath('//obix:list');
?>
</code></pre>
http://stackoverflow.com/questions/271168/checking-for-serialized-objects/271797#2717971Answer by DreamWerx for Checking for Serialized ObjectsDreamWerx2008-11-07T11:16:33Z2008-11-07T11:16:33Z<p>You could use is_a ... Pull it out of the session and see, you just need to know the classname to check for.</p>
<pre><code>if (is_a($_SESSION['foo'], 'UserInfoObject')) {
// We have one
}
</code></pre>
<p>It looks like PHP5 has an easier method:</p>
<pre><code>if ($_SESSION['foo'] instanceof UserInfoObject) {
// We have one
}
</code></pre>
<p><a href="http://www.php.net/manual/en/function.is-a.php" rel="nofollow">http://www.php.net/manual/en/function.is-a.php</a></p>
http://stackoverflow.com/questions/264119/mysql-data-modeling/265635#2656350Answer by DreamWerx for MySQL data modeling.DreamWerx2008-11-05T16:10:28Z2008-11-05T16:10:28Z<p>Have a base object, then use polymorphism to subclass that base object. The base object stores all the shared data (in 1 table).. Then each subclass has it's unique properties and sources them from a separate table key'd into the base table. Make the subclasses capable of loading both the common data from their parent object, aswell as loading their unique/distinct data. </p>
http://stackoverflow.com/questions/241715/how-to-disable-php-session-cookie/241730#2417300Answer by DreamWerx for How to disable PHP session cookie?DreamWerx2008-10-27T23:40:14Z2008-10-27T23:40:14Z<p>You can also put that setting in .htaccess so it applies to all scripts, otherwise you need to ensure that code is called on each request.</p>
<p>Eg.</p>
<p>php_value session.use_cookies 0</p>
http://stackoverflow.com/questions/241063/how-do-i-stop-users-circumventing-payment/241226#24122611Answer by DreamWerx for How do I stop users circumventing payment?DreamWerx2008-10-27T20:09:15Z2008-10-27T20:09:15Z<p>What your probably looking for is called Paypal IPN (Instant payment notification).. basically someone buys a product from you.. Paypal POSTS data to a script/url that you specify (only you and them know it).. Then what you do is post back data to paypal to confirm that the post they sent is real and not simulated/faked by someone.. At this point you know the transaction is valid.</p>
<p>Once you get notified of a valid payment, you can do something like send a download url via email, or wrap all that into a small login/password system using something simple like HTACCESS auth, and you've good to go. </p>
<p>Good luck.</p>
http://stackoverflow.com/questions/186656/where-to-store-uploaded-files-sound-pictures-and-video/187087#1870872Answer by DreamWerx for Where to store uploaded files (sound, pictures and video)DreamWerx2008-10-09T12:45:29Z2008-10-09T12:45:29Z<p>I would go for the database option. I've used it on a number of projects, some very larger 100+GB. The storage implementation is key, design it poorly and your performance will be punished. See <a href="http://www.dreamwerx.net/phpforum/?id=1" rel="nofollow">this</a> example for some good implementation ideas:<br />
Database storage allows more scalability and security.</p>
http://stackoverflow.com/questions/176479/png-creation-in-php-is-it-different-than-gif-and-jpg/176513#1765132Answer by DreamWerx for PNG Creation in PHP (is it different than gif and jpg?) DreamWerx2008-10-06T22:47:29Z2008-10-06T22:47:29Z<p>You need to look how your PHP is built.. Eg:</p>
<pre><code>GD Support enabled
GD Version bundled (2.0.28 compatible)
PNG Support enabled
</code></pre>
<p>If you don't have PNG support compiled in, you'll need to have that updated.</p>
http://stackoverflow.com/questions/170730/best-way-to-use-sessions-with-mvc-and-oo-php/170846#1708461Answer by DreamWerx for Best way to use sessions with MVC and OO PHPDreamWerx2008-10-04T18:59:45Z2008-10-04T18:59:45Z<p>I typically put this inside the controller. It just makes sense.. The controller decides what happens and why not let it decide if people are allowed to do the requested actions.
Typically you have multiple controllers in a MVC system. Eg. BaseController (abstract - common), NonSessionController extends BaseController (eg: used for static pages), SessionController extends BaseController (primary session handing here - this could be abstract). If you have for example different user types, you may want to polymorph this controller ones such as: AdminController, UserController, Etc.</p>
http://stackoverflow.com/questions/166557/a-good-database-modeling-tool/166606#1666061Answer by DreamWerx for A good database modeling tool?DreamWerx2008-10-03T12:38:22Z2008-10-03T12:38:22Z<p>I've been using for some time with great success what used to be called 'Case Studio'. It's now called '<a href="http://www.casestudio.com/" rel="nofollow">Toad Data Modeller</a>'..</p>
<p>It's pay, but quite good, worth at least a trial.</p>
http://stackoverflow.com/questions/154707/what-is-the-best-way-to-store-media-files-on-a-database/154787#1547873Answer by DreamWerx for What is the best way to store media files on a database?DreamWerx2008-09-30T20:11:22Z2008-09-30T20:11:22Z<p>I think storing them in the database is ok, as long as you use a good implementation. You can read this older but good article for ideas on how to keep the larger amounts of data in the database from affecting performance.</p>
<p><a href="http://www.dreamwerx.net/phpforum/?id=1" rel="nofollow">http://www.dreamwerx.net/phpforum/?id=1</a></p>
<p>I've had literally 100's of gigs loaded in mysql databases without any issues. The design and implementation is key, do it wrong and you'll suffer.</p>
<p>More DB Advantages (not already mentioned):
- Works better in a load balanced environment
- You can build in more backend storage scalability</p>
http://stackoverflow.com/questions/143122/using-simplexml-to-create-an-xml-object-from-scratch/143192#1431921Answer by DreamWerx for Using SimpleXML to create an XML object from scratchDreamWerx2008-09-27T07:42:05Z2008-09-27T07:42:05Z<p>Sure you can. Eg.</p>
<pre><code><?php
$newsXML = new SimpleXMLElement("<news></news>");
$newsXML->addAttribute('newsPagePrefix', 'value goes here');
$newsIntro = $newsXML->addChild('content');
$newsIntro->addAttribute('type', 'latest');
Header('Content-type: text/xml');
echo $newsXML->asXML();
?>
</code></pre>
<p>Output</p>
<pre><code><?xml version="1.0"?>
<news newsPagePrefix="value goes here"><content type="latest"/></news>
</code></pre>
<p>Have fun.</p>
http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php/138649#1386492Answer by DreamWerx for How to extract img src, title and alt from html using php?DreamWerx2008-09-26T10:30:44Z2008-09-26T10:30:44Z<p>If it's XHTML, your example is, you need only simpleXML.</p>
<pre><code><?php
$input = '<img src="/image/fluffybunny.jpg" title="Harvey the bunny" alt="a cute little fluffy bunny"/>';
$sx = simplexml_load_string($input);
var_dump($sx);
?>
</code></pre>
<p>Output:</p>
<pre><code>object(SimpleXMLElement)#1 (1) {
["@attributes"]=>
array(3) {
["src"]=>
string(22) "/image/fluffybunny.jpg"
["title"]=>
string(16) "Harvey the bunny"
["alt"]=>
string(26) "a cute little fluffy bunny"
}
}
</code></pre>
http://stackoverflow.com/questions/131017/securing-db-and-session-data-on-a-php-shared-host/132086#1320860Answer by DreamWerx for Securing DB and session-data on a PHP shared hostDreamWerx2008-09-25T08:17:17Z2008-09-25T08:17:17Z<p>I would solve the problem with a infrasturcture change instead of a code one.
Consider upgrading to a VPS server. Nowdays you can get them very inexpensive. I've seen VPS's starting @ 10$/mo.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127847#1278470Answer by DreamWerx for PHP Optimization TipsDreamWerx2008-09-24T15:22:58Z2008-09-24T15:22:58Z<p>Use late-binding, that is only including specific files/classes when they are needed. Less code to parse.</p>
http://stackoverflow.com/questions/126917/php-object-caching/126986#1269860Answer by DreamWerx for PHP object cachingDreamWerx2008-09-24T13:02:37Z2008-09-24T13:02:37Z<p>Some hosting places may have APC compiled in.. That would allow you to store the objects in memory.</p>
http://stackoverflow.com/questions/455109/var-for-a-class-in-php/455364#455364Comment by DreamWerx on var for a class in PHPDreamWerx2009-01-18T20:14:34Z2009-01-18T20:14:34ZDefinately right; putting this information in the session is plain stupidity.http://stackoverflow.com/questions/439262/how-can-i-get-php-to-use-the-same-apc-cache-when-invoked-on-the-cli-and-the-web/440918#440918Comment by DreamWerx on How can I get PHP to use the same APC cache when invoked on the CLI and the web?DreamWerx2009-01-13T21:49:54Z2009-01-13T21:49:54ZVery true.. web is typically high impact/hits, and CLI one off calls.http://stackoverflow.com/questions/409258/database-design-for-sports-meetingin-mysqlComment by DreamWerx on Database design for sports meeting(in MySQL)DreamWerx2009-01-03T18:27:18Z2009-01-03T18:27:18ZConsider using something like mysql workbench (free) to design your tables visually, that will often help to visualize relationships and where data belongs.http://stackoverflow.com/questions/312455/scaling-lamp/312473#312473Comment by DreamWerx on Scaling LAMPDreamWerx2008-11-23T15:24:03Z2008-11-23T15:24:03Ztroelskn: There are many advantages of storing files in a database over a filesystem. I'm sure there are threads/questions on here that address them.http://stackoverflow.com/questions/312455/scaling-lamp/312473#312473Comment by DreamWerx on Scaling LAMPDreamWerx2008-11-23T13:05:40Z2008-11-23T13:05:40ZDefinately if the implementation is poor it, your right it could be the nail in the coffin.
Depends on the storage implementation; mine doesn't require the entire file in memory, and I've had files as large as 2-3GB files loaded into it. Both with a web (php) and ftp (java) interface.http://stackoverflow.com/questions/312455/scaling-lamp/312473#312473Comment by DreamWerx on Scaling LAMPDreamWerx2008-11-23T12:56:43Z2008-11-23T12:56:43ZGood comments, storing video in mysql isn't necessarily a problem if it's done right. I've certainly done it before with great success.http://stackoverflow.com/questions/305973/when-should-you-start-using-memcached/305993#305993Comment by DreamWerx on When should you start using Memcached?DreamWerx2008-11-20T17:29:00Z2008-11-20T17:29:00ZI think it's hard to quantify using response times, it should be more based on the user experience and when they feel it is getting slow.http://stackoverflow.com/questions/304391/most-efficient-way-to-delimit-key/304411#304411Comment by DreamWerx on Most efficient way to delimit key.DreamWerx2008-11-20T09:52:23Z2008-11-20T09:52:23ZWhat's the data source? If it's a DB, you can have the DB format it for you before it even gets to PHP.http://stackoverflow.com/questions/295112/php-simplexml-how-to-get-the-last-item/295250#295250Comment by DreamWerx on PHP SimpleXML. How to get the last item?DreamWerx2008-11-17T12:19:44Z2008-11-17T12:19:44ZExcellent, your edited version works perf. +1http://stackoverflow.com/questions/295112/php-simplexml-how-to-get-the-last-item/295258#295258Comment by DreamWerx on PHP SimpleXML. How to get the last item?DreamWerx2008-11-17T11:04:05Z2008-11-17T11:04:05ZHave you tested this code? $objects returns false.http://stackoverflow.com/questions/295112/php-simplexml-how-to-get-the-last-item/295250#295250Comment by DreamWerx on PHP SimpleXML. How to get the last item?DreamWerx2008-11-17T11:02:32Z2008-11-17T11:02:32ZHave you tested this code? I just ran it, and it didn't work. $last_kwh return false;http://stackoverflow.com/questions/241063/how-do-i-stop-users-circumventing-payment/241226#241226Comment by DreamWerx on How do I stop users circumventing payment?DreamWerx2008-10-27T21:28:03Z2008-10-27T21:28:03ZYou either need to fix the problem correctly once, or keep working around with with hack fixes like URL tracking, etc. that people will eventually be able to circumvent. Not fixing the problem correctly can potentially lose you more sales in fraud. IPN is definately the way to go. http://stackoverflow.com/questions/170129/best-ide-editor-for-php/170151#170151Comment by DreamWerx on best IDE / Editor for PHPDreamWerx2008-10-04T12:11:39Z2008-10-04T12:11:39ZAdd another vote for Zend Studio 5.5, haven't had time to look at the new Eclipse based one yet.http://stackoverflow.com/questions/164991/char-or-varchar-as-primary-key-in-an-isam-mysql-table/165015#165015Comment by DreamWerx on CHAR() or VARCHAR() as primary key in an ISAM mySQL table?DreamWerx2008-10-03T12:34:41Z2008-10-03T12:34:41ZIn this case I think CHAR makes more sense. It's a fixed length field. If all the fields in the table are fixed length, the query will run faster as mysql must not calculate where the next records start. Nowdays space is cheap, I'll trade a bit of space here for more speed.http://stackoverflow.com/questions/162176/reading-very-large-files-in-php/162210#162210Comment by DreamWerx on Reading very large files in PHPDreamWerx2008-10-02T13:25:41Z2008-10-02T13:25:41ZI wouldn't think PHP would have a problem with 6MB csv files? Seems like a small enough file for it to handle. As per the comments above, please post the exact error/and or code. Could be memory error your hitting? Or a max_execution_time? We need more info to help.