Jan 24

Prior to cPanel X (version 10), the File Manager works without any glitch. With the release of the new version, that is cPanel X, they added AJAX to enrich the interface of File Manager.

With some users complaining of several glitches in the “new” File Manager (FM), i.e. not seeing immediately a folder that you had just created; or the File Manager will simply not work on several “networked environments”, cPanel DID NOT removed the former FM, it was just renamed to “Legacy File Manager.”

So, if you will ask me which one do I use, I stick with the Legacy File Manager for the time being.

Popularity: 100% [?]

Jan 22

This JavaScript code will add the current date (based on the user’s system date/time) to any webpage:

<script>
  var mydate=new Date()
  var year=mydate.getYear()
  if (year < 1000)
    year+=1900
    var day=mydate.getDay()
    var month=mydate.getMonth()
    var daym=mydate.getDate()
  if (daym<10)
    daym="0"+daym
    var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday",
                                    "Thursday","Friday","Saturday")
    var montharray=new Array("January","February","March","April",
                            "May","June","July","August","September",
                            "October","November","December")
  document.write("<small><font color='000000' face='Arial'><b>"
                +dayarray[day]+", "+montharray[month]+" "+daym+",
                "+year+"</b></font></small>")
</script>

Simply insert eh above code inside the <body> of your webpages.

Popularity: 88% [?]

Jan 20

Mabuhay! Welcome to the Official Company Blog of TurfSite Computing, Inc.!

As we are populating our blog with contents that will help you succeed in promoting your presence online, you may now subscribe to our feeds so that you may be updated as soon as a content is added here. You may use services like Feedburner, RSSFWD, and Google Reader for this purpose.

If you wish for your blog site to appear in our Blog Roll, please drop us a line via blog@turfsiteph.net or simply leave a comment in this entry with the URL of your site.

Thank you and enjoy computing!

Popularity: 61% [?]