Koozali.org: home of the SME Server

TWIG-anyone...

Steven lewis

TWIG-anyone...
« on: March 12, 2001, 02:35:30 PM »
Hi all, I have been trying to get TWIG installed with no success. I have read and re-read the install info and FAQs and read-me files, and get to one step which does not work. That step is the point where one populates the Mysql table with the "nuke.sql"data, with the following command, mysql nuke < nuke.sql.
This one doesn't work for me. I have posted this in the advanced forum with out response, thought I was in wrong forum. Thanks, Steven

Dan Brown

Re: TWIG-anyone...
« Reply #1 on: March 12, 2001, 04:11:36 PM »
It seems odd that you're using nuke.sql with TWIG, but in any case, it's nearly impossible to diagnose this without knowing what happens when you try it.  Do you get an error, and if so, what is it?

Brandon Friedman

Re: TWIG-anyone...
« Reply #2 on: March 12, 2001, 04:36:51 PM »
Steven wrote:

> Mysql table with the "nuke.sql"data, with the following command, mysql nuke
> < nuke.sql.

I have installed TWIG a few times - I generally create a database with a similar name to the application:

mysql> create database twig;

Then setup a user called twig and grant access to the database:

mysql> grant all on twig.* to twig@localhost identified by 'password';
mysql> exit
Bye
[root@mail-server twig-2.6.2]# mysqladmin reload
[root@mail-server twig-2.6.2]#

Next to populate the tables:
 mysql twig <./setup/twig.table.mysql

Edit the config file:
config.inc.php3 & dbconfig.inc.php3
That's all folks!
BF

Steven Lewis

Re: TWIG-anyone...
« Reply #3 on: March 12, 2001, 05:13:45 PM »
Dan & Brandon- I am very sorry. This weekend I installed phpProjekt( no problems) and attempted Nuke and TWIG. My original post was incorrect for TWIG but was correct for the Nuke install. For now I am concentrating on TWIG. I want the project management and group access that phpProjekt offers w/out so much detail. I hope the post by Brandon will help. Dan, have you installed TWIG? If so did you find any vast departures from the install info that  is included with TWIG. I am using e-smith 4.1. I got to the part where I am told to connect through the web browser to www.domain.xxx/ibay/twig-install.php3 to run the install script. This is where the install fails. It seems that the install script does not run. Well any way, if there are any screen shots or error codes etc. I can post let me know.

Dan Brown

Re: TWIG-anyone...
« Reply #4 on: March 12, 2001, 05:28:54 PM »
Yes, I've installed TWIG, though not a recent version (I'm using 2.5.something).  I made an ibay called twig and put everything there.  I don't recall any major changes from the documentation, but I also don't recall a twig-install.php script.  What happens when you try to run it?

Brandon Friedman

Re: TWIG-anyone...
« Reply #5 on: March 12, 2001, 06:07:56 PM »
Steven wrote:
>I am using e-smith 4.1. I got to the part where I am told to connect through the >web browser to www.domain.xxx/ibay/twig-install.php3 to run the install script

The script needs to be run from the command line:
 ./twig-install /home/e-smith/files/ibays/twig/html/

All it does is copy your html content to the html directory of your i-bay. You can do this manually. It doesn't copy any install docs,changelogs etc

BF