Yii Consulting
My policy of helping people is normally doing it free of charge on my free time through this blog and on the Yii forum but lately I have been really busy due to the amount of requests I receive everyday asking for Yii support.
I dislike the fact of not helping people as I am a true supporter of the Open Source community and I try hard to help but, when that is taking my time to provide for my family, I need to reinvent my self in order to fulfill both aspects of my life.
Can I Hire You?
Yes you can, for Yii coding / consulting services. If you wish me to provide you consulting services and support for Yii framework further than what I normally do on a regular basis , I will be pleased to do it through a support & consultancy contract.
How Much You Charge?
That will depend on the services you require, why don’t you just request a quote
That Means You Won’t Support Free Of Charge Anymore?
No, I will continue my trips to the Yii Forum, giving away my Yii Extensions, and helping as much as I can the Yii community. If you are happy with what I do there and in my blog, this section is obviously not for you, as I will continue doing what I normally do.
Yes I Want to Hire You!
Ok then, drop me a message through the contact section.
Antonio Ramirez
Tweet this! 






Hai Antonio, I use your EGmap extenstion on Yii. How do I get tourist places near my position on google map?
My problem is I must get tourist place recomendation nearby my positon and I think google map has database of tourist places.
I get example on
https://developers.google.com/maps/documentation/javascript/places#place_search_requests
So, help me use this on your EGmap extenstion… please
Really sorry Limpat, but I am truly busy nowadays…
You will have to find the solution yourself but there are good reference here: https://developers.google.com/maps/articles/phpsqlsearch#findnearsql
Cheers
Hai Antonio i’m using your EGMap Extension, it was a great map extension
but i have a problem on using KML.
on the KML example given by EGMap :
—————————————————————————-
zoom = 10;
$mapTypeControlOptions = array(
// yes we can position the controls now
// where we want
‘position’=> EGMapControlPosition::LEFT_BOTTOM,
‘style’=>EGMap::MAPTYPECONTROL_STYLE_DROPDOWN_MENU
);
$gMap->mapTypeControlOptions= $mapTypeControlOptions;
// enabling KML Service. Second parameter of this
// function tells whether is localhost or not. GeoXML3.js
// is needed to read localhost KML files.
$gMap->enableKMLService(‘http://gmaps-samples.googlecode.com/svn/trunk/ggeoxml/cta.kml’);
$gMap->renderMap();
—————————————————————————-
i try to change the URL by using my dropbox url so it become like this :
$gMap->enableKMLService(‘https://www.dropbox.com/s/x7mftezhttfraqb/cta.kml’);
but the map didn’t show up
any sugestion there ?
In backend/www/assets there are cached folder for css and js
Where it is coming from. How to remove caching
You need to not forceCopy the registration of the assets. Make sure you have YII_DEBUG = true when developing and use its value when registrering your assets for the forceCopy parameter.
I am using boilerplate zip. I don’t want cached folders in assets.
Where can I find it in code. What code I need to modify or add