Archive for HTML Tutorials

vDeck- Modification or Backup of Guestbook

If you are familiar with HTML and want to modify the display format of your guestbook, then you can do this by editing the file at location .panel/web/guestbook/1
Just login to your control panel and goto File Manager => .panel => web => guestbook => edit the file named “1″. You will find all your guestbook entries there. If you miss anything then your gustbook will not show the data properly
VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Related Posts:

  • No Related Posts

To make clickable-thumbnails in forums

To start with the clickable-thumbnail, we should first upload simple images to server and thereafter to display the image in a forum

For example – for imageshack {a image hoster} -

Code:

[img]http://img50.imageshack.us/img59/2374/imagename.jpg[/img]

To put in links in text -

Code:

[URL=webisteaddress] website title to be shown [/URL]


Now clickable-thumbnails comprises of both

Code:

[URL=link to large image] [img] link to small image [/img] [/URL]

This will show the image along with the link.

VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Related Posts:

  • No Related Posts

HTML CODES

These codes are one of the important contents that make up a web page that work behind the scenes so you can see the page the way it was designed to show up on your browser. You, the viewer usually are not even aware of them. If they are not written properly, the page does not show up correctly, negating some of the design. If you’ve never seen HTML Codes, right click on your mouse anywhere on this page, then scroll down to view source and click on it. What pops up is the entire page written in HTML Code, including the meta tags .


VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Related Posts:

  • No Related Posts

forwarding website to secure URL

Forwarding Website To Secure URL

To forward your website to secure URL you need to put the following redirect rule in .htaccess under public_html.

RewriteEngine on
Options +FollowSymLinks
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]

This code will redirect http://yourdomain.com to https://yourdomain.com.

To use this rule mod_rewrite module should be installed on the server by default.

ruby rail
VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Related Posts:

  • No Related Posts

redirecting website to www extension

Redirecting Website To WWW Extension

To redirect domain.com to www.domain.com you need to add following mod_rewrite rule in .htaccess file which is inside public_html.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent,L]

To use this mod_rewrite you will need this modile to be enabled on the server.

Make sure that you replace domain.com with your actual domain name in the above code.

ruby rail
VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Related Posts:

  • No Related Posts

Last updated by at .

« Previous Page« Previous entries « Previous Page · Next Page » Next entries »Next Page »