How to install Blogstamp?

Kristijan - October 8, 2006 - 04:16

Hi,

I've downloaded the latest Blogstamp, but am a tad confused on what I need to do with the blogstamp.install file? I've opened it up, and it seems to create a table in the database, but how am I supposed to run this?

Do I upload it to my site and navigate to it? Or do I need to do something with like phpMyAdmin?

Cheers,
-Kristijan

no just upload the entire

VM - October 8, 2006 - 04:20

no just upload the entire blogstamp.module folder into your drupal installations modules folder.

have a look at how to install modules into drupal http://drupal.org/node/70151.

I tried that, but I get the

Kristijan - October 8, 2006 - 04:28

I tried that, but I get the following:

* user warning: Table 'krisnorg_drpl1.blogstamp' doesn't exist query: SELECT nid FROM blogstamp WHERE nid = 50 in /home/krisnorg/public_html/includes/database.mysql.inc on line 120.
* user warning: Table 'krisnorg_drpl1.blogstamp' doesn't exist query: SELECT nid FROM blogstamp WHERE nid = 47 in /home/krisnorg/public_html/includes/database.mysql.inc on line 120.
* user warning: Table 'krisnorg_drpl1.blogstamp' doesn't exist query: SELECT nid FROM blogstamp WHERE nid = 46 in /home/krisnorg/public_html/includes/database.mysql.inc on line 120.

Seems that the .install file isn't being executed?

-Kristijan

using the .install of the

VM - October 8, 2006 - 04:50

using the .install of the file i pulled out the mysql. I'm 98% sure i've done it properly. Run this sql in phpmyadmin.

CREATE TABLE blogstamp (
  nid int(10) unsigned NOT NULL,
  created bigint(13) NOT NULL,
  stamp text NOT NULL,
  PRIMARY KEY  (nid)
  TYPE=MyISAM
);

do not forget to add your prefix: krisnorg_blogstamp to the above query

I get the following SQL

Kristijan - October 8, 2006 - 04:55

I get the following

SQL query:

CREATE TABLE blogstamp(
nid int( 10 ) unsigned NOT NULL ,
created bigint( 13 ) NOT NULL ,
stamp text NOT NULL ,
PRIMARY KEY ( nid ) TYPE = MYISAM
);

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM
)' at line 6

Thanks for all the help :)

-Kristijan

 
 

Drupal is a registered trademark of Dries Buytaert.