Dear James
I seen lot of people got their language solution from u in the language forum that create a hope for me.
I have installed moodle on my site
http://moodle.dietbvn.org hosted by siteground.com. by using Fantastico. the version is 1.9
I have also installed the gujarati language pack.
I have created this language pack by using "Baraha" a Free Indian Language Software (
http://www.baraha.com/).
I have no idea what PHP and MySql is,
i am a teacher who wants to use moodle for my instrucations. now, when i visit mysite, and change my language preference to Gujarati, the moodle appear perfectly in gujarati but when i creat a cource or write anything in gujarati(using the same software baraha which was used for creating gujarati language pack) it appears as only ??????.
When I read the help topics provided by siteground.com, I found it like ::
How to change the collation for all tables in a mysql database (to utf8)?
Changing the collation for all tables in a mysql database can be time consuming depending on how many tables you have.
That's why we recommend using the following PHP script for changing the collation for all tables at a time:
<?php
$db = mysql_connect('localhost','myuser_mydbuser','mypassword');
if(!$db) echo "Cannot connect to the database - incorrect details";
mysql_select_db('myuser_mydbname'); $result=mysql_query('show tables');
while($tables = mysql_fetch_array($result)) {
foreach ($tables as $key => $value) {
mysql_query("ALTER TABLE $value COLLATE utf8-general_ci");
}}
echo "The collation of your database has been successfully changed!";
?>
Make sure to substitute in the above script:
- myuser_mydbname with your database name;
- myuser_mydbuser with your mysql username;
- mypassword with your password for the mysql user;
- utf8-general_ci with your new collation if different;
can u help me to modify the script and how to run it.
following is the "envirronment" report

Please help me
Amit