Home | Members Center | Contact us

-iBHacks and Support
--Forum: Features documentation
---Topic: Switching to SQL - a rough guide started by Sly

Sly
63% of all statistics are made up... including this one.



Top Dog
4868
June 2002
July 03 2002,16:34

To switch you MUST do the following:

1) Export from DBM or upload the backup to import
(AdminCP->Export Database [from DBM] or upload with FTP)
2) set up the link/tables in SQL BUT dont add the default databases
(AdminCP->Set-up Database [setup the SQL one but DONT add the default databases])
3) import into SQL
(AdminCP->Import Database [into SQL])
4) switch DB's
(AdminCP->Switch DB driver [over to SQL])

Now if you get stuck, you can get the board back onto DBM by editing

cgi-bin/Data/Boardinfo.cgi

and finding in there:

Code Sample

'DB_DRIVER' => q!mySQL!,

and change that to
Code Sample

'DB_DRIVER' => q!DBM!,

and your board will use DBM again allowing you to rescue the board and try the switch again.


[ iB Supported home ]

I love smilies!
Back to top
       
Sly
63% of all statistics are made up... including this one.



Top Dog
4868
June 2002
July 12 2002,14:30

A nice update by DBateman2k2 (good ole Dave)

By following these instructions:

WARNING: BACKUP DB BEFORE YOU BEGIN

1. Turn board Offline (precautionary)
2. Export DB
3. Setup DB
-- a. Set DB to MySQL
-- b. Create Tables - Yes, since you haven't created them
-- c. DB Files: No, re-install from backup
-- d. DB passwd, username & DB name
-- e. If DB is on same server, use localhost, otherwise enter IP
-- f. Port: default is 3306 or leave blank
-- g. Just leave the prefix set to ib_
4. Import DB
-- a. Choose recent Backup file if more than one
-- b. Set to MySQL
-- c. Leave blank.
5. Switch DB Driver
-- d. Switch to MySQL
-- e. Leave Admin set to YES
6. Rebuild Board Stats
7. Check your forum - read a few topics, is everything okay?

At this point, don't expect everything to be 100% okay. The switch and import process has problems. You most likely will need to fix polls and also forums. The signs of trouble include forums not being found and polls showing up duplicated and/or in the wrong forum. Luckily, IkonBoard authors knew about this and designed some fix utilities in the AdminCP:

SQL Client -> SQL poll fixer (remove any listed where poll title and topic title do not match up)
SQL Client -> Forum info fixer (resolves broken topic links)

8. Rebuild board stats (do it once more to ensure all is well)
9. Check your forum - read a few topics again, is everything okay now? It should be.
10. AdminCP

The next two steps are optional, but sensible at this stage to ensure all data is in perfect synchronization when users start logging back in:

11. Clean temp files (set all to "Yes" then relogin afterward)
12. Reset sessions (all users regardless of time)

And finally...

13. Turn board back online (enable forums for your users)

You're done!


[ iB Supported home ]

I love smilies!
Back to top
       
DKY




Adv.
542
July 2002
Oct. 22 2002,04:01

when importing into mysql, is it normal to take a long time?  so far I'm at

Quote
IMPORTED 0 topics of forum 683 of 0 for import, moving on to the next batch...

Continuing to import the database into...

(Click here if you do not wish to wait)


683??, how many more are there?


You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
veldfire




Top Dog
1391
July 2002
Oct. 22 2002,04:23

Quote
First off, I do not recommend switching if both of these situations are true:

1) Run a small forum with only a few hundred users or less
2) Have no desire to hack your forum the near/far future

But if you wish to switch anyway, there are a few important advantages to using MySQL over DBM: speed, scalability, universal compatibility.

Remember to always backup first!

Ikonboard uses Perl to interface with a MySQL database which lives on your server. You can run MySQL without Perl, and vice versa, but for both to work together Perl needs the proper modules installed.

http://www.cpan.org/modules/INSTALL.html at CPAN's web site.

Or, you may have a CPAN wrapper (installer) installed on your server to ease installation of modules. Ask your ISP or webhost if unsure.

http://www.mysql.com/downloads/index.html to download MySQL (get stable version 3.23).
http://www.devshed.com/Server_Side/MySQL/Intro/page2.html for a MySQL beginners tutorial.
http://www.devshed.com/Server_Side/Administration/Database/page6.html for help on building an initial database and creating an initial database and users/passwords.

Those are the only two things you really need to know since the rest can be done in the AdminCP.

Step 1: Initial setup (before you go into AdminCP)

Please note for purposes of this document the word "example" represents the name of your database and the word "webuser" represents the user name and "mysql>" is the prompt you'll see when you login successfully to MySQL.

All valid MySQL database commands end with a semi-colon character.

a) If necessary, install the proper Perl CPAN modules first (see links and info above)
b) If necessary, Install MySQL on your server (visit the download site listed above for instructions, be sure to set a password for any user you setup, including default root)
c) Login to MySQL as root user on your server, i.e. "/usr/local/mysql/bin/mysql -u root" (use your path)
d) Create a new database as follows:



CODE SAMPLE
mysql> create database example;


e) Create a database user:


CODE SAMPLE
mysql> GRANT usage
    -> ON example.*
    -> TO webuser@localhost;
Query OK, 0 rows affected (0.15 sec)
mysql> GRANT select, insert, delete
    -> ON example.*
    -> TO webuser@localhost;
Query OK, 0 rows affected (0.00 sec)
exit



At this point you've logged into MySQL, created a new database called "example" and a user named "webuser" who has full permissions to access and update the database and then exited MySQL. That is what needs to be done before you login to your AdminCP.

DO ** NOT ** SETUP ANY TABLES YET.
TABLE SETUP IS BEST DONE VIA THE ADMINCP.

Other simple MySQL commands to ensure the database is active:

CODE SAMPLE
use database example;
status

In the future you can re-login to MySQL anytime using whatever username and password and database you setup, i.e. "/usr/local/mysql/bin/mysql -u webuser -p example"  

Please note the -p prompts for password, this is an optional parameter and "example" is the database name to use which saves typing later.  

f) Exit MySQL once your know you can login with the correct username, password and database you created are viable.

Step 2: AdminCP Commands At this point it's time to go into the AdminCP and do the following:  

Please note that these instructions are similar to the official FAQ originally created by Soda (kudos to him) found http://help.ikonboard.com/docs/faq.php?num=4&f_id=2&s_id=31&q_id=140 here but I added in some steps and modified it slightly!  

1. Turn board Offline (precautionary)
2. Export DB
3. Setup DB
a. Set DB to MySQL
b. Create Tables - Yes, since you haven't created them
c. DB Files: No, re-install from backup
d. DB passwd, username & DB name
e. If DB is on same server, use localhost, otherwise enter IP
f. Port: default is 3306
g. Just leave the prefix set to ib_
4. Import DB
a. Choose recent Backup file if more than one
b. Set to MySQL
c. Leave blank.
5. Switch DB Driver
d. Switch to MySQL
e. Leave Admin set to YES
6. Rebuild Board Stats
7. Check your forum - read a few topics, is everything okay?

At this point, don't expect everything to be 100% okay.
The signs of trouble include forums not being found and polls showing up duplicated and/or in the wrong forum.

Luckily, IkonBoard authors knew about this and designed some fix utilities in the AdminCP:

SQL Client -> SQL poll fixer (remove any listed where poll title and topic title do not match up) SQL Client -> Forum info fixer (resolves broken topic links) 8. Rebuild board stats (do it once more to ensure all is well)

9. Check your forum - read a few topics again, is everything okay now? It should be.
10. AdminCP  
11. Clean temp files (set all to "Yes" then relogin afterward)
12. Reset sessions (all users regardless of time)
13. Turn board back online (enable forums for your users)  

You're done!  

Post-setup minor forum issues you may experience:

1) Topics subscribed in "Topic Tracker" may appear or disappear suddenly. If so, simply cancel them via the UserCP.
2) Check to make sure birthday is setup in UserCP personal info, I noticed mine was lost after the switch.

At this point you've done all the setup and major maintenance you can do for switching DBM to MySQL.  

Credit: Hate98. Thanks also to Soda and Lister for the original FAQ I based this on.  


Need a support ticket ?
[ Support Tickets ]

Can someone tell me why?

Quote
Patience means self-suffering- Mahatma Gandhi (1869-1948)



Back to top
        
DKY




Adv.
542
July 2002
Oct. 22 2002,04:30

that doesnt tell me how many there are, I'm now up to 1145

You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
Sly
63% of all statistics are made up... including this one.



Top Dog
4868
June 2002
Oct. 22 2002,12:03

Sounds like something is wrong to me ...

[ iB Supported home ]

I love smilies!
Back to top
       
DKY




Adv.
542
July 2002
Oct. 22 2002,12:07

but what, my export?....it works when i import to dbm.  my username and password for sql?.....ikonboard makes the tables, so it can access it.  The MySQL database itself?.....I wouldnt think there to be a problem since it makes the tables and all,  but I am new to this.

You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
DKY




Adv.
542
July 2002
Oct. 23 2002,02:11

okay let me go through this, and see if i'm doing anything wrong here.

1) turn off board....not needed, so I didnt do it.

2) export dbm database......done, I went to "Database/Export Database"
    a. Create '.tar' file?.....Create .tar file (uncompressed)
    b.  No. Topics to export at a time......left blank
    c. No. Files to put into each TAR file......left blank

3) set up the database.....did that, I went to "Database/Set-up Database"....then selected
    a.  Which database do you wish to set up?.....MySQL
    b. Do you want Ikonboard to create the tables for you?......Yes
    c. Do you want Ikonboard to re-install the default database files for you?......No - I will be re-installing from a backup
    d.  SQL Username.....username
    e. SQL Password.....password
    f. SQL Database name......database name
    g. SQL Database Server IP......localhost
    h. SQL Database Server Port......left blank
    I. SQL Table Prefix(so you can have multiple IBs in one DB......ib_

4) Import DB......did that at "Database/Import Database"
    a. Available Exported Databases.......current database I exported above
    b. Import into.....MySQL
    c. No. Topics to import at a time.....left blank

now, its at this step that I get the

Quote
IMPORTED 0 topics of forum 1 of 0 for import, moving on to the next batch...

Continuing to import the database into...

(Click here if you do not wish to wait)


and it just keeps going, last time i did it it went to

Quote
IMPORTED 0 topics of forum 1262 of 0 for import, moving on to the next batch...

Continuing to import the database into...

(Click here if you do not wish to wait)


what am I doing wrong?  anyone?


You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
Sly
63% of all statistics are made up... including this one.



Top Dog
4868
June 2002
Oct. 25 2002,01:11

Quote
2) export dbm database......done, I went to "Database/Export Database"
   a. Create '.tar' file?.....Create .tar file (uncompressed)
   b.  No. Topics to export at a time......left blank
   c. No. Files to put into each TAR file......left blank

I would set b. = 500 and c. = 5000
and
Quote

4) Import DB......did that at "Database/Import Database"
   a. Available Exported Databases.......current database I exported above
   b. Import into.....MySQL
   c. No. Topics to import at a time.....left blank

here I would set c. = 500 too

these are fairly safe numbers for a normal sized board on a regular (but not heavily overloaded) server.


[ iB Supported home ]

I love smilies!
Back to top
       
DKY




Adv.
542
July 2002
Oct. 25 2002,02:46

getting the same error

Quote
IMPORTED 0 topics of forum 1 of 0 for import, moving on to the next batch...

Continuing to import the database into...

(Click here if you do not wish to wait)


what do those mean anyway....no. Topics to export at a time, and No. Files to put into each TAR file?  If I knew more about databases, it would be self explanitory I'm sure, but, I'm clueless.

and should I export it 500......5000 all the time, even when using dbm, or is it just a mysql thing?


You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
DKY




Adv.
542
July 2002
Oct. 25 2002,04:06

now instead of it going infinitely, it stopped at this

Quote
IMPORTED 0 topics of forum 262 of 0 for import, moving on to the next batch...

Continuing to import the database into...

(Click here if you do not wish to wait)


and gave me this

Quote
Action canceled
Internet Explorer was unable to link to the Web page you requested. The page might be temporarily unavailable.

--------------------------------------------------------------------------------

Please try the following:

Click the  Refresh button, or try again later.

If you have visited this page previously and you want to view what has been stored on your computer, click File, and then click Work Offline.

For information about offline browsing with Internet Explorer, click the Help menu, and then click Contents and Index.




Internet Explorer  


then I hit the back button, and it started right back to the infinity.


You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
DKY




Adv.
542
July 2002
Oct. 26 2002,02:58

So, I thought I would try to do another test board on my server, and make it mysql...instead of DBM....and no problems, then I try to import my database backup.  The one that I exported from my DBM board, into mysql.  and I get this

Quote
Ikonboard has exited with the following error:

SQL error INSERT INTO active_sessions (MEMBER_LOGSTATE, MEMBER_NAME, USER_AGENT, THIS_IP, MEMBER_GROUP, LOCATION, MEMBER_PASSWORD, LAST_LOG_IN, LOG_IN_TYPE, ID, MEMBER_ID, RUNNING_TIME) VALUES ('1', '', 'Mozilla/4.0 (compatible; MSIE 5.5; MSN 2.6; MSN 1.x; Windows 95)', '209.109.235.150', '2', '|&|', '', '1035151352', '0', 'b321cbecfc3dbdfc8abc7dfe90dc10d9', '', '1035151354') in table 'active_sessions'. No Database Selected

This error was reported at: Sources/iDatabase/Driver/mySQL.pm line 565, line 1.

Please note that your 'real' paths have been removed to protect your information.


anyone know what this means?  I did it twice now, making sure I got the install correct and all, and I still get this error.


You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
wwfdisciple
Evil Commissioner



Pirate
470
Sep. 2002
Oct. 29 2002,23:24

I might be blind and maybe I have even asked this before, but what exactly (in the way of software running) does my server need to run the sql database.  I want to make sure everything is perfect.

sorry in advance if this question has come up and you have to answer it once again


"If the Gods could build me a ladder to the heavens, I'd climb up the ladder and drop a big elbow on the world." -- Cactus Jack

http://www.wwfdisciples.ca/cgi-bin/ikon/ikonboard.cgi
Back to top
     
veldfire




Top Dog
1391
July 2002
Oct. 29 2002,23:28

MySQL

Need a support ticket ?
[ Support Tickets ]

Can someone tell me why?

Quote
Patience means self-suffering- Mahatma Gandhi (1869-1948)



Back to top
        
wwfdisciple
Evil Commissioner



Pirate
470
Sep. 2002
Oct. 30 2002,01:25

thank you for your quick response I will pass it on to the company hosting my board. :D

"If the Gods could build me a ladder to the heavens, I'd climb up the ladder and drop a big elbow on the world." -- Cactus Jack

http://www.wwfdisciples.ca/cgi-bin/ikon/ikonboard.cgi
Back to top
     
DKY




Adv.
542
July 2002
Oct. 30 2002,12:13

is there any certain modules or anything that I would need to run mysql?  I ran the "Ikonboard Perl Test Script" and everything checked out, so I would imagine I would be okay.

You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
Cunka




Pirate
36
Sep. 2002
Oct. 31 2002,09:39

Exact same error here... And perl_test.cgi says I have mysql installed  ???

Back to top
       
Hudzon




Support Staff
446
Sep. 2002
Nov. 01 2002,21:45

OK to start with you will need to find a topic and file amount that will work with your server.

The number of topics to export at a time is how many topics it will put into each file for the backup, the number of files for each tar file is how many files the tar file can hold before it makes a new one.

On most of the servers I have worked with it has worked best to just have one big tar file, so I set the number of files for each tar file to 100000.

The number of topics to export and import at a time is the one that varies the most for me anyway. On some servers I must set this to a very low number like 10 or 20 and on others I can go as high as 100 - 500.


Back to top
   
Flash2Web.com




Pirate
3
Nov. 2002
Nov. 06 2002,13:47

I found something:

you must test your forum with

iBtest.cgi

in my case I think the problem is:
Quote
Has DBD-Mysql Perl module installed? No


Flash2Web.com - Flash for all
Back to top
    
DKY




Adv.
542
July 2002
Nov. 06 2002,13:49

Yeah, I did that, and mine has everything installed

You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
Flash2Web.com




Pirate
3
Nov. 2002
Nov. 11 2002,19:06

ok, this is the solution:
you must change the code in the files mamed:
Import.pm and Backup.pm
Quote
In the Import.pm file locate and change the "start" sub as follow
Code Sample

sub start {
my ($obj, $db) = @_;

my $new_directory = $iB::IN{'TAR'};
$new_directory    =~ s!\.tar$!!g;

# Create the new Directory
mkdir ($obj->{back_up}."/$new_directory", 0777);
chmod (0777, $obj->{back_up}."/$new_directory");
# Extract the .tar files

{
my $cwd = $iB::INFO->{'IKON_DIR'};
my $tar = Archive::Tar->new();

opendir DIR, $obj->{back_up};
my @tar_files = grep { !/^\./ && /^$new_directory-(.+?)\.tar$/ } readdir DIR;
closedir DIR;

my @files;
for (@tar_files) {
unless ($tar->read($obj->{back_up}."/$_", 0)) { # Archive is unreadable
my $underscore = $_; $underscore =~ s!\.tar$!!ig;
opendir DIR, "$obj->{back_up}/$underscore/";
my @removing = grep { !/^\./ } readdir DIR;
closedir DIR;
# for (@removing) {
# unlink ($obj->{back_up}.$_) if (-e $obj->{back_up}.$_);
# }

# die "+>ERROR: Cannot read the file $_ (Is it there and uploaded in Binary?)\n";
}

@files = $tar->list_files();
#$obj->extract($tar, "$obj->{back_up}/$new_directory", @files, $new_directory);
}

chdir $cwd;
}


my $url = "CODE=do_tables&dir=$new_directory&id=0&DB_DRIVER=$iB::IN{'DB_DRIVER'}&MEMBERS=$iB::IN{MEMBERS}&TOPICS=$iB::IN{TOPICS}";

$obj->_redirect( $url, "Tar file extracted, preparing to create the new database" );
}


Quote
In the Backup.pm file locate and change the "do_forums" sub as follow
Code Sample

sub do_forums {
   my ($obj, $db) = @_;

   # Cap the max topics at 500

   my $max = $iB::IN{TOPICS} || 500;
   my $st  = $iB::IN{st} || 0;
   my $end = $max + ($st - 1);
   my $id  = $iB::IN{fid};

   # Which forum are we on?
   my $fids  = {};
   my $fcnt;
   my $string;
   {
       # Parse the config file
       local $/ = undef;
       open FORUMS, "$obj->{'this_dir'}/tmp_forums" or die "Cannot read the forums config file ($!)";
       $string = <FORUMS>;
       close FORUMS;
       chomp $string;
   }
   for ( split /;/, $string ) {
       my ($k, $v) = split /\:/;
       $fids->{ $k } = $v;
       ++$fcnt;
   }


   # If we've done...

   if ($fids->{ $id } eq '!!END!!') {

       # We are all done, simply tar up the database if that's what we
       # intend to do.

       if ($iB::IN{'pack'} eq 'tar') {
           $iB::IN{'per_tar_files'} ||= 15;

           opendir DIR, $obj->{'this_dir'};
           my @read_files = readdir DIR;
           closedir DIR;

           my @files;
           for (@read_files) {
               push @files, "$obj->{'this_dir'}/$_" unless ($_ eq '.' or $_ eq '..');
           }

           my $files      = scalar @files;
           my $filecount  = $iB::IN{'filecount'} || 0;
           $filecount     = $files if $filecount > $files;

           my $filecount2 = $filecount + $iB::IN{'per_tar_files'};

#            $obj->do_tar('EXPORT-'.$obj->{'time'});
#            rmtree $obj->{'this_dir'};

           if ($filecount == $files) {
               #rmtree $obj->{'this_dir'};
           } else {
#                my @file_list = $files[$filecount .. $filecount2];

               my @file_list;
               for ($filecount .. $filecount2) {
                   push @file_list, $files[ $_ ];
               }

               $obj->do_tar('EXPORT-'.$obj->{'time'}.'-NUM'.$filecount2, @file_list );

               # Bring up the Redirect screen, so we can process the next batch of
               # backup data files...
               my $Url = "?AD=1&s=$iB::SESSION&act=bak&CODE=dobak&time=".$obj->{'time'}."&pack=$iB::IN{'pack'}&forums=1&fid=$id&per_tar_files=$iB::IN{'per_tar_files'}&filecount=$filecount2";
               $obj->_redirect( "Created TAR files for $filecount2 out of $files files, processing next batch...", $Url);
           }
       }
   
       $ADMIN->static_screen( URL   => "act=backup",
                              TITLE => "Export Completed",
                              TEXT  => "The database has been successfully exported. Your exported database is in the Back-ups directory"
                            );
   }




   # Correct the total forum count.
   --$fcnt;
   my $rcnt = 0;
   # Get the topics to export...

   my $topics = $db->query( TABLE  => 'forum_topics',
                            ID     => $fids->{$id},
                            RANGE  => "$st to $end",
                            WHERE  => "FORUM_ID == $fids->{$id}",
                          );

   if (scalar (@{$topics}) > 0) {
       # Start the exporting

       # Open the topic file
       open THETOPICS, ">>$obj->{'this_dir'}/tmp_topics-$fids->{ $id }";
       for my $t (@{$topics}) {
           my $record = $db->join_record( TABLE => 'forum_topics', VALUES => $t );
           print THETOPICS $record."\n";
           ++$rcnt;
           # Get the posts..
           my $posts = $db->query( TABLE => 'forum_posts',
                                   DBID  => 'f'.$fids->{$id},
                                   ID    => $t->{TOPIC_ID},
                                   WHERE => "FORUM_ID == $fids->{$id} and TOPIC_ID == $t->{TOPIC_ID}",
                                 );

           # Open the posts file
           open THEPOSTS, ">$obj->{'this_dir'}/tmp_fposts-$fids->{ $id }-$t->{TOPIC_ID}";
           for my $p (@{$posts}) {
               my $post = $db->join_record( TABLE => 'forum_posts', VALUES => $p );
               print THEPOSTS $post."\n";
           }
           # close the posts file
           close THEPOSTS;
       }
       # Close the topics file
       close THETOPICS;

       # Redirect to the new screen
       my $next = $end + 1;

       my $Url = "?AD=1&s=$iB::SESSION&act=bak&CODE=dobak&time=".$obj->{'time'}."&pack=$iB::IN{'pack'}&TOPICS=$iB::IN{TOPICS}&forums=1&fid=$id&st=$next&per_tar_files=$iB::IN{'per_tar_files'}";
       $obj->_redirect( "Exported $rcnt topics of forum unique ID $fids->{$id} so far, processing next batch....", $Url);
   }

   else {
       # We must have completed the export on that forum, lets move onto the next...
       ++$id;
       my $Url = "?AD=1&s=$iB::SESSION&act=bak&CODE=dobak&time=".$obj->{'time'}."&pack=$iB::IN{'pack'}&TOPICS=$iB::IN{TOPICS}&forums=1&fid=$id&st=0&per_tar_files=$iB::IN{'per_tar_files'}";
       $obj->_redirect( "Completed forum unique ID $fids->{$id}, processing next forum....", $Url);
   }
}


Warning!!! make a backup of these files first!  :cool:

then, export your current DBM forum and import in to your Mysql!!
and Done!

Sorry for my bad english, hope this help. :buttrock:


Flash2Web.com - Flash for all
Back to top
    
DKY




Adv.
542
July 2002
Nov. 12 2002,19:49

do I do this before I export also? or do I do this, and then import my old export?

You may now download your
last 'n' replies to a topic
pop up for quote
Back to top
  
Hudzon




Support Staff
446
Sep. 2002
Nov. 12 2002,20:51

Pepe, could you explain what your edit is doing? it looks like you are comenting out some error checking and cleanup routine?

Back to top
   
Flash2Web.com




Pirate
3
Nov. 2002
Nov. 13 2002,13:22

The problem is in the tar/untar feature (I don't know what is happen exactly, but something is wrong in the code or my server)

So I just avoid deletion of temporary folder, so when you export your data, all files created remains in your server.
Then I avoid untar process, and the forum, just read the info directly from the temp folder.

Quote
do I do this before I export also? or do I do this, and then import my old export?

I'm assuming you have a DBM forum runing and you want to convert it to Mysql


Flash2Web.com - Flash for all
Back to top
    
Lacrosse Boy




Pirate
49
Oct. 2002
Nov. 23 2002,20:20

Where are these located?

"Posting with a pinch of insanity."
Back to top
    
Sly
63% of all statistics are made up... including this one.



Top Dog
4868
June 2002
Nov. 23 2002,21:25

Have a look in:

cgi-bin/Sources/Admin


[ iB Supported home ]

I love smilies!
Back to top