Technical Archive

  • admin

    fetch the records through ajax and jquery in json format using kohana

    HI All, After spending lot’s  of time, i got result in josn format in kohana. I want to fetch all records of last 3 minutes of comment table and it will display on my site after check is record already show on browser or not. As...

    Full Story

  • admin

    Set user as idle in PHP using jquery

    idleTimer = null; idleState = false; idleWait = 2000; (function ($) { $(document).ready(function () { $(‘*’).bind(‘mousemove keydown scroll’, function () { clearTimeout(idleTimer); ...

    Full Story

  • admin

    What is XML-RPC?

    XML-RPC is a remote procedure call protocol which uses XML to encode its calls and HTTP as a transport mechanism.[1] Contents [hide] 1 History 2 Usage 3 Data types 4 Examples 5 Criticism 6 Implementations 6.1 C++ 6.2 Objective-C / GNUstep / Cocoa 6.3 Erlang 6.4 Java 6.5 XMPP 6.6 Other 7 See also 8 References 9 External links // [edit] History XML-RPC was...

    Full Story

  • admin

    Empty image src can destroy your site

    This is a problem I’ve come across frequently, and since it has come up again recently, I thought I’d explore this issue in the hope that it will save others some trouble. There are so many problems that this one issue can lead to that...

    Full Story

  • admin

    High Performance Ajax Applications

    High Performance Ajax Applications View more presentations from julien.lecomte.

    Full Story

  • admin

    Performance Research, Part 3: When the Cookie Crumbles

    HTTP cookies are used for a variety of reasons such as authentication and personalization. Information about cookies is exchanged in the HTTP headers between web servers and browsers. This article discusses the impact of cookies on the overall user response time. HTTP Quick Review Cookies originate from...

    Full Story

  • admin

    Best Practices for Speeding Up Your Web Site

    Minimize HTTP Requests tag: content 80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of...

    Full Story

  • admin

    15+ Tips to Speed Up Your Website, and Optimize Your Code!

    Once you’ve been coding for a while, you begin to take something for granted. You forget just how smart you really are. How many hundreds of keyboard shortcuts have we memorized? How many languages have we learned? How many frameworks? How many hacks? To say...

    Full Story

  • admin

    How to manage languages in kohana

    To manage language in kohana you must define variable in languages file. First of all you will make a directory i18n under application directory.  Now you will make a folder of all languages which will be run on your site such as for english you...

    Full Story

  • pallavi@witslog.com

    Define variable in Kohana using Config File

    How to make the global variable in Kohana – To get the value of the variable which is used globally into the website. For it you have to set the variable in config file of Kohana. For it, you have to open the file - Kohana ->...

    Full Story