Support: Switching between the ASP and PHP configuration files in AVChat 3

Switching between the ASP and PHP configuration files in AVChat 3

Introduction

You have the possibility to switch the type of the configuration file type used to load the settings (and make the integration with the users database). By default the configuration files used are the php ones , follow the instructions below to force the software to use the .asp ones instead!

Instructions

Open up index.html in a text editor (Notepad) and:

  1. Find the following line:
    <param name="movie" value="index.swf" />
    and replace with:
    <param name="movie" value="index.swf?sscode=asp" />
  2. Find the following portion of code:
    <embed src="index.swf"
    and replace with:
    <embed src="index.swf?sscode=asp"

Now repeat the 2 steps above for admin.html

Instead of asp you can also use aspx or other file extensions, if the appropriate config files exist.

Done

Now, do not forget to save and upload the modified index.html and admin.html to your web site.

Further notes

Internet Explorer uses an Active X control to show Flash content. Firefox, Safari, Opera and the rest of the browsers use a plugin. This is the reason why you need to make changes in 2 places. One for IE, the other one for the other browsers.

Go top · Go back to articles list