A straight forward redirection using .htaccess. Note that the domain name should be omitted from From address and it should always be there in To address, even if the redirection is on same server. [code]<IfModule mod_rewrite.c> RewriteEngine On redirect 301…
Resize image using Advanced Settings tab in WordPress Image Editor
I literally overlooked this very useful option till now. So.. you can re-size image to your desired dimension by clicking those 60%, 70% tabs as shown in the figure below. hmm!
Vector Digital Clock jQuery Plugin (beta)
Vector Digital Clock plugin was created to show Digital Clock in more computerized and presentable way. With this plugin it is possible to show each digit or character of time in form of Digital Vector or character. This plugin works…
Floating Social Icons, Facebook, Twitter, LinkedIn, Digg & Google Plus
Posting the html, css & javascript code for floating social icons shown in the attached image below. The code was created using this link but it didn’t work for Facebook. Pasting here for reference and later use. Someone with html,…
Removing cache after an action is run in activecollabe
I required to clear all cache including views and database routes context after i called an existing recurring profile action. Placing the following command near the end of the action/function helped me. [text]cache_remove_by_pattern(‘recurring_profile*’);[/text]
Redirecting users to same pages while migrating to new domain
While migrating my previous domain name to current one i had to gather some domain redirection tools in order to help myself to redirect my old domain pages and posts to current one. Fortunately i did not change the site…
Useful url rewriting examples using .htaccess
1)Rewriting product.php?id=12 to product-12.html It is a simple redirection in which .php extension is hidden from the browser’s address bar and dynamic url (containing “?” character) is converted into a static URL.
Creating a new page in ActiveCollab 3
Just created a new page in ActiveCollab 3. I wanted a new ipn (Instant Payment Notifications) handler page for paypal recurring payments. The name of my new module is PaypalRecurring.
Customizing PHPBB3’s template files or styles
PHPBB is one of the most popular forums scripts available in php scripting language. Although the default phpBB template is nice and clean, you can choose to customize it to match the look and feel of your website. This allows…
Covert PHP config size values to bytes
Convert PHP config value (2M, 8M, 200K…) to bytes. Use full when converting values received, for an example, through ini_get(‘memory_limit’).