Okay, So Apple is gonna be No. 1 PC vendor next year with 5% market share?

 

US Thanksgiving is this Thursday, and their friends across the big pond have something for the Apple Fanclub of bloggers and journalists to be grateful for: Canalys predictions that the Mac maker will be the No. 1 PC vendor next year — gasp, possibly during holiday 2011. “HP and Apple will fight for top position in Q4, but Apple may have to wait for the release of iPad 3 before it passes HP”, Canalys analyst Tim Coulling says.

It’s an amazing proclamation, considering that IDC put Mac global share at a puny 5.2 percent in third quarter.

That’s right as much as Apple seems to be everywhere it has on 5% of the PC market with even a smaller foot hold in the business market. So what is Tim Coulling going on about? He has decided that the iPad is a full use PC instead of an over sized phone….else where in the business world it is still very hard to get a Mac in the door.

Comments Off more...

Social CRM not ready for prime time

That’s the takeaway from Gartner, which has released a forecast for Social CRM. While the market is expected to generate $1 billion in revenue next year, there are more than 100 vendors competing, the majority of which are unprofitable or take in less than $1 million. The market is growing, but it’s too small for the number of participants. Social CRM accounts for just 5 percent of the total client-relationship management market.

The problem is customer adoption. “Until recently, many companies have treated social CRM as a series of experiments and tactical purchases”, Adam Sarner, Gartner research director, says in a statement. “Few have a social CRM strategy or established metrics to measure its effect on hard business results. Different departments, employees and managers implement different types of applications for different purposes.

“This lack of consistency among buyers keeps the market fragmented into at least three segments: sales, marketing and customer service, with many small vendors taking various approaches to address one area, approach or use case. The majority of vendors that survive and thrive in the mid-term will offer tools that can address multiple use cases in more than one department”.

Gartner identified five areas of predicted research and development:

1. Social features integrated into traditional CRM processes (including traditional software and cloud services).

2. New tools for measuring return on investment.

3. Increased integration with popular social networking services, notably Facebook and Twitter.

4. Greater adoption of analytics tools or services for measuring social interactions.

5. New social CRM usage scenarios, which Gartner didn’t specifically identify.

“The need for integration will favor more-traditional CRM vendors that add social capabilities. Integration did not matter much when enterprises were just experimenting with social CRM” Sarner says.

“However, companies are asking for the integration of social data with other customer data within sales, marketing and customer service processes, which will require the integration of social CRM with applications such as a knowledgebase for customer service, multichannel campaign management, sales force automation or e-commerce, Web content and Web analytic applications, master data management, and even back-office applications”.

Greater integration could benefit companies with existing CRM products, such as Microsoft, Oracle and Salesforce.com, further driving a wedge between the plethora of smaller vendors and future profitability.

Photo Credit: S.John/Shutterstock

Comments Off more...

[solved] I can’t get Google Analytics for Mobile to work

Google Analytics logoWhen running SEO for a business website, information on web traffic is key.
Google analytics is a useful tool to help keep track of your web properties. In the ever advancing world of connectivity one has to consider what traffic to include and what to exclude or differentiate.

As an example, we have a client with multiple brick and mortar locations who we run online PPC advertising campaigns for. When we present our reports we need to exclude the traffic that the online payment system is generating and report it separately. That can be done with Google analytics.

This same client has had a mobile version of its website since 2009, but getting Google’s mobile analytics package to work has presented a problem. To date, we have been using the server webalizer traffic package to supply that information. However, in the past few months we noticed that some of the locations have been getting as many mobile page views (in affluent areas) as other locations get normal page views, so it was time to get Google analytics for mobile to work.

You can find many articles about how to trouble shoot the Google mobile analytics package on the web, but we found that most of them hint at the issues without supplying a full set of solutions. So what follows is a guide to uncovering many of the known problems (in this case we had several) so you can get the package installed.

1). The Google mobile analytics package has several components and comes in multiple flavors (java, perl and php). We used the PHP package, because it is installed on all servers and is the most SEO friendly.

There are three parts to implement the package, something that is not always clear from the documentation. You need to download the analytics package from Google not just cut and paste the code from their website, it has the main files included.

First there is a PHP program called “ga.php” in the downloaded package and it needs to be installed in your mobile directory.

Second, there is a PHP function snipit that need to be put into your HTML mobile page above the “<html>“ tag.

Third, there is a smaller PHP snipit for a blank tracking pixel that needs to be inserted into the same mobile web page at the bottom just above the “</body>“ tag.

2). Test the main code for the Google mobile analytics package (ga.php). First upload the new mobile webpage and the “ga.php” files to your mobile directory. Then use your browser to test the “ga.php” file by calling it directly e.g. insert mobile.mydomain.com/ga.php into the address bar. What you should get is a 1×1 blank pixel, but what you might get is a PHP error code.

If you get a PHP error code it is most likely due to your PHP version. The file “ga.php” is written for PHP5, but many servers still default to PHP4. If this is the case then you have two options, first you can use your server panel to default to PHP5 (if it is installed) or second, you can edit the “ga.php” file.

The only function in “ga.php” that requires PHP5 is called “setrawcookie” you can replace that with “setcookie” and make the function PHP4 compatible.

Retest the “ga.php” function and if it now works move on to the next step.

3). Now it is time to test your mobile webpage. First make sure you made the correct changes o the code when you inserted it into the webpage. The part above the “<html>“ tag needs to have your Google id (note it is best to change the prefix of your number from “UA-” to “MO-” to let Google know it is a mobile page). You also have to let it know where you put the “ga.php“ file (if it is in the root directory you will have “/ga.php” or if it is in the mobile directory with the mobile pages then “ga.php” will work).

Running the webpage on your server and waiting to see if the analytics page sees it can take some time. A better test is see if the 1×1 blank pixel is in the webpage. There are a few ways you can accomplish this, one way is to open the developer window in your browser (in Firefox it is called “web console”) and try your mobile test page. If the function is not working you will see that 1×1 pixel is a broken image or a “404 not found” link. Another method is to look at the source of your served webpage in the browser (right click and choose view source). Scroll down to the bottom and look for the “img” tag, if it says something like “$googleAnalyticsImageUrl” it is not working. If it has a “ga.php?……” with all your data in it…then it is working. Still have problems? Then move to the next step.

4). A quick test is to use the “sample.php” file that came with the Google analytics package. Make the same changes to the function code in this file (your Google account number and the location of the “ga.php” file) and load it to the server to test it out e.g. “mobile.my domain.com/sample.php”. It will display your 1×1 pixel img code for you if it works. The most likely reason for the “sample.php” file not to work will be the setting for your “ga.php” file. Try “/ga.php” or “/mymobiledirectory/ga.php” until you get it to work. Another reason this may not work is that the Google snipits use some PHP “short code”, although I have not seen this issue on servers for years, PHP “short code” may be disabled. In that case you will need to change the snipit for the 1×1 pixel img call from “<?=“ to “?php”.

Once you have this sample file working, make the changes to your mobile webpage and test it again. If your mobile webpage is still not working move to the next step.

5). At this point you have verified that the “ga.php” function is working and that it can be successfully called from a different page (sample.php), but you may still be having issues with it working in you mobile webpage. The most likely reason for this is that your server is not parsing your HTML pages for PHP code. The easiest solution for that is to put a “.htaccess” file (or modify the one there) in your mobile directory telling the server to do that.

We have run into issues with this part, because the code can be different for different versions of PHP. By now you should know what version PHP you have from testing the “ga.php” file. If you had to modify the “ga.php” code you most likely have PHP4. In the “.htaccess” file enter the following:

AddType application/x-httpd-php4 .html .htm
Or for PHP5
AddType application/x-httpd-php5 .html .htm

Now retest your mobile webpage. At this point things should work, but you may now be getting a completely different error….if so move on to the next step.

6). If you are now getting parsing errors from you mobile webpage it is most likely do to the header information at the top of the webpage. Look to your “doctype” and other entries to find which ones need to be changed to stop the PHP handler from stopping. After that you can modify all of your mobile webpages accordingly and soon you will have data in your Google analytics account.

I hope this article is of help to some of you, it can be very frustrating to find only parts of the solution in various forums on the web. As is typical for the web, most solution posts stop as soon as they have it working and never lead to the next step

Cheers,
Linton Consultants


Mozilla | Firefox web browser & Thunderbird email client

Mozilla | Firefox web browser & Thunderbird email client.

 

FireFox 4 has been released!

Firefox logo


Why Google is getting into the ‘Like’ business – Computerworld

Google announced this week a new social search feature called +1. The new offering competes in some ways with Facebook’s “Like” button.

By clicking on an optional new +1 button on your Google search results, you can tell family and friends that you recommend certain links.

via Why Google is getting into the ‘Like’ business – Computerworld.


Neowin.net – Internet Explorer 9 RTM now available

Neowin.net – Internet Explorer 9 RTM now available.

Internet Explorer 9 has been under development for the past year, going through a number of platform previews, two betas. After a year-long wait, Microsoft finally hit the latest Release Candidate milestone with Internet Explorer 9.

The latest HTML5-compliant browser from Microsoft brings a number of speed improvements over previous versions of IE, including a refreshed UI. Internet Explorer 9 comes with a number of improvements and new features, including pinned websites that integrate with the Windows 7 taskbar, jumplist support, a new tab layout page, a redesigned notification system to alert users of downloads and add-ons, a SmartScreen filter, tracking protection and a ton more features.

The new JavaScript engine, Chakra, brings Internet Explorer 9 to the top of the class of the top browsers in terms of speed. Compared to other browsers, Internet Explorer 9 outperforms in JavaScript benchmark results. IE9 also includes hardware acceleration to help improve overall speed.

In the early betas, Microsoft demonstrated some of the new components of IE9, including a tab tear-off Windows Aero-style snap feature. The ability to compare two websites side-by-side makes it easy to compare products on the web with IE9.

 

 


  • Comments or questions are welcome.

    *(denotes required field)

    Powered by Fast Secure Contact Form

  • Copyright © 1994-2011 Service4less.com. All rights reserved.
    Powered By Service4less.com | Optimized by Linton Consultants |