12
September
2012

Vidiscript Settings Pages

It is fairly simple to manage and run a website with vidiscript.

Here are a few screenshots i’ve taken from the demo of video sharing script

There are 2 pages of settings .

Step 1: login as admin.

This is the account you created while installing vidiscript.After login find the admin menu on the right side of the page,you’ll probably will have to scroll down a little bit.

 

Admin Menu

The last 2 links “Site Settings”  and “Site Features”  are the ones which help you configure vidiscript.

 

Site Settings

 

Site Features

 

Well these setting are pretty much self explanatory.

Pls ask any questions in the comment section below so that the answers are useful for others as well.

 

 

 

 

 

 

 

 

08
January
2011

How to change your Vidiscript Background Image

(Thanks to Dan9078 for this)

This also changes the images just rename your images (what ever you want) but for this example will use images as 1st.jpg ,2nd.jpg 3rd.jpg 4th.jpg
What this will do is it changes your images on the front page of vidiscript every hour or every 12 hours you can set it to what you want. Note keep all images in same directory.
Insert the below into the <HEAD> section of your page (Index.php)

<script type="text/javascript">// <![CDATA[
day=new Date() //..get the date x=day.getHours() //..get the hour if(x>=0 && x<4) {

document.write('<style type="text/css">body{background: white url(1st.jpg); color: black}"></style>')

} else

if(x>=4 && x<12) {

document.write('<style type="text/css">body{background: white url(2nd.jpg); color: black}</style>')

} else

if(x>=12 && x<18) {

document.write('<style type="text/css">body{background: white url(3rd.jpg); color: black}</style>')

} else

if (x>=18 && x<24) {

document.write('<style type="text/css">body{background: white url(4th.jpg); color: black}</style>')

}
// ]]></script>

PLEASE NOTE VIDISCRIPT.CO.UK TAKE NO RESPONSIBILITY FOR ANY PROBLEMS ARISING AS A RESULT OF THIS TUTORIAL

08
January
2011

Change Background Colour Vidiscript

Change Background Colour Vidiscript

(Thanks to Dan9078 for this)

This tutorial will enable you to change your background’s colour every time some one goes to your websitel.

Description:
This simple script randomises ths background color of your page each time it’s loaded. Specify any number of colors for the script to choose from.

Example:
Reload the page to see a different random color.

Directions:
Just insert the following code into the <BODY> section of your page.

<script>

/*Random background color- by javascriptkit.com
Visit JavaScript Kit (http://javascriptkit.com) for script
Credit must stay intact for use*/

//Enter list of bgcolors:
var bgcolorlist=new Array("#DFDFFF", "#FFFFBF", "#80FF80", "#EAEAFF", "#C9FFA8", "#F7F7F7", "#FFFFFF", "#DDDD00")

document.body.style.background=bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)]
</script>

PLEASE NOTE VIDISCRIPT.CO.UK TAKE NO RESPONSIBILITY FOR ANY PROBLEMS ARISING AS A RESULT OF THIS TUTORIAL

Adverts