darkelf wrote:I take it that nobody has issues with this... the product ID feature is all good or does it not change anything of the problem mentioned previously?
Well I wasn't exactly sure what this was suppose to fix. However, if it helps, I would like to let you know that I still have problems with products either not updating or taking days (if ever) to update after editing them if they've been submitted already.
I tried using your tool specifically on the product I was editing, I even ran a script to empty every cache directory and delete every log/backup file. Nothing helps.
I've tried other cache cleaners too and they don't help so I have kinda given up on developing for imvu till they provide a better platform to develop on.
You should be able to fully test your product before submitting it so you know that everything works correctly and you don't have to edit it later and risk it never updating. For me, there are things you just can't test in the previewer, such as furniture nodes. So sometimes I have no choice but to submit the product only to find out that the nodes didn't work and now I can't edit it.
Or making a room only to find out it's locked even though its listed in furniture rooms and was derived from a furniture room.
Anyway, if there's anything else I can do to help, let me know. I would love to get this issue resolved so I can start developing again.
Here is the quick batch script I was referring to btw:
@echo off
cls
cd %APPDATA%\IMVUClient\ui\profile\Cache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU Previewer\ProductFiles
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\ProductFiles
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\Cache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\PixmapCache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\AssetCache
ECHO Y | DEL *.*
cd %APPDATA%\IMVU\avpics
ECHO Y | DEL *.*
cd %APPDATA%\IMVU
ECHO Y | DEL *.cache*
ECHO Y | DEL *.log*
ECHO Y | DEL *.1*
ECHO Y | DEL *.2*
ECHO Y | DEL *.3*
ECHO Y | DEL *.4*
ECHO Y | DEL *.5*
ECHO Y | DEL *.6*
Nothing special or complex. Just a simple time saver.