Google I/O 2013 – What’s New in Android Developer Tools

Google I/O 2013 - What's New in Android Developer Tools

Google I/O 2013: Keynote

Google I/O 2013: Keynote

Aston Villa beat Sunderland 6 – 1 on 29.04.13

Aston Villa Win 6 – 1 Against Sunderland

The football season is rapidly coming to an end, and all eyes are on the close relegation battle happening in the Premiership. There are at least 6 teams competing to stay in the top flight of football, including Aston Villa and Sunderland. This prerequisite made for a very interesting and potentially closely fought battle on Monday 29th April 2013. However, the final outcome was an unprescendented 6 – 1 win for Villa. Here is a quick run-down of all goals and highlights.

The game began and the teams were quite evenly matched. Ron Vlaar was first to score for Aston Villa in the 31st minute, but Danny Rose was quick to equalise for Sunderland in the 32nd minute. With half time fast approaching, Villa made their move and managed a second goal in the 38th minute, courtesy of Andreas Weimann.

With a 2 – 1 lead going into the 2nd half, Aston Villa really capitalised on this opportunity and took control of the match. One player in particular can be noted for his input into Villa’s 6 – 1 victory; Christian Benteke completed a hat-trick, scoring in the 55th, 59th and 72nd minutes of the game. This ensured Villa of the much-needed 3 points. At this point, Sunderland were well a truly beaten, but the Villa boys were not finished. To add insult to injury, Gabriel Agbonlahor finished the match with a final goal in the 88th minute.

The last time that Aston Villa scored 6 goals in one game, Stiliyan Petrov was playing in the team and scored that memorable goal from near the half way line.

All eyes will be on Lambert’s young team this Saturday 4th May to see if they can continue this excellent form against 14th place Norwich City.

What are the top 3-5 SEO areas where webmasters make the most mistakes?

Matt Cutts answers “What are the top 3-5 SEO areas where webmasters make the most mistakes?”

What are the top 3-5 SEO areas where webmasters make the most mistakes?

How To Fix Magento Admin 404 Error

If you are having a problem with the Magento admin area showing a 404 error then this maybe due to many things.

If you have moved the site to a new server then this is normal as Magento requires you to delete the session temporary files and run a query on the database.

Using an FTP client go the folder location /var/

Now remove the content of the following:-

  • Cache
  • Session
  • Tmp

Confirm you have the database configuration correctly setup which is located at /app/etc/

Here you have config.xml and local.xml

Now open the database using a Database client.

  • Go to your database
  • Select the main table over area
  • Run the following SQL Query:

 
SET FOREIGN_KEY_CHECKS=0;
UPDATE `core_store` SET store_id = 0 WHERE code='admin';
UPDATE `core_store_group` SET group_id = 0 WHERE name='Default';
UPDATE `core_website` SET website_id = 0 WHERE code='admin';
UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN';
SET FOREIGN_KEY_CHECKS=1;

You should get the result:-

[SQL]
UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code=’NOT LOGGED IN’;
Affected rows: 1
Time: 0.036ms

[SQL]
SET FOREIGN_KEY_CHECKS=1;
Affected rows: 0
Time: 0.033ms

Now try going to your admin area.

If you are still having issues then try www.domainname.co.uk/index.php/admin