Regretfully I just posted this in the wrong thread.
> I had this working once. I just installed the latest 
> version and now I can't upload an image. The image 
> file is zero bytes. My server log shows these error 
> messages... PHP Notice: Undefined index: Pw in 
> /usr/home/myserver/public_html/catalog/oscpm1_upload.php 
> on line 51...  PHP Notice: Uninitialized string offset: 0 
> in /usr/home/myserver/public_html/catalog/
> oscpm1_upload.php on line 58... Do I have something 
> configured wrong in the new version?
Hi Dennis. Those are harmless PHP warnings. It seems you have PHP full error-reporting turned on. Add the following line at the end of the configuration options of the oscpm1_upload.php file (around line 38 ):
Code:
error_reporting(E_ALL & ~E_NOTICE);
That should stop those warnings which the OSCPMWin application cannot handle.
I'm curious if you reviewed your server log files because the upload-debug option of OSCPMWin application didn't worked or jut because you prefer the server logs.
Regards,
Mario A. Valdez-RamÃrez.