| bio | website | |
|---|---|---|
| location | New York, NY | |
| age | ||
| visits | member for | 2 years, 10 months |
| seen | 18 hours ago | |
| stats | profile views | 56 |
Hi my name is Azeem Michael. I’m an Application Developer/Designer. I love building Rich Internet Applications with API’s, REST, AJAX and jQuery coupled with the MVC Style of Engineering. Some of my favorite platforms and languages to work with are Java, C++, PHP (with Symfony as a framework), Apache and MySQL.
thanks,
Azeem Michael
|
Dec 20 |
accepted | Show mysql blob pdf file in Symfony 2.0 |
|
Dec 20 |
comment |
Show mysql blob pdf file in Symfony 2.0 strange, I changing the type to text. It still did not work. I, then truncated my table, uploaded my files again and it worked. I, then changed it back to type=blob. It still worked. It seems my files were not properly uploaded to the db. And, I needed stream_get_contents($file) as lifo suggested below. I am using Symfony2.14. Perhaps, type=blob is supported now. Maybe it wasn't before. Thanks! |
|
Dec 20 |
comment |
Show mysql blob pdf file in Symfony 2.0 hmm.. you are right, something was wrong with the uploaded files. Your solution works -- needed stream_get_contents(). |
|
Dec 19 |
comment |
Show mysql blob pdf file in Symfony 2.0 I created the db from cmd line as follows. php app/console doctrine:generate:entity --entity="MyDocsBundle:Files" (new field name: [file] Field type: [blob]). This created Entity/Files.php that had public function setFile($file) and /**@return string*/public function getFile(). Then I uploaded pdf file (which i can view form a native php test page but not through symfony). Also, the entity Symfony's command tool created for me has the return type as string and not blob, even though I specified file type to be blob). |
|
Dec 17 |
comment |
Show mysql blob pdf file in Symfony 2.0 var_dump() gives me following: "resource(62) of type (stream)" |
|
Dec 10 |
comment |
Show mysql blob pdf file in Symfony 2.0 thanks for the response on this. Actually, the pdf files were uploaded and viewable using native php. Here is the error message I get in Symfony: "The Response content must be a string or object implementing __toString(), "resource" given." |
|
Nov 27 |
awarded | Student |
|
Nov 12 |
comment |
Symfony2.1 Serve Upload I can't get to serve a pdf file stored as blob in mysql instead of a file in a directory. |
|
Nov 8 |
awarded | Tumbleweed |
|
Nov 5 |
revised |
Show mysql blob pdf file in Symfony 2.0 edited tags |
|
Nov 1 |
revised |
Show mysql blob pdf file in Symfony 2.0 added 89 characters in body |
|
Nov 1 |
asked | Show mysql blob pdf file in Symfony 2.0 |
|
Feb 17 |
awarded | Popular Question |
|
Oct 4 |
comment |
Twitter Error - {“errors”:[{“code”:53,“message”:“Basic authentication is not supported”}]} This is a json response. Are you asking how to out put a json resposne in php? |
|
Sep 27 |
comment |
No error or warning when attempt to access property of non object (not assigned) when you say $obj->test = 'hello world' or $obj = (object)'hello world' (same thing) php invokes it's generic stdClass (php.net/manual/en/…) to dynamically create the object. It's like saying $obj = stdClass; $obj->test = 'hello world'; |
|
Sep 24 |
comment |
No error or warning when attempt to access property of non object (not assigned) Actually some languages like JavaScript and Python do allow you to dynamically create anonymous objects/functions without defining the class. It seems PHP also allows this. You can also create you test() function by doing this. $obj->test = function(){ echo 'This is a test';}; $test = $obj->test; $test; |
|
Sep 23 |
awarded | Commentator |
|
Sep 23 |
comment |
No error or warning when attempt to access property of non object (not assigned) sorry, didn't get you the first time. It seems php allows dynamic instance properties. |
|
Sep 23 |
answered | No error or warning when attempt to access property of non object (not assigned) |
|
Sep 23 |
comment |
use jquery to load form input directly into page @thomas -- this might give you some guidance on how to do ajax calls: net.tutsplus.com/tutorials/javascript-ajax/… |