I have a home server I use for all kinds of stuff when I’m away. I have set it up recently so that it can serve a folder mounted over the network from a Windows machine. And this is where the fun started! The folders and files appear correctly, I can navigate and I...
Read more »
Tags: apache, cifs, mount, network, share, smbfs, symlink
Posted in *nix, Networking, Web | No Comments »
I recently had to set values of a set of values from a column from lowercase to Firstuppercase. Nothing easier, run the following code on the database: UPDATE `affected_table` SET `field_in_question` = CONCAT(UPPER(LEFT(`field_in_question`, 1)), SUBSTRING(`field_in_question`, 2))
Read more »
Tags: lowercase, mysql, uppercase
Posted in Tips and tricks, Web | No Comments »
Hey, I used up until last race the nice live-f1 application to see live timings in the linux terminal. But starting with the last race I couldn’t. But today I got great news. The official Formula 1 website just released a mobile version available at mobile.formula1.com and oh joy and happiness they also released...
Read more »
Tags: formula 1, mobile, Symbian, website
Posted in Symbian, Web | 5 Comments »
I’m updating a site for a client that only has file access to his hosting account via a php file manager (extPlorer for Joomla to be precise). He needed uploaded a few flash videos (in excess of 15 Mb each) but extPlorer stated that the file limit for php was set to 8 Mb....
Read more »
Tags: .htaccess, apache, limit, php, upload
Posted in Tips and tricks, Web | No Comments »
If you run an online business like an e-store or something similar you might want to show a button showing if your are available to chat via Yahoo Messenger. This is a fairly easy job to do. All you have to do is to show this code somewhere on your site: <a href="ymsgr:sendIM?YOUR_YM_ID"> <img...
Read more »
Tags: button, online, Web, yahoo messenger
Posted in Tips and tricks, Web | 1 Comment »
I administer a few Joomla sites so from time to time I discover that I lost the admin password for the one I hadn’t had to update for a long time. There is no way to find out what that password was because they are stored as a one way MD5 but since I...
Read more »
Tags: admin, joomla, md5, password
Posted in Web | No Comments »
I did a website for a friend, a kind of a knowledge base and installed google custom search on it. To my surprise google stubornly kept showing no search results. I redid the custom search settings, paying close attention to the domains on which I wanted the search limited on, but still no results....
Read more »
Tags: google, search
Posted in Tips and tricks, Web | No Comments »
I was configuring a Joomla installation for a client today and stumbled upon this little problem. No matter how I tried, new menu items refused to appear. Not only in the front-end, but they were missing in the back-end too. I checked to see, but the PHP settings were all correct. Then I noticed...
Read more »
Tags: joomla, menu, php, wamp
Posted in Tips and tricks, Web | No Comments »
This was simple: I used The Gimp to create a file 16 x 16 pixels and saved it as favicon.ico Upload it to the root of your website Added the following to header.php: <link rel="shortcut icon" href="favicon.ico"> Fast and easy !
Read more »
Tags: favicon, wordpress
Posted in Tips and tricks, Web | No Comments »
One of my clients needed a custom feed of his virtuemart products. I did a quick google check and nothing came up, so I decided to write my own. Please note that I’m not a programmer and I bet it can be done faster, better and more elegant, still this works, so … <html>...
Read more »
Tags: csv, joomla, php, virtuemart
Posted in Web | 3 Comments »