[PHP-WIN] imageManipulation wrapper class, etc.

2013-08-14 Thread Jacob Kruger
If interested, here's what seems to be a sort of working image manipulation utility class, etc., along with a few examples of usage - index.php loads a physical image, and applies multiple effects to it, before storing it in the DB, and then show_image.php renders the image out for display, and

[PHP-WIN] Readfile() + mpg = http status 500, windows server 2012, php 5.5.1

2013-08-14 Thread sniukbp sniukbp
Good morning, I run into same trouble. Kind regards hi oli, i can confirm this if i use following command. one download one 500 [download.cmd] "C:\Program Files (x86)\GnuWin32\bin\wget.exe" --limit-rate=4 http://127.0.0.1/index.php did you find any solution? regards Hi List, i instal

Re: [PHP-WIN] php can't resolve 8.3 paths to unicode filenames, is that expected ?

2013-08-14 Thread R. S.
Hello Pierre, Wednesday, August 14, 2013, 10:27:24 AM, you wrote: > COM is not PHP: You are calling the FileSystemObject's GetFile via COM > which uses unicode APIs under the hood. Nothing to do with PHP > streams. Yes, I know that, and here COM has no issues with unicode. But in my example COM

Re: [PHP-WIN] php can't resolve 8.3 paths to unicode filenames, is that expected ?

2013-08-14 Thread Pierre Joye
hi, On Wed, Aug 14, 2013 at 9:09 AM, R. S. wrote: > The code is provided in this thread and in my (dismissed) > bug report. > > $FS = new \COM('Scripting.FileSystemObject', null, CP_UTF8); > $FS->CreateTextFile("c:\\Ελλάδα.txt"); > $ShortPath = $FS->GetFile("c:\\Ελλάδα.txt")->Sh

[PHP-WIN] Found the cause of corrupted data storage in mySQL

2013-08-14 Thread Jacob Kruger
Along the lines of all my recent posts, finally 'woke up', and went to go double check limits on blob, and longblob data storage lengths, and, yes, blob is limited to 64Kb = 65536 bytes, which is why it was truncating the data I was attempting to store in a column of data type blob, which is now

Re: [PHP-WIN] php can't resolve 8.3 paths to unicode filenames, is that expected ?

2013-08-14 Thread R. S.
Hello Pierre, Thursday, August 8, 2013, 7:07:04 AM, you wrote: > PHP does nothing with the paths a script passes to the IO function. > The only operation being done is to resolve relative paths and the > likes but that will only prepend the given path with the current > directory and remove ../..