Identified Issues

Yes. I received the ebook immediately. When the FINAL version is released (maybe they add an extra chapter,etc) then the people who bought the raw version will receive the final version also. That is how it works.

Yes, the book has been now been published and is available in electronic and print formats.

I´m trying to use trackstar code from github repository, but for unknown reason "yiic migrate" does not work on my system.

Is there a place where I can download a full SQL dump ?

Are you referring to the codebase accompanying the new edition (2nd edition)?

If so, then sure:

visit this website to learn yii http://www.yiitutorial.com/

visit this website to learn yii http://www.yiitutorial.com/

I found this in the view file from the addUserAction:




....


<?php if(Yii::app()->user->hasFlash('success')):?>


<div class="successMessage">

<?php echo Yii::app()->user->getFlash('success'); ?>

</div>


<?phpendif; ?> <--- here is the error!


...




should be:





...


[code]<?php if(Yii::app()->user->hasFlash('success')):?>


<div class="successMessage">

<?php echo Yii::app()->user->getFlash('success'); ?>

</div>


<?php endif; ?> 


...



Don’t know the exectly site, cause i use the ebook version but i would guess its round about site 200.

I’m still fairly new to PHP and web development in general and taking it one step at a time. I love the long tutorial format of your book and I’m working through it from start to finish. After that I’ll look at building my own app with Yii. (we use it in work for a frontend of a large ecommerce site and it was my first exposure to a framework, so even though I’m not on that project anymore, I’m gonna stick with yii as a “first step” to learning how frameworks work.)