I have the following issues on a website, would like to know how would you resolve these issue?
1- CSS is not used efficient. 2- Search engine need to be optimized. 3- Java Scripts are placed between HTML tags. 4- Redirecting homepage through JS code, using client side 5- Web page delay, a lot of objects. 6- Disable listings directories from apache (how) 7- web not compatible with Firefox
Thanks -mu
On 02/08/09 14:41, madunix wrote:
I have the following issues on a website, would like to know how would you resolve these issue?
1- CSS is not used efficient. 2- Search engine need to be optimized. 3- Java Scripts are placed between HTML tags. 4- Redirecting homepage through JS code, using client side 5- Web page delay, a lot of objects. 6- Disable listings directories from apache (how) 7- web not compatible with Firefox
Thanks -mu _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hmm, seems to be like it needs a "complete overhaul" meaning... probably best to start from scratch.
As for disabling listings. There is two methods. one of which is to edit httpd.conf and the other is if .htaccess is enabled, then you could use some .htaccess lines to do so.
Be careful with .htaccess, could lead to exploitation if not made properly.
And it does not compatible with Firefox either? Who would do that? It's kind of like disabling half the internet users.
Anyhow, assuming the web server is Linux, to disable directory listing edit this file: /etc/httpd/conf/httpd.conf
You should fine a line like so:* *
Options All Indexes FollowSymLinks MultiViews
Change to:
Options All FollowSymLinks MultiViews
That should do the trick :-)
Hope this helps somewhat :-)
yes, it works,,, Edit the httpd.conf file: Options All Indexes FollowSymLinks MultiViews To disable directory browsing carefully I removed the line that says: Indexes Options All FollowSymLinks MultiViews Restart apache web server and that's it
What about other points?
-mu
On Sun, Aug 2, 2009 at 4:07 PM, Jake Shiptonjakems@hotmail.co.uk wrote:
On 02/08/09 14:41, madunix wrote:
I have the following issues on a website, would like to know how would you resolve these issue?
1- CSS is not used efficient. 2- Search engine need to be optimized. 3- Java Scripts are placed between HTML tags. 4- Redirecting homepage through JS code, using client side 5- Web page delay, a lot of objects. 6- Disable listings directories from apache (how) 7- web not compatible with Firefox
Thanks -mu _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hmm, seems to be like it needs a "complete overhaul" meaning... probably best to start from scratch.
As for disabling listings. There is two methods. one of which is to edit httpd.conf and the other is if .htaccess is enabled, then you could use some .htaccess lines to do so.
Be careful with .htaccess, could lead to exploitation if not made properly.
And it does not compatible with Firefox either? Who would do that? It's kind of like disabling half the internet users.
Anyhow, assuming the web server is Linux, to disable directory listing edit this file: /etc/httpd/conf/httpd.conf
You should fine a line like so:* *
Options All Indexes FollowSymLinks MultiViews
Change to:
Options All FollowSymLinks MultiViews
That should do the trick :-)
Hope this helps somewhat :-)
-- Jake
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Sun, Aug 2, 2009 at 10:27 AM, madunixmadunix@gmail.com wrote:
yes, it works,,, Edit the httpd.conf file: Options All Indexes FollowSymLinks MultiViews To disable directory browsing carefully I removed the line that says: Indexes Options All FollowSymLinks MultiViews Restart apache web server and that's it
What about other points?
1- CSS is not used efficient.
Rewrite the CSS.
2- Search engine need to be optimized.
Use indices.
3- Java Scripts are placed between HTML tags.
Rewrite the HTML so JS is outside the HTML tags.
4- Redirecting homepage through JS code, using client side
Search Google on JS snippets. Modify to suit your site.
5- Web page delay, a lot of objects.
Rewrite the web page to use fewer objects.
7- web not compatible with Firefox
Run web page through a validator and then fix the issues it finds by rewriting the code.
madunix wrote:
I have the following issues on a website, would like to know how would you resolve these issue?
hire someone who knows what they are doing to fix it for me. Or go to the person who wrote it originally and have them fix it.
I'm not a web developer, so that's why I'd hire someone, or some company.
nate
yesterday, I have checked my site in W3 validation and it has shown me some 150 errors and 55 warnings. I want to know how these errors affect my site, is there big impact on the system? how to read them, And how to fix those errors? I used http://validator.w3.org/ and http://validator.aborla.net/ sample of the output (document type does not allow element "title" here, required attribute "type" not specified, TOTAL_OBJECTS - Warning! The total number of objects.. will dominate web page delay, CSS_SIZE - Caution. The total size of your external CSS is above 8K and less than 20K...etc
Thx -mu On Sun, Aug 2, 2009 at 6:51 PM, natecentos@linuxpowered.net wrote:
madunix wrote:
I have the following issues on a website, would like to know how would you resolve these issue?
hire someone who knows what they are doing to fix it for me. Or go to the person who wrote it originally and have them fix it.
I'm not a web developer, so that's why I'd hire someone, or some company.
nate
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Am Sonntag, den 02.08.2009, 18:23 +0200 schrieb madunix:
yesterday, I have checked my site in W3 validation and it has shown me some 150 errors and 55 warnings. I want to know how these errors affect my site, is there big impact on the system? how to read them, And how to fix those errors? I used http://validator.w3.org/ and http://validator.aborla.net/ sample of the output (document type does not allow element "title" here, required attribute "type" not specified, TOTAL_OBJECTS - Warning! The total number of objects.. will dominate web page delay, CSS_SIZE - Caution. The total size of your external CSS is above 8K and less than 20K...etc
Sorry but I think tis is off topic here. This list is about CentOS, your topic is a much more general one.
Regards Chris
financial.com AG
Munich head office/Hauptsitz München: Maria-Probst-Str. 19 | 80939 München | Germany Frankfurt branch office/Niederlassung Frankfurt: Messeturm | Friedrich-Ebert-Anlage 49 | 60327 Frankfurt | Germany Management board/Vorstand: Dr. Steffen Boehnert (CEO/Vorsitzender) | Dr. Alexis Eisenhofer | Dr. Yann Samson | Matthias Wiederwach Supervisory board/Aufsichtsrat: Dr. Dr. Ernst zur Linden (chairman/Vorsitzender) Register court/Handelsregister: Munich – HRB 128 972 | Sales tax ID number/St.Nr.: DE205 370 553
On Sun, Aug 2, 2009 at 11:35 AM, Christoph Masercmr@financial.com wrote:
Am Sonntag, den 02.08.2009, 18:23 +0200 schrieb madunix:
yesterday, I have checked my site in W3 validation and it has shown me some 150 errors and 55 warnings. I want to know how these errors affect my site, is there big impact on the system? how to read them, And how to fix those errors? I used http://validator.w3.org/ and http://validator.aborla.net/ sample of the output (document type does not allow element "title" here, required attribute "type" not specified, TOTAL_OBJECTS - Warning! The total number of objects.. will dominate web page delay, CSS_SIZE - Caution. The total size of your external CSS is above 8K and less than 20K...etc
Sorry but I think tis is off topic here. This list is about CentOS, your topic is a much more general one.
+1 Chris. I gave him some places to look, before I read your post. There is a lot of information about how to optimize web sites, if one will google for it.
sorry for posting not in the right maillist. thx -mu
On Sun, Aug 2, 2009 at 7:52 PM, Lanny Marcuslmmailinglists@gmail.com wrote:
On Sun, Aug 2, 2009 at 11:35 AM, Christoph Masercmr@financial.com wrote:
Am Sonntag, den 02.08.2009, 18:23 +0200 schrieb madunix:
yesterday, I have checked my site in W3 validation and it has shown me some 150 errors and 55 warnings. I want to know how these errors affect my site, is there big impact on the system? how to read them, And how to fix those errors? I used http://validator.w3.org/ and http://validator.aborla.net/ sample of the output (document type does not allow element "title" here, required attribute "type" not specified, TOTAL_OBJECTS - Warning! The total number of objects.. will dominate web page delay, CSS_SIZE - Caution. The total size of your external CSS is above 8K and less than 20K...etc
Sorry but I think tis is off topic here. This list is about CentOS, your topic is a much more general one.
+1 Chris. I gave him some places to look, before I read your post. There is a lot of information about how to optimize web sites, if one will google for it. _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
You need to hire someone that knows web development. This has nothing to do with CentOS.
-- Neil Aggarwal, (281)846-8957, www.JAMMConsulting.com Will your e-commerce site go offline if you have a DB server failure, fiber cut, flood, fire, or other disaster? If so, ask about our geographically redundant database system.
yesterday, I have checked my site in W3 validation and it has shown me some 150 errors and 55 warnings. I want to know how these errors affect my site, is there big impact on the system? how to read them, And how to fix those errors? I used http://validator.w3.org/ and http://validator.aborla.net/ sample of the output (document type does not allow element "title" here, required attribute "type" not specified, TOTAL_OBJECTS - Warning! The total number of objects.. will dominate web page delay, CSS_SIZE - Caution. The total size of your external CSS is above 8K and less than 20K...etc
On Sun, Aug 2, 2009 at 8:41 AM, madunixmadunix@gmail.com wrote:
I have the following issues on a website, would like to know how would you resolve these issue?
In a later post, I think you said you had about 150 errors, when you ran it through an HTML validation check. Sounds like it was produced with something like M$ FrontPage 2000, which I am still using on 2 of our web sites and is known to produce terrible HTML.
<snip>
2- Search engine need to be optimized.
The Meta Keywords Tag The Meta Keywords Tag should contain ONLY keywords which are also found in the viewable text on the page and be 874 characters or less in length (less is better). Make sure all keywords are found in the viewable text on the web page! I believe 20 keywords is the maximum suggested. Google AdWords Keyword Tool is described on this URL: http://www.wordstream.com/adwords-keyword-tool https://adwords.google.com/select/KeywordToolExternal
You want a robots.txt file - http://www.robotstxt.org/ Information about robtots.txt file on this URL: http://www.robotstxt.org/robotstxt.html
Good information about creating Meta Tags on this URL: http://www.metatags.org/create_metatags Better if Meta Tag "title" begins with a word that starts with A, B or C
Below URL for KompoZer WYSIWYG HTML editor http://www.thesitewizard.com/topics/kompozer.shtm I've recently begun using KompoZer (on CentOS 5.3) for a new web site and it produces much better HTML. :-)
5- Web page delay, a lot of objects.
Try to keep it as clean and simple as is possible, so it will load more quickly. Slow loading pages discourage visitors and the majority of them will leave, before the page finishes loading.
<snip>
7- web not compatible with Firefox
That is impossible to accept. If it is not a configuration setting in the program you have used to create the web site, you must begin using another, up to date program. HTH
Madunix wrote on Sun, 2 Aug 2009 15:41:29 +0200:
I have the following issues on a website, would like to know how would you resolve these issue?
Why? This questions is really not appropriate for this list. This list tolerates off-topic questions, up to a limit, I consider this question way over the limit. Please do not abuse this list. Thanks.
Kai
--On Sunday, August 02, 2009 10:31 PM +0200 Kai Schaetzl maillists@conactive.com wrote:
Why? This questions is really not appropriate for this list.
To follow up, the Apache web server mailing lists are here:
http://httpd.apache.org/lists.html
For your other problems, find mailing lists, newsgroups or forums that deal with HTML, CSS, and Firefox.
You may also find this useful: