Samsung Galaxy Note 3 Photo Leaked Out (New)

The Samsung Galaxy Note III seems to pose for every camera it sees, yet another photo of the upcoming flagship phablet hit the web and it shows off the Galaxy S4-like design. Unfortunately, as you see on the pic, the Samsung Galaxy Note III captured when it was wearing cover, make us have to wait yet to see the back of the device, but many people believe that it adopts a 13MP back camera.

Samsung Galaxy Note III Photo Leak
Samsung Galaxy Note III


At least the new photo shows the side of the device, which unsurprisingly sports a silver strip with the Power/Lock key. From all appearance, the screen of the Galaxy Note III might be a 6" Super AMOLED with 1080p resolution. The phablet is expected to use the same Snapdragon 800 chipset that the Samsung Galaxy S4 SHV-E330S is going to use.

Nokia Eos Photos Got Leaked Out

Nokia EOS Nokia EOS


Nokia EOS has been rumored at the moment, and the good news is now the first live photos of the phone come up to public, this could mean that the release date is just about a matter of time. The photos reveal Nokia's first Windows Phone 8 proper cameraphone in detail, though the fact it doesn't have 41MP main camera as you may expect. And as appear on the pics, the body of the phone looks to be made from the same polycarbonate plastic that's used by Nokia Lumia 920.

Nokia EOS
Nokia EOS


According to the source, the smartphone is 9.7mm thick, quite acceptable considering that it features wireless charging too. Naturally there is a large hump at the back side right where the large camera module will be located, but it appears to be smaller than the one on Nokia 808 PureView. This gives a lot of credibility to previous reports of the Nokia EOS being a hybrid between the Lumia 920 and 808 PureView.

How To Solve Redirecting Problem When Accessing Blogger's Edit Template HTML Tab?

Do you face problem when you access Blogger's Edit HTML tab like you are redirected to your live blog? It comes as preview, in normal it happens only if you hit the preview button, but if you face the trouble then you may be wondering, why it happens, why are you getting redirected just as you access the edit HTML page, even before you haven't done anything?

I faced this trouble, and i thought that it was an error on blogger, but i was wrong, yes that came to be error, but that error came from my template, not blogger. Maybe like that.

Its cause is very simple, there is a chunk of script code of blogger template that will cause your browser to be redirected to your live page, if you face it already then it means that you have the code in your template, i'd say 80 out of 100% of possibility you have the code. Generally, default blogger templates do not include the code, the code might came by you, if you got it. The reason you put the code in your template is most likely because you don't want to let images on your blog are downloadable through google search. Say, somebody is searching through google and then he finds any image belong your blog, well that way, he'll have to visit your blog directly in order to be able to download the image, otherwise no image will come to be downloaded.

Here is the chunk of script code that i mean, i guess you might put the code somewhere around the closing tag </body>, it's the right place to holding the code.

<script language='JavaScript' type='text/javascript'>
if(top.location!=self.location) top.location=self.location;
</script>

By removing the code from your template, you are decreasing the occurance of its unexpected redirecting problem whem accessing your Edit HTML page, or even better it may solve the problem.

Well done! Now let me to dismiss my self, sir! :)

Post Views Widget Based On Yearly Hits For Blogger

Post Views Widget Based On Yearly Hits For Blogger, here is the last page counter widget that you wanna have. However, if you want to have page counter widgets to show the past views of your blog, like yesterday or last month views for example, i can also create those all for you, but i won't create any post for those, you have to ask me for that.

Let's get straight down to bussiness, i have published a lot of kind of page counter widget before, head to those if you want to know anything about page counter widget. Below are the links:

Individual Page Counter
Page Counter Based On Daily Views
Page Counter Based On Weekly Views
Page Counter Based On Monthly Views
Total & Unique Page Counter
Creating Table For Counter Widget
Web Hosting With PHP And MySQL Support

Go to the first link of the above for complete tutorial about creating page counter widget. You know i'm not going to explain how to execute the code i'd like to give here, read the post about daily page counter widget for the exact pattern for this yearly page counter.

How To Create Page Counter Widget Based On Yearly Views For Blogger

1. Create a new text file and simply fill it with a single number, 0.
2. Go to file manager of your php hosting and upload the file.
3. Chmod the file to 777.
4. Copypass the following code and upload to your hosting.

<?php
$save = "yearly-stats.txt"; $open = fopen($save, "a+"); $file = filesize($save); $date = date("D/M/y"); $year = date("y");
if ($file==0) { $counter = 1; fwrite($open, $date."/".$counter); }
else { $read = fread($open, $file); $data = explode("/", $read); ftruncate($open, 0);
if($year == $data[2]) { $counter = $data[3]+1; fwrite($open, $date."/".$counter); }
else { $counter = 1; fwrite($open, $date."/".$counter); }
}
echo "document.write($counter);";
fclose($open);
?>

Here to copy


5. Take the url of the page you published and cover it with javascript to call from your website.

Well done!

How To Create Page Counter By Monthly Views, And How To Add To Bloggers?

Third last article of mine about page counter widget, now i'd like to give page counter widget based on monthly views. This widget is much alike to the Daily pageviews counter widget that i have published a few days ago, just a little thing makes this widget works a bit different than the daily pageviews counter. It makes use of .txt file for saving data instead of using mysql database, it doesn't realy matter anyway, unless you feel not comfort with some text files that appear on your homepage.

Here are some of the previous page counter widgets that i have published: Individual Page Counter, Total & Unique Page Counter, and Page Counter Based On Weekly Views.

For more page counter widgets, for your information my friends, keep an eye on me, i still have the page views counter based on yearly views and working live online visitor counter to show total online and online visitors on the current page.

Also try this form if you have no idea to unite the widget, like mine on the right side: Creating Table For Counter Widget

How To Create Page, Or Post Counter Widget Based On Monthly Views

If you are going to be confused, don't know how to execute the code i'm gonna give here, as such you need to read my previous post about daily page counter widget. Here i'm not gonna tell you how exactly to execute the code, i will just give it to you, just like that.

I'm going.

<?php
$file = "monthly-stats.txt";
$open = fopen($file, "a+");
$size = filesize($file);
$date = date("D/M/y");
$today = date("M");
if ($file==0) { $counter = 1; fwrite($open, $date."/".$counter);
}
else {
$read = fread($open, $size); $data = explode("/", $read); ftruncate($open, 0);
if($today == $data[1])
{
$counter = $data[3]+1; fwrite($open, $date."/".$counter);
}
else {
$counter = 1; fwrite($open, $date."/".$counter);
}
}
echo "document.write($counter);";
fclose($open);
?>

Here to copy


That's it! Execute the code, take the url, cover it with javascript to call the widget and done, weekly is running. You should be thank me for this, for every page counter widget i gave to you.

Haven't you ever had a look out there? They don't let you own the widget, they only offer you their widget which they set some links inside for they call it credit. Here my friends, i give you just all kind of page counter widget, from each post, daily, monthly, untill yearly page counter, but even so i don't ask for a single link back to you. I heard people love free.. :)

Page Counter / Post Counter Widget: Weekly Views

Finally, we got on weekly views now, and this means that we're almost done with Page Views Counter or Post View Counter Widget. Make sure you have also read my previous posts if you don't know or if you want to have some other page counter widgets, i have published many, Online Users Counter, Individual Post Views Counter, Daily Post Views Counter, and Total & Unique Views Counter Widget. For online users counter, i am sure will soon publish another one to kill the widget since it doesn't work exactly i'm expecting, and you are expecting what i am.

Additionally, take a look also on the following post to know how to unite the counter widgets i have published, and those that i'm going to publish, into one place: Create table form for custom page counter widget. You better put the widgets all at once, in a single holder, if those are many or least some, it's suposed to make your widgets look better, to make the widgets a widget, a perfect widget of custom page counter.

How To Create Page Counter Widget Based On Weekly Views

It's easy, realy easy. You only have to copypass the code i'm going to give here and upload or publish it on your own page. However, you can't just publish it on any page, it requires you to publish on a page with PHP and MySQL support. Take a look on the following article if you know nothing, have no and want to have a webpage, web hosting, that supports PHP and MySQL language, Best Free Web Hosting With PHP and MySQL Support.

Or if you'd like to know how way exactly to implement page counter widget on your website, since some of those require you to create a table and database for keeping data (But weekly page views counter does not need those), not just about publishing a new webpage like you'd do on a normal web hosting, like blogger for example, you can read my first post about page counter widget, you go here: Individual Page View Counter.

Well, i'm going. :)

1. Create two new text files (.txt) and simply fill those with a single number 0 respectively.
2. Upload the text file to your root directory, it's where your folder public_html located.
3. After you're done with your upload, Chmod the files to 777.
4. Copypass the following script and make a .php file.

<?php
$fs = "weekly_stats.txt";
$fs2 = "weekly_stats_2.txt";
$fp = fopen($fs, "a+");
$fp2 = fopen($fs2, "a+");
$file = filesize($fs);
$file2 = filesize($fs2);
$date = date("w/n/y");
if(strpos($date, "0") == 0) {
if($file != 0) {
ftruncate($fp, 0);
}
if($file2==0) {
$result = 1;
fwrite($fp2, $date."-".$result);
}
else {
$fr = fread($fp2, $file2);
$data = explode("-", $fr);
ftruncate($fp2, 0);
$result = $data[1]+1;
fwrite($fp2, $date."-".$result);
}
}
elseif(strpos($date, "0") != 0) {
$fr = fread($fp2, $file2);
$data = explode("-", $fr);
if($file2 !=0) {
ftruncate($fp2, 0);
}
if($file==0) {
$result = $data[1]+1;
fwrite($fp, $date."-".$result);
}
else {
$fr = fread($fp, $file);
$data = explode("-", $fr);
ftruncate($fp, 0);
$result = $data[1]+1;
fwrite($fp, $date."-".$result);
}
}
fclose($fp2);
fclose($fp);
echo "document.write($result);";
?>

Here to copy


5. Now upload the file (.php) to your folder public_html and that's it, well done! Your weekly page counter is ready to run.

The only thing that you have to note about the code is that you need to replace the lines in red with your own text files' names, two text files that you uploaded to your root directory. If you named those weekly_counter.txt and weekly_counter_2.txt, for example, then replace those with that names.

I use the above code exactly like that, and it's working. And surprisingly, i created it myself, but definitely i have learned many of such a code before i made up. I wanted to put the data in a single text file but i couldn't, i had no idea how to do that, hope sometime i find out how. :)

Speak english. The code is created for public, no ads, no links back, and no charge, just free. If you'd like to edit the code, then go ahead, i don't think like i own the code.