i use php 5.3.5, with xampp on windows 7 64 bit machine.
i also use the framework outside my project
i read this issue has to do with some permission problems. i tried rewriting the htaccess in the prottec folder, but nothing else appears than the error.
whats the problem here? i dont understand it. the widget seems not be able to write its css and js etc to the assets folder.
I encountered same problem on windows 8 when I tried to access a newly created module. Windows 8 SL doesn’t have secpol.msc (where you can enable create symlink). So I just temporarily modified Asset Manager Class (framework\web\CAssetManager.php):
set forceCopy property to true: $forceCopy=true;
if you receive a warning "The "forceCopy" and "linkAssets" cannot be both true."
go to publish function
comment this line
//if($forceCopy && $this->linkAssets)
//throw new CException(Yii::t(‘yii’,‘The “forceCopy” and “linkAssets” cannot be both true.’));
then add $this->linkAssets = true; on the topmost part of publish function