hmm rzeczywiście coś jest z tą ścieżką, bo poprawiłem ją przez firebuga i zadziałało ale niestety nie wiem jak to zrobić na stałe w tym pliku, zmienna $ext jest zdefinowana w pliku edit.me, a zdjęcia liczb do licznika przechowywane są w katalogu img
<?
# Set up some variables and stuff...
# What do you want? A plain text count or one with graphics?
# Its set to $print_what = 'text'; but if you want graphics
# change it to $print_what = 'graphics';
$print_what = 'Liczba odwiedzin';
# Assuming you want graphics, what type do you want?
# Put the extention type here eg, gif, jpg, jpeg, png
$ext = 'gif';
# And where are these graphics? Put the URL to the folder
# they are in here but no trailing / though please :)
$url = 'img';
# And lastly, WHAT do you want to count? Do you want to count each
# time the page is loaded (refreshing the page will add to the count)
# or count each visitor only once (until they go away and come back again)
# Counting just visitors is much more accurate representation of visits to
# your site.
# $count_what = 'visitors' for visitors or $count_what = 'hits' for hits.
$count_what = 'visitors';
?>