User DreamWerx - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:51:14Z http://stackoverflow.com/feeds/user/15487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/492549/how-can-i-insert-large-files-in-mysql-db-using-php/493275#493275 0 Answer by DreamWerx for How can i insert large files in mysql db using php? DreamWerx 2009-01-29T20:30:00Z 2009-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#488654 0 Answer by DreamWerx for Polymorphic Domain Objects Based On Data Mapper DreamWerx 2009-01-28T17:55:34Z 2009-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#488641 1 Answer by DreamWerx for php matchmaker DreamWerx 2009-01-28T17:52:12Z 2009-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#455804 0 Answer by DreamWerx for Does PHP feature short hand syntax for objects? DreamWerx 2009-01-18T20:11:58Z 2009-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#440918 2 Answer by DreamWerx for How can I get PHP to use the same APC cache when invoked on the CLI and the web? DreamWerx 2009-01-13T21:44:41Z 2009-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#411871 1 Answer by DreamWerx for mysql: can't set max_allowed_package to anything grater than 16MB DreamWerx 2009-01-04T23:05:27Z 2009-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#365537 1 Answer by DreamWerx for Smarty benchmark, anyone? DreamWerx 2008-12-13T18:24:09Z 2008-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#360757 0 Answer by DreamWerx for Controller inheritance in Cake PHP ??? DreamWerx 2008-12-11T20:23:07Z 2008-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#323477 3 Answer by DreamWerx for How to split data over MySQL tables DreamWerx 2008-11-27T11:01:04Z 2008-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#308465 0 Answer by DreamWerx for Apache serves blank page DreamWerx 2008-11-21T11:21:10Z 2008-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#305442 3 Answer by DreamWerx for Is there a way to see a prepared query as it will be executed on the database? DreamWerx 2008-11-20T14:30:56Z 2008-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#301743 1 Answer by DreamWerx for corrupted ajax result DreamWerx 2008-11-19T12:26:21Z 2008-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#298402 1 Answer by DreamWerx for How do you output contents of an array as a comma separated string? DreamWerx 2008-11-18T10:41:46Z 2008-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#295784 3 Answer by DreamWerx for ajax displaying code instead of result DreamWerx 2008-11-17T15:06:01Z 2008-11-17T15:06:01Z <p>Perhaps you don't have php short tags enabled? The full php on tag is <code>"&lt;?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#295725 0 Answer by DreamWerx for MySQL max_allowed_packet param whats the catch? DreamWerx 2008-11-17T14:48:19Z 2008-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#295177 0 Answer by DreamWerx for PHP SimpleXML. How to get the last item? DreamWerx 2008-11-17T09:30:35Z 2008-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>&lt;?php $s = simplexml_load_file('in.xml'); $s-&gt;registerXPathNamespace('obix', 'http://obix.org/ns/schema/1.0'); $items = $s-&gt;xpath('//obix:list'); ?&gt; </code></pre> http://stackoverflow.com/questions/271168/checking-for-serialized-objects/271797#271797 1 Answer by DreamWerx for Checking for Serialized Objects DreamWerx 2008-11-07T11:16:33Z 2008-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#265635 0 Answer by DreamWerx for MySQL data modeling. DreamWerx 2008-11-05T16:10:28Z 2008-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#241730 0 Answer by DreamWerx for How to disable PHP session cookie? DreamWerx 2008-10-27T23:40:14Z 2008-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#241226 11 Answer by DreamWerx for How do I stop users circumventing payment? DreamWerx 2008-10-27T20:09:15Z 2008-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#187087 2 Answer by DreamWerx for Where to store uploaded files (sound, pictures and video) DreamWerx 2008-10-09T12:45:29Z 2008-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#176513 2 Answer by DreamWerx for PNG Creation in PHP (is it different than gif and jpg?) DreamWerx 2008-10-06T22:47:29Z 2008-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#170846 1 Answer by DreamWerx for Best way to use sessions with MVC and OO PHP DreamWerx 2008-10-04T18:59:45Z 2008-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#166606 1 Answer by DreamWerx for A good database modeling tool? DreamWerx 2008-10-03T12:38:22Z 2008-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#154787 3 Answer by DreamWerx for What is the best way to store media files on a database? DreamWerx 2008-09-30T20:11:22Z 2008-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#143192 1 Answer by DreamWerx for Using SimpleXML to create an XML object from scratch DreamWerx 2008-09-27T07:42:05Z 2008-09-27T07:42:05Z <p>Sure you can. Eg.</p> <pre><code>&lt;?php $newsXML = new SimpleXMLElement("&lt;news&gt;&lt;/news&gt;"); $newsXML-&gt;addAttribute('newsPagePrefix', 'value goes here'); $newsIntro = $newsXML-&gt;addChild('content'); $newsIntro-&gt;addAttribute('type', 'latest'); Header('Content-type: text/xml'); echo $newsXML-&gt;asXML(); ?&gt; </code></pre> <p>Output</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;news newsPagePrefix="value goes here"&gt;&lt;content type="latest"/&gt;&lt;/news&gt; </code></pre> <p>Have fun.</p> http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php/138649#138649 2 Answer by DreamWerx for How to extract img src, title and alt from html using php? DreamWerx 2008-09-26T10:30:44Z 2008-09-26T10:30:44Z <p>If it's XHTML, your example is, you need only simpleXML.</p> <pre><code>&lt;?php $input = '&lt;img src="/image/fluffybunny.jpg" title="Harvey the bunny" alt="a cute little fluffy bunny"/&gt;'; $sx = simplexml_load_string($input); var_dump($sx); ?&gt; </code></pre> <p>Output:</p> <pre><code>object(SimpleXMLElement)#1 (1) { ["@attributes"]=&gt; array(3) { ["src"]=&gt; string(22) "/image/fluffybunny.jpg" ["title"]=&gt; string(16) "Harvey the bunny" ["alt"]=&gt; 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#132086 0 Answer by DreamWerx for Securing DB and session-data on a PHP shared host DreamWerx 2008-09-25T08:17:17Z 2008-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#127847 0 Answer by DreamWerx for PHP Optimization Tips DreamWerx 2008-09-24T15:22:58Z 2008-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#126986 0 Answer by DreamWerx for PHP object caching DreamWerx 2008-09-24T13:02:37Z 2008-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#455364 Comment by DreamWerx on var for a class in PHP DreamWerx 2009-01-18T20:14:34Z 2009-01-18T20:14:34Z Definately 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#440918 Comment by DreamWerx on How can I get PHP to use the same APC cache when invoked on the CLI and the web? DreamWerx 2009-01-13T21:49:54Z 2009-01-13T21:49:54Z Very true.. web is typically high impact/hits, and CLI one off calls. http://stackoverflow.com/questions/409258/database-design-for-sports-meetingin-mysql Comment by DreamWerx on Database design for sports meeting(in MySQL) DreamWerx 2009-01-03T18:27:18Z 2009-01-03T18:27:18Z Consider 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#312473 Comment by DreamWerx on Scaling LAMP DreamWerx 2008-11-23T15:24:03Z 2008-11-23T15:24:03Z troelskn: 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#312473 Comment by DreamWerx on Scaling LAMP DreamWerx 2008-11-23T13:05:40Z 2008-11-23T13:05:40Z Definately 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#312473 Comment by DreamWerx on Scaling LAMP DreamWerx 2008-11-23T12:56:43Z 2008-11-23T12:56:43Z Good 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#305993 Comment by DreamWerx on When should you start using Memcached? DreamWerx 2008-11-20T17:29:00Z 2008-11-20T17:29:00Z I 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#304411 Comment by DreamWerx on Most efficient way to delimit key. DreamWerx 2008-11-20T09:52:23Z 2008-11-20T09:52:23Z What'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#295250 Comment by DreamWerx on PHP SimpleXML. How to get the last item? DreamWerx 2008-11-17T12:19:44Z 2008-11-17T12:19:44Z Excellent, your edited version works perf. +1 http://stackoverflow.com/questions/295112/php-simplexml-how-to-get-the-last-item/295258#295258 Comment by DreamWerx on PHP SimpleXML. How to get the last item? DreamWerx 2008-11-17T11:04:05Z 2008-11-17T11:04:05Z Have you tested this code? $objects returns false. http://stackoverflow.com/questions/295112/php-simplexml-how-to-get-the-last-item/295250#295250 Comment by DreamWerx on PHP SimpleXML. How to get the last item? DreamWerx 2008-11-17T11:02:32Z 2008-11-17T11:02:32Z Have 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#241226 Comment by DreamWerx on How do I stop users circumventing payment? DreamWerx 2008-10-27T21:28:03Z 2008-10-27T21:28:03Z You 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#170151 Comment by DreamWerx on best IDE / Editor for PHP DreamWerx 2008-10-04T12:11:39Z 2008-10-04T12:11:39Z Add 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#165015 Comment by DreamWerx on CHAR() or VARCHAR() as primary key in an ISAM mySQL table? DreamWerx 2008-10-03T12:34:41Z 2008-10-03T12:34:41Z In 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#162210 Comment by DreamWerx on Reading very large files in PHP DreamWerx 2008-10-02T13:25:41Z 2008-10-02T13:25:41Z I 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.