1
Ok, this might be more complicated than I want it to be.
On my website, I have the latest "XoopsGallery" with all my pictures from the 2004/2005 school year. Now that the 2005/2006 school year is approaching way to fast, I want to have a separate photogallery for my pictures for the year.
So what I did so far is, I downloaded a clean version of "XoopsGallery" and I renamed the directory from xoopsgallery to "xoopsgallery_0506", so then I opened the "xoopsversion.php" file and changed the
$modversion['dirname'] = "xoopsgallery";
to
$modversion['dirname'] = "xoopsgallery_0506";
.
Then were it says
$modversion['tables'][0] = "xoopsgallery_image";
I changed it to
$modversion['tables'][0] = "something_here";
.
Then I went into sql/mysql.sql, and I changed were is says
CREATE TABLE xoopsgallery_image (
I changed it to
CREATE TABLE something_here (
I then went and installed the module, and when I went to look at it and test it out, the pictures from my old gallery were there, and they were also in the old gallery. So I uninstalled the module.
This is probably in a file somewere with a similar database link or something....any ideas?