London SEO
London SEO

13
Feb

Another tip for noobs who are stuck (see previous post…). Sorry about this being a bit useless. But I couldn’t work out how to do it!!

Ok. Earlier i was playing with the pcmcia (some people call these pc cards or smart cards) and pushed it out but couldn’t get the release button back in. It is quite simple. Just use a pen or something to push it in further than you can with your hand (but don’t force it).

I really should get back to some SEO posts…


13
Feb

Orange Broadband Livebox Installation Help

(If you don’t have to install the Orange livebox software, ignore this post…). Click read more to read it.

(more…)


21
Jan

There are no real ways to know for sure how many people go to your site from bookmarks, but a couple of ways

  • (the usual) take a high %  (or even 100%) of unique WITHOUT any referrer data (that also are not a bot)
  • Make a “bookmark this” link, but make the bookmarked url something like “http://example.com/?camefrom=bookmark”. Then just do something like
  • if ($_GET['camefrom'] == “bookmark”)
    {
    // +1 to your stats thing counting bookmarks (database? etc)
    }

08
Jan

Making money from Myspace is quite easy. It used to be easier but they have cracked down on spam.

If you want to make sure they (probably) don’t remove your profile, make it look as crap as you can. Search for myspace layouts, put everything, glitter graphics, songs, the works. Upload a picture of an attractive girl, get a few friends, get some comments etc.

Now you have a few methods to make some money:

  • Use the groups thing to make a group in your niche. Collect people who have a similar interest to what you are promoting/selling into a group. Use their search function to find people. Only bother adding people who are actually interested or at least your target market in/for your product.
  • Get lots and lots of friends. Use auto adders (Google for them, most you have to pay for). Don’t do too many at once. If I were you, I would set up 5-10 accounts now, occasionally login add 5-10 people. After a couple of months after it looks like you’re a regular user (not a spammer) then start mass adding. Don’t do too many, they do remove profiles that spam friend requests. Once you have all these friends, then send bullitens or send messages/comments saying something such as “Hey, talk to me on here”, here being a webcam site such as IMLive (affiliated link, through their company Pussy Cash. You can even get around $2 per free sign up there – it is easy money) etc.
  • Leave lots of comments with affiliated links. Ringtones etc. Make it seem you are not a spammer.

A good way to get people who are interested in your product, is to do a google search like site:myspace.com “your keyword”

You can also get a load of backlinks, by spamming links on comments.

Let me know in the comments for your thoughts etc on spamming myspace.


03
Dec

Howdy

If you want to do a cron job, but don’t want that email giving you the result, such as for example when doing a wget command, do this:

wget –quiet –output-document output_filename http://www.urltoget.com/

It will still email you with errors, so if you want it to never email you, add this:

>/dev/null 2>&1

to the end of it.


26
Nov

There are lots of reasons why you may want to do this – to protect your admin area, hide some nasty scripts or to save on bandwidth (yeah, i’ve heard it done…). Of course, all people have to do is look at your robots.txt and find out a load of directories that you don’t want found… (Read more to see full post)

(more…)


15
Oct

You see them all the time when a page gets dugg on digg.com or suddenly becomes very popular -

Can’t select database

We were able to connect to the database server (which means your username and password is okay) but not able to select the xxxx database.

* Are you sure it exists?
* On some systems the name of your database is prefixed with your username, so it would be like username_wordpress. Could that be the problem?

If you don’t know how to setup a database you should contact your host. If all else fails you may find help at the WordPress Support Forums.

Well recently I needed to make sure that if oen of my wordpress installs couldn’t connect or whatever that it showed a different page (well, different text). So if you want to do the same (at your own risk), open up wp-includes/wp-db.php and edit:

  • line 46 (connecting to server)
  • line 66 (selecting the database)
  • you may also want to edit the html from around line 312

Hope that helped you. Now digg me (just kidding – who wants this at the top of digg!) to prove that it works (although – of course my host will cope with it ;). They have before)

Some ideas to put on your messages:

  • Tell them that something is wrong!
  • Put a link to a Google cache (in the form of http://www.google.com/search?q=cache:http://www.example.com/)
  • Try the coralize site – in the form of http://www.example.com.nyud.net:8080/
  • Put a retry button/link

03
Sep

A basic introduction to mod_rewrite.

A basic introduction to mod_rewrite.

What is mod_rewrite?
Mod_rewrite is a system for apache that lets you basically rewrite urls. It is quite advanced, while at the same time being quite simple.

Why is it so important?
It lets you change pages from something like viewnews.php?id=329579823948 to something like /viewnews/the-news-story-headline/. Of course, you will need to update your actuall links (from id=… to the new ones). But the reason it is so good is because firstly, who can remember 329579823948? And who can remember the-news-story-headline? Additionally, it is a lot better for seo to have keywords in the url, and most times your page title / etc will have the keywords in it.

Ok, walk me through a simple example using mod_rewrite
Ok. We are going to do a very simple mod_rewrite first, one that doesn’t involve any parameters (no id= or whatever).

For example, say at the moment our page is:
http://example.com/about_us.html

We want it to be
http://example.com/about/

Firstly you will need to be using apache. Make a file called .htaccess, and put it in your public html folder (same folder as index.php/index.html etc etc. In my case with my host, it would be /london-seo.com/.htaccess. Often it is something like public_html). You may have a bit of trouble making it in Windows. If you do, name the file “.htaccess (with the quotation marks).

Now you wanna put in .htaccess the following (first two lines are not always needed, depending on your server configuration):

Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^about/$ about_us.html [L]

See, its pretty easy. The ^ just means that represents the start of the string, and $ represents the end of the string. It is just regular expression stuff… You don’t need to worry about it too much for the time being. Note how the domain itself doesn’t matter (nothing about example.com is in there)

Now lets do a more complicated example. We want to change:
http://example.com/news.php?newsid=48672

to:
http://example.com/news/48672/

Well we would then put in the following code:

Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^news/(.*)/$ news.php?newsid=$1 [L]

The $1 indicates that it should replace whatever was in the first occurrence of (.*) (note – there can be more than one (.*).)

Well, that’s it for a basic mod_rewrite tutorial. Ideally you don’t wanna have id’s that relate just to a number, but you want some keywords. A good way to do this is to in your news.php only use the newsid=xx, but add in some extra, so you could have:

http://example.com/news/mod-rewrite-tutorial/89487/

The code for that would be:

Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^news/(.*)/(.*)/$ news.php?newsid=$2 [L]

Notice how there is no “$1“. As you get more advanced you will get used to this kinda stuff. Again, this is only a basic tutorial, there is a lot more to it, but this will get you started.

Privacy Policy Terms and conditions of use of this site