The only thing I had to do was set it to creat gl_upage instead of upage.sql. I did this by editing the CREATE TABLE line in the file. It was set for
CREATE TABLE upage ( ... I had to set it to
CREATE TABLE gl_upage ( ... otherwise I would get an SQL error in line 1
Anyways to install what I have so far was pretty easy. I had to open the admin/plugin/upage/install.php and look for the following (without the dashes)
----------------------------------------------
$display = COM_siteHeader();
$T = new Template();
$T->set_file('install',$_CONF['path'] . 'plugins/upage/templates/install.thtml');
$T->set_var('install_header', $LANG_UPAGE['install_header']);
$T->set_var('img',$_CONF['site_url'] . '/upage/images/upage.gif');
$T->set_var('cgiurl', $_CONF['site_admin_url'] . '/plugins/upage/install.php');
$T->set_var('admin_url', $_CONF['site_admin_url'] . '/plugins/upage/index.php');
Then I had to change it to be:
-----------------------------------------------------------------------
$display = COM_siteHeader();
$T = new Template($_CONF['path'] . 'plugins/upage/templates');
$T->set_file('install', 'install.thtml');
$T->set_var('install_header', $LANG_UPAGE['install_header']);
$T->set_var('img',$_CONF['site_url'] . '/upage/images/upage.gif');
$T->set_var('cgiurl', $_CONF['site_admin_url'] . '/plugins/upage/install.php');
$T->set_var('admin_url', $_CONF['site_admin_url'] . '/plugins/upage/index.php');
----------------------------------------------
After saving the install.php file, I had to rename the upage.sql to gl_upage.sql. Then add it to MySQL. Now I can, from what it looks like, have registered members add websites to my website. I have tested it using my account and it worked... except for the DB error when trying the "Help" link.
From what it looks like is all files are defined except for the help file, but I'm not sure. This is my first time trying to do stuff like this with PHP (or anything for that matter)
http://70.145.174.180/