Pomoc - Szukaj - Użytkownicy - Kalendarz
Pełna wersja: [strona] www.w45.info - Serwis Webmastera
Forum PHP.pl > Inne > Oceny
barteekk
adres: www.w45.info

W45 - To serwis dla webmasterów, liczne porady i artykuły na temat HTML, php, CSS, MySQL i ogólnych wiadomości dotyczących webmasteringu pomagają innym w budowie swoich stron. Serwis zawiera także przydatne dodatki takie jak: darmowe skrypty, lekcje php, generatory i wiele, wiele innych...


Proszę o szczerą ocenę...
Marusz
Cytat
Warning: file(news/komentarze/e45.php): failed to open stream: No such file or directory in /home/w45fasto/public_html/w45/page/news.php on line 256

Warning: fopen(news/komentarze/e45.php): failed to open stream: No such file or directory in /home/w45fasto/public_html/w45/page/news.php on line 270

Warning: filesize(): Stat failed for news/komentarze/e45.php (errno=2 - No such file or directory) in /home/w45fasto/public_html/w45/page/news.php on line 271

Warning: fread(): supplied argument is not a valid stream resource in /home/w45fasto/public_html/w45/page/news.php on line 271

Warning: rewind(): supplied argument is not a valid stream resource in /home/w45fasto/public_html/w45/page/news.php on line 272

Warning: flock(): supplied argument is not a valid stream resource in /home/w45fasto/public_html/w45/page/news.php on line 273

Warning: fwrite(): supplied argument is not a valid stream resource in /home/w45fasto/public_html/w45/page/news.php on line 274

Warning: flock(): supplied argument is not a valid stream resource in /home/w45fasto/public_html/w45/page/news.php on line 275

Warning: fclose(): supplied argument is not a valid stream resource in /home/w45fasto/public_html/w45/page/news.php on line 276

Pamietam te strone. Juz raz byla w ocenach. Pochwalilbys sie co pozmieniales, bo poki co srednio to widze.
http://forum.php.pl/index.php?showtopic=28...=w45\.info
I tu taki dodatek:
http://www.w45.info/w45/index.php?news=komentarze&ed=0&id=12 ( screenshot: http://mznews.republika.pl/phppl/w45info.jpg )
barteekk
Zapomniałem że ta strona już przecież jest tutaj w ocenie.

- drobne zmiany w kodzie
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- trochę dodatków
- inne - szybsze skrypty
- co ważne doszedł nasz program: Kaktus HTML Edytor (właściwie Eda). Zapraszam do testowania an www.w45.info smile.gif
- nowe w dziale pliki
- powstał dział linki
- forum kaktusa
- nowe artykuły i porady

Wypisałem wszystkie zmiany, ale proszę poczekac do następnego tygodnia, zobaczycie wersję 3.0 strony. Aktualna - 2.0 smile.gif

Zapraszam...
Zajec
Zaledwie kilka (banalnych) błędów w validatorze, popraw to i będzie ładny validujący się HTML 4.01 :-)


Pominąłeś
padding: 0;
dla body (Opera ma domyślnie 5px; i brzydko to w niej wygląda)


margin-left: 1px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px;
wygodniej
margin: 1px;


Tabelce z menu nadaj jakieś id i potem zamiast twardych spacji:
&nbsp;<img>&nbsp;
zrób tylko
#tabelkamenu img { margin: 0 3px; }


Zamiast <td bgcolor="#f7f7f7"> dla każdej komórki menu wygodniej byłoby chyba
#tabelkamenu td { background-color: #f7f7f7; }
A bgcolor dawać tylko tym, które mają mieć inny kolor.
barteekk
no błędy:
Line 277, column 177: required attribute "ALT" not specified

...f" width="88" height="31" border="0" ></a><BR>

The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.



Line 285, column 14: there is no attribute "COLOR"

<br><hr COLOR=#7E1EA>

You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.



Line 285, column 14: an attribute value must be a literal unless it contains only name characters

<br><hr COLOR=#7E1EA>

You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary.


Może mi ktoś to przetłumaczy dla jasności ?!
Zajec
Cytat(barteekk @ 2005-07-11 18:43:53)
Line 277, column 177: required attribute "ALT" not specified
Każdy obrazek musi mieć posiadać alt (choćby pusty), czyli tekst zastępczy dla obrazka wykorzystywany przez przeglądarki nie obsługujące obrazków luz z ich wyłączonym wyświetlaniem.


Cytat(barteekk @ 2005-07-11 18:43:53)
Line 285, column 14: there is no attribute "COLOR"
<br><hr COLOR=#7E1EA>
Line 285, column 14: an attribute value must be a literal unless it contains only name characters
<br><hr COLOR=#7E1EA>
hr nie można nadać tak po prostu koloru. Zrób to sobie poprzez
<hr style="display: block; height: 1px; background-color: #7e1ea">
ewentualnie możesz wszystkim hr odgórnie nadać taki wygląd poprzez CSS:
hr { display: block; height: 1px; background-color: #7e1ea; }


btw. zabrakło Ci jednek znaku określeniu koloru.
id4
A zdjęcia szerszego to już nie było? tongue.gif
barteekk
sprawdzcie teraz, strona na 100% jest zgodna ze standardami i wstawiłem u siebie buttonik smile.gif
Chewolf
Pamietaj ze nic nigdy nie jest w 100% ... a wiec :
Validator
Zajec
Cytat(Chewolf @ 2005-07-12 20:26:53)
Pamietaj ze nic nigdy nie jest w 100% ...

jak to nie... każda strona w application/xhtml+xml ;-)


W niektórych działach swojej strony masz jeszcze błędy polegające na osadzaniu skryptów JS oraz używaniu & w adresach odnośników. Poczytaj: http://osiolki.net/faq/validator


Poza tym informowałem Cię o braku
padding: 0;
dla body, pamiętaj żeby to jeszcze dodać.
barteekk
niebawem wszystko poprawię, staram się na bieżąco eliminować błędy i dodawać coś nowego, więc trzeba na to trochę czasu smile.gif ale dzięki za wszystkie pozytywne, czy negatywne opinie, uwagi i pomoce winksmiley.jpg

I przypominam że niebawem będzie nowy design i CMS smile.gif więc nie krytykujcie tego hehe
Marusz
Cytat(barteekk @ 2005-07-13 10:49:11)
I przypominam że niebawem będzie nowy design i CMS smile.gif więc nie krytykujcie tego hehe

To po kiego grzyba dajesz do oceny cos, co raz, ze juz bylo, to jeszcze niebawem zniknie?!
barteekk
Cytat(Marusz @ 2005-07-13 12:53:01)
Cytat(barteekk @ 2005-07-13 10:49:11)
I przypominam że niebawem będzie nowy design i CMS smile.gif więc nie krytykujcie tego hehe

To po kiego grzyba dajesz do oceny cos, co raz, ze juz bylo, to jeszcze niebawem zniknie?!

hmm... chciałem usłyszeć opinie o tym designie, bo nie wiedzieliśmy czy dobrze zrobimy zmieniając go - ale teraz mamy pewność. Gdy dostaliśmy opinie na różnych forach internetowych. Nowa wersja będzie nawiązywała do wersji 1.0, wersja ta - dostepna do zobaczenia w dziale Wszystko o W45 smile.gif
Będziecie mogli w tym temacie komentować nową wersję smile.gif która być może niebawem...


[edit] i pieknie fastom, serwer padł, nie wiem czy to tylko na dzisiaj czy całkowicie - nie ma strony smile.gif

już działa po prawie 12-godzinnej przerwie !
To jest wersja lo-fi głównej zawartości. Aby zobaczyć pełną wersję z większą zawartością, obrazkami i formatowaniem proszę kliknij tutaj.
Invision Power Board © 2001-2025 Invision Power Services, Inc.