Archive for the ‘internet marketing’ Category

Re-Tweet and Location Aware

Friday, August 21st, 2009

Twitter just announced that it has plans to launch a feature to make it location-aware. A new API will allow developers to add latitude and longitude to any specific tweet.

“Folks will need to activate this new feature by choice because it will be off by default and the exact location data won’t be stored for an extended period of time,” says Co-founder Biz Stone. “However, if people do opt-in to sharing location on a tweet-by-tweet basis, compelling context will be added to each burst of information.”

“For example, with accurate, tweet-level location data you could switch from reading the tweets of accounts you follow to reading tweets from anyone in your neighborhood or city—whether you follow them or not,” he explains. “It’s easy to imagine how this might be interesting at an event like a concert or even something more dramatic like an earthquake. There will likely be many use cases we haven’t even thought of yet which is part of what makes this so exciting.”

Twitter will release geolocation to web developers and web designers first. So look for this functionality on various Twitter-apps before finding it on the site.
Twitter seems to be stepping it up in the way of usability. They also recently announced plans for retweet capabilities.

Source: webpronews.com

Share and enjoy this web design link:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • NewsVine
  • Print this article!
  • Reddit
  • StumbleUpon
  • Technorati

FaceBook And Twitter Kinda’ Unite

Friday, August 21st, 2009

twitty_and_facebook

Well—Now you can Publish to Twitter from Facebook Pages

Over the next few days Facebook will be releasing a feature that allows administrators of Facebook Pages to publish their Facebook updates to their Twitter accounts automatically. This will only link Facebook Pages to Twitter, not your individual profile.

Web Designers and digital gurus always want to share across all channels to ensure the most penetration. For instance I have my WordPress blog set up such that it automatically updates my Facebook business page and my Twitter page. People may want to share  news to both their Facebook fans and their Twitter followers, all at the same time…. and now they can.

If you manage a Facebook Page, you now will be able to decide whether to share updates with their Twitter followers, and you also will be able to control what type of updates to share: status updates, links, photos, notes, events or all of them. If you have multiple Pages, you will have the option to link each of those Pages to different Twitter accounts. This new feature will soon be available at http://www.facebook.com/twitter.

Facebook Says “…Twitter was a natural next step to link with Facebook Pages because it is a powerful tool for broadcasting short messages widely.”

Source: http://blog.facebook.com/blog.php?post=123006872130

Share and enjoy this web design link:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • NewsVine
  • Print this article!
  • Reddit
  • StumbleUpon
  • Technorati

.htacess file tutorial – useful tips

Wednesday, August 12th, 2009

Overview of the “application of principle”

Much of what we find on search engine optimization (SEO) blogs, internet marketing web-inars or your favorite web design news-feeds contain basic strategies to propel your website into the top SERP’s. While this is useful information, sometimes putting these strategies into practice for web designers, internet marketeers, digital strategists or web developers—is very misunderstood, and the ability to put it these strategies into practice, or apply it in a real world situation is lacking.

Much of this APPLICATION of PRINCIPLE—relies on technique, understanding multiple facets of design and development, technical knowledge, past experience (seeing what works and where), trial and error, keeping up with the changing landscape, and many many other factors. The point is that there are “many” and to be able to apply SEO and internet marketing with results—we need to understand strategy and principles as well as being able to apply it. The “apply” is usually taken for granted, and while there are hundreds of thousands out there talking about it, only a few of us know how to apply it with beautiful results!

One small but powerful thing to be aware of is a .htaccess file—here is some basic information

.htaccess (hypertext access) is the default name of a directory-level configuration file that allows for decentralized management of web server configuration. The .htaccess file is placed inside the web tree, and is able to override a subset of the server’s global configuration; the extent of this subset is defined by the web server administrator.

Nowadays .htaccess can override many other configuration settings, mostly related to content control, e.g. content type and character set, CGI handlers, etc.

Below are some basic tips and uses of .htaccess file

1. Create a custom error page.
.htaccess makes it easy to create your own custom error pages. Just create your custom error page files and then add this code to your .htaccess file:
ErrorDocument 401 /401.php  
ErrorDocument 403 /403.php  
ErrorDocument 404 /404.php  
ErrorDocument 500 /500.php
(you should replace the “/500.php” or whatever with your own file path and name.)

2. Prevent directory browsing.
If you don’t include an index file in a directory, visitors can browse the directory itself. But preventing that is as easy as adding a single line to your .htaccess file:
Options All –Indexes

3.Block access to your .htaccess file
By adding he following code to your htaccess file will prevent attempts to access your htaccess file. This extra layer of security protects your htaccess file by displaying a 403 error message on the browser.
# secure htaccess file 
 
Â order allow,deny 
Â deny from all

4. Set the default page of each directory.
If you don’t want to use an index page in each directory, you can set the default page visited when someone reaches (like an about page or a page offering the newest content) that directory by adding this:
DirectoryIndex news.html
(And of course you’d replace the “news.html” bit with whatever you want to use as the default.)

5.Redirect everyone to different site except few IPs
If you want to redirect all the visitors to a different IP. Also give access to certain  few IPs. You can use the code below:
ErrorDocument 403 http://www.youdomain.com 
Order deny,allow 
Deny from all 
Allow from 124.34.48.165 
Allow from 102.54.68.123

6. Redirect Visitors While You Update Your Web Design Site
Update and test your site while visitors are redirected to the page of your choice:
order deny,allow 
deny from all 
allow from 123.123.123.123
ErrorDocument 403 /page.html
allow from all
Replace 123.123.123.123 with your IP address
. Also replace page.html with the name of the page you want visitors to see.

7. Disguise your file types.
You can disguise all of your file types by making them appear as PHP files. Just insert this snippet in:
ForceType application/x-httpd-php

8. Protect your site from hotlinking.
The last thing you want is for those stealing your content to also be able to embed the images hosted on your server in their posts. It takes up your bandwidth and can quickly get expensive. Here’s a way to block hotlinking within htaccess:
view plaincopy to clipboardprint? 
RewriteEngine On  
RewriteCond %{HTTP_REFERER} !^$  
RewriteCond %{HTTP_REFERER} !^http://([ -a-z0-9]  \.)?domain\.com [NC]  
RewriteRule \.(gif|jpe?g|png)$ – [F,NC,L]
(Of course you’ll want to replace the domain\.com with your own domain name.)

9. Restrict file upload limits for PHP:
You can restrict the maximum file size
for uploading in PHP, as well as the maximum execution time. Just add this:

php_value upload_max_filesize 10M  
php_value post_max_size 10M  
php_value max_execution_time 200  
php_value max_input_time 200
Line one specifies the maximum file size for uploading; line two is the maximum size for post data; line three is the maximum time in seconds a script can run before it’s terminated; and line four is the maximum amount of time in seconds a script is allowed to parse input data.

10. Force a file to download with a “Save As” prompt.
If you want to force someone to download a file instead of opening it in their browser, use this code:
AddType application/octet-stream .doc .mov .avi .pdf .xls .mp4

11. Redirect to a secure https connection
If you want to redirect your entire site to a secure https connection, use the following:
view plaincopy to clipboardprint? 
RewriteEngine On  
RewriteCond %{HTTPS} !on  
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

12.Block script execution.
You can stop scripts in certain languages from running with this:
Options –ExecCGI  
AddHandler cgi-script .pl .py .php .jsp. htm .shtml .sh .asp .cgi
Just replace the types of scripts you want to block.

13. Set up a 301 redirect.
If you move around the structure of your site and need to redirect some old URLs to their new locations, the following bit of code will do so for you:
view plaincopy to clipboardprint? 
Redirect 301 /original/filename.html http://domain.com/updated/filename.html

Important Note:

1-Be careful of spelling- .htaccess is not forgiving of spelling errors.
2-htaccess is case sensitive. If something is shown in the examples with a capital letter, make sure it’s capitalized in your htaccess file.

For readers interested in advance knowledge, I will recommend the following guides:
http://www.askapache.com/htaccess/apache-htaccess.html
http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
http://www.noupe.com/php/htaccess-techniques.html
http://www.thomsonchemmanoor.com/16-useful-htaccess-tricks-and-hacks-for-web-developers.html
http://frontdeskapp.com/blog/5-htaccess-tricks-every-webmaster-should-know/

Source: http://www.sem-seo-resources.com/node/63

Share and enjoy this web design link:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • NewsVine
  • Print this article!
  • Reddit
  • StumbleUpon
  • Technorati

Social Media: A duplex channel not one-way marketing

Tuesday, August 4th, 2009

Espresso created a slide deck centering around the Statistics of social media through the last year, some of the stats were very impressive so we listed them below:

Their definition of social media:
Social media is an umbrella term that defines the various activities that integrate technology, social interaction, and the construction of words, pictures, videos and sound—and a fancy way to describe the zillions of conversations people are having online 24/7

3 out of 4 Americans use social technology
Forrester, The growth of social technology Adoption 2008

2/3 of the global internet population visit social networks.
Nielsen, Global Faces & Networked Places 2009

Visiting social sites is now the 4th most popular online activity—ahead of personal email
Nielsen, Global Faces & Networked Places 2009

Time spent on Social networks is growing at 3x the overall internet rate, accounting for – 10% of all internet time
Nielsen, Global Faces & Networked Places 2009

Technology is shifting the power away from the editors, publishers, establishment, the media elite. Now it’s the people who are in control.
Rupert Murdach, Global Media Entrepreneur

13 hours of video is uploaded to YouTube every minute.
412.3 years is the length of time it would take to watch every YouTube video.
100,000,000 YouTube videos viewed per day.

13 million articles available on Wikipedia.

3,600,000,000 photos archived on Flicker.com as of June 2009.

1383% is the monthly grow rate of Twitter users from January to February 2009. The avg number of Tweets per day is 3 million.

5 billion minutes spent per day on FaceBook.
If facebook were a country, it would be the 8TH most populated in the world, just ahead of Japan.

Mark Zuckerberg, 01-07-09

————————————————————-

For companies, resistance to social media is futile. Millions of people are creating content for the social web. Your customers have been there for a long time. If your business isn’t putting itself out there, it ought to be. – BusinessWeek, february 19, 2009

UNFORTUNATELY, MOST COMPANIES ARE TREATING SOCIAL MEDIA LIKE JUST ANOTHER MARKETING CHANNEL.

STOP THINKING “CAMPAIGNS” AND START THINKING CONVERSATIONS. Social media is a duplex channel not one-way marketing

Start out by listening (some tools you can use to listen in)
Google Alerts, Tweetdeck, SocialMentions, RSS
Engage
namechk.com
And Measure
Metrics should map to goals

Share and enjoy this web design link:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • NewsVine
  • Print this article!
  • Reddit
  • StumbleUpon
  • Technorati