Categories
-
admin administration batch category class database Databases Design Firefox fix function General gmaps Google id Images joomla jquery logging out logout magento model MySQL Netbooks php problem Review session solution tabs tax tax-class tax_class_id template thumbnails tip Tutorial Web development Windows Windows 7
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Archives
Twitter: lukasgavenda
- RT @DavidGrudl: HTML editory na bázi contentEditable byly vždy slepá cesta. Po 6 letech od vzniknu Texy mi @steida předvedl plnohodnotný ... 09:37:40 AM February 01, 2012 from web ReplyRetweetFavorite
- @gmvasek to uz jsem se dival, pokud teda nejde o ten pravy nahledovy tab 07:29:29 PM January 31, 2012 from Twitter for Android in reply to gmvasek ReplyRetweetFavorite
- @gmvasek nemám (mám taky chrome) a mám klasický i GApps účet a ani u jednoho to nejde 04:55:58 PM January 31, 2012 from web in reply to gmvasek ReplyRetweetFavorite
- @gmvasek mě to nejde :P 02:39:10 PM January 31, 2012 from web in reply to gmvasek ReplyRetweetFavorite
- RT @PatrikTomasik: Seznam.cz #down že by #anonymous? 07:19:47 PM January 30, 2012 from web ReplyRetweetFavorite
Category Archives: PHP & MySQL
Generate random birth date in MySQL table and get Age by select
Today I was solving generating of random data for testing and manipulation with the date of the birth. Here are two simple SQL queries solving both: Query for generate random date of birth in whole table UPDATE people SET date_of_birth=CONCAT_WS(‘-’,(FLOOR( … Continue reading
Posted in MySQL, PHP & MySQL
Leave a comment
Joomla: get category ID in template
I just needed to specify special layout for the articles of selected categories. I was looking for some solution online, but none of them worked. Mostly you can find this: JRequest::getInt(‘catid’); or JRequest::getInt(‘catid’, ”, ‘get’);
Magento: Changing Tax class on all products
I was just asked to update tax classes on products in the catalogue. I found a easy and fast solution.
Posted in Magento
Tagged batch, class, database, magento, MySQL, tax, tax-class, tax_class_id
Leave a comment
SOLVED: Magento keeps logging out from administration
I just spent couple of hours by finding out, why is my Magento administration logging me out after moving my Magento store to new server. I found many hacks, modification and setup tips on the Google, but anything helped to … Continue reading
Posted in Magento
Tagged admin, administration, fix, logging out, logout, magento, problem, session, solution
22 Comments
Google Maps API & PHP+MySQL – working with radius and distance
I needed to find out how to work with Google Geo API in my last project and especially with calculating a radius and distance between two geo points. Another goal was to get a latitude and longtitude from the address … Continue reading
MySQL visual database design
I was looking for some nice freeware visual mysql database designer couple of weeks ago. I found two of them: DBDesigner 4 and MySQL Workbench. I must say, that both programs are really very similar, I mean from the view … Continue reading
MySQL WITH ROLLUP modifier
Yesterday, I was solving simple database Query, where I needed to get some specific data. And while browsing thru MySQL documentation I found a very nice GROUP BY modifier which allows me make less queries and save some CPU on … Continue reading