Tech Sharing Blog

Web, Tech, Tips, Download Blog…

Advertisement

Archive for the ‘ Tips ’ Category

Few days back, when I try to log into my Google Analytics to check my blog status, I’m suprise that my blog is not being tracking after I change to the new Masagana WP Theme. After try out few way including deactivate and activate back the analytics plugin, reinstall the plugin, but still no luck to make it work.


I try to google and finally found out that that’s not only my self have this problem, there are a lot of people who using the same blog with me also having the same problem.


I came across a post which highlights the solution to fix this issue.What has caused this issue is that a function has missing or left out from the theme which prevents WP Stats and Google Analytics from working. Apparently, the theme owner has forgotten to insert the function. To fix this issue, you need to edit the footer.php in your theme editor. From your WordPress’s admin panel, navigate to Design > Theme Editor > footer.php.


In the footer.php, just add the following code intot it, I believe the new downloaded Masagana WP Theme footer being encrypted, so just insert the code before the encrypted code to make it work.


<?php wp_footer(); ?>


Once done, update the file. WP Stats and Google Analytics should be working by now.

Popularity: 1% [?]

Fuser.com puts you at the center of all the conversatinos you care about by letting you easily manage your e-mail, facebook, myspace and twitter communications in one secure place, so you’ll never miss another message.


I believe most of the internet user may have more then one email account nowadays, and we used to login to each email account through the web mail to check your inbox. But it maybe troublesome if you need to login more then one email account just to check your email. Here come the Fuser.com that allow you to check all the conversations and email at one place.


After you register and verify your email account, just login to the Fuser.com and add your webmail account into Fuser. You may add more then one email account into Fuser.com and you may also add the social network account into Fuser.


To add any new email or social networking account just click on the “Add/Edit account” link at the left bar, to edit your account configuration such as adding a new Avartar, changing the password, changing the registered email, just click on the “setting” link at the top right bar.

[More]

Popularity: 1% [?]

livescore logo Get the latest sport result for all the major league in the world.


Livescore is a site dedicate for sport lovers who want to get the up to date sport result range from soccer, hockey, basketball, tennis to cricket.


I’m not really sure the accuracy of other sport as most of the time i’m only focus on the soccer. The result show on the livescore.com is almost live if compare with the ESPN channel.


Livescore.com is not only available for web user, they also have the iPhone version and WAP version where you may access through your mobile devices to keep your self update on your favorites sport result.


When you on the livescore.com home page, you may get the latest game result just infront of you. By clicking on the score link on the game, you may get the goal scoring time and scorer name.


Hopefully for those sport lovers, you may still get your favorites result while you are away from the TV.

 

Livescore.com home page with the latest match on the home page

Livescore.com home page with the latest match on the home page

Match detail including goal scorer, time and card given out

Match detail including goal scorer, time and card given out

Popularity: 1% [?]

SQL Server Do’s And Dont’s

By David on August 29, 2009

data SQL Server Dos And DontsSo, you are now the leader of a SQL Server based project and this is your first one, perhaps migrating from Access. Or maybe you have performance problems with your SQL Server and don’t know what to do next. Or maybe you simply want to know of some design guidelines for solutions using SQL Server and designing Database Access Layers (DAL): this article is for you.



Even if you are not using SQL Server, most of these design guidelines apply to other DBMS, too: Sybase is a very similar environment for the programmer, and Oracle designs may benefit from this too. I won’t show here how to use specific T-SQL tricks, nor won’t give you miracle solutions for your SQL Server problem. This is by no means a complete, closed issue. What I intend to do is give you some advices for a sound design, with lessons learned through the last years of my life, seeing the same design errors being done again and again.

 

Do know your tools

Please, don’t underestimate this tip. This is the best of all of those you’ll see in this article. You’d be surprised of how many SQL Server programmers don’t even know all T-SQL commands and all of those effective tools SQL Server has.

 

“What? I need to spend a month learning all those SQL commands I’ll never use???” you might say. No, you don’t need to. But spend a weekend at MSDN and browse through all T-SQL commands: the mission here is to learn a lot of what can and what can’t be done. And, in the future, when designing a query, you’ll remember “Hey, there’s this command that does exactly what I need”, and then you’ll refer again to MSDN to see its exact syntax.

 

In this article I’ll assume that you already know the T-SQL syntax or can find about it on MSDN.

  [More]

Popularity: 1% [?]

Most of the developer who working in MS platform will be used to the javascript window.attachEvent.


But maybe some of you don’t know that window.attachEvent is only working on IE7+ and Opera only. Your coding will hit an javascrpit error when running at IE 6 or any version of firefox.


To resolve this issue, you may need to modify your code as such:

Original Code:

window.attachEvent(“onload”, Page_load);

function Page_load(){
//function code
}


Modify code:

//set page event handlers
if (window.attachEvent) {

//IE and Opera
window.attachEvent(“onload”, Page_load);

} else if (window.addEventListener) {

// IE 6
window.addEventListener(“load”, Page_Unload, false);

} else {

//FireFox
document.addEventListener(“load”, Page_Unload, false);

}

function Page_load(){

//function code

}


Popularity: 1% [?]

Submit your site to Bing.com

By David on June 20, 2009

bing icon Submit your site to Bing.comAfter few years of search engine being monopoly by Google, Microsoft has announced their new counter weapons toward Google – called Bing.com


This is just a begining for the search engine war. Now come to another part of the new search engine where all the webmaster or the blog owner should do – get your site to index by the new search engine and gain the traffic from Bing


Click here to submit your website to Bing and get’s index by Bing, so that your website can be found.


Besides that, Bing also has the webmaster tools like the Google webmaster tools. Click here to create a web master center account to submit your site and get index and explore to the search engine faster



Bing home page

Bing home page

Popularity: 5% [?]

SEO Powered by Platinum SEO from Techblissonline