This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

ST 1.72 Edit Post Error


avatar
trackpads 1
From: -
ST 1.72 Edit Post Error

I am using the VB BB Wrappers but I am also using the ST forums. Everything is working fine except when I try to edit a post I get this:

Error: 1146 Table 'trackpad_forum.esselbach_st_websites' doesn't exist

Any Ideas? I know that trackpad_forum is the name of my VB database but I do not know why it is appending it to the edit post function.

Thanks,

-Jason

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: ST 1.72 Edit Post Error
avatar
Administrator
1340
From: Vienna, Austria
ST 1.72 Edit Post Error

I am still not able to reproduce this error on my 1.8 default install

Please look for the following code in comments.php:

                if (BBGetUser($insert[comment_author], $ldata[1]))


{
dbconnect();
PrepareForm();
}
else
{
echo GetTemplate("comments_error_notallowed");
}


Is everything there? dbconnect(); is important.
1 Re: ST 1.72 Edit Post Error
avatar
OP 1
From: -
ST 1.72 Edit Post Error

Oh, sorry. This is a clean install of 1.8 except for the edit you gave me above.

This is trying to edit my own comment on a story.

Thanks,

-Jason
1 Re: ST 1.72 Edit Post Error
avatar
Administrator
1340
From: Vienna, Austria
ST 1.72 Edit Post Error

Look like the same issue, but I can't reproduce it on my Storyteller/vBulletin test install.

Did you edit your own comment or from one of your users?

Also, is this a clear install of Storyteller 1.8 or an upgrade from the freeware version ?
1 Re: ST 1.72 Edit Post Error
avatar
OP 1
From: -
ST 1.72 Edit Post Error

Phillip,

I am getting this error when I try to edit a comment on a news story:

Error: 1146 Table 'trackpad_forum.esselbach_st_smilies' doesn't exist

Any idea?

Thanks!

-Jason
1 Re: ST 1.72 Edit Post Error
avatar
OP 1
From: -
ST 1.72 Edit Post Error

Excellent, works now!!

Thanks again,

-Jason
1 Re: ST 1.72 Edit Post Error
avatar
Administrator
1340
From: Vienna, Austria
ST 1.72 Edit Post Error

I found the problem. This bug is also present in the current 1.8 version.

Here the fix. Open post.php in an editor and find:

                if (BBGetUser($insert[post_author], $ldata[1]))

{
PrepareForm();
}

Replace this code with:

                if (BBGetUser($insert[post_author], $ldata[1]))

{
dbconnect();
PrepareForm();
}
1 Re: ST 1.72 Edit Post Error
avatar
Administrator
1340
From: Vienna, Austria
ST 1.72 Edit Post Error

Look like the script does not reconnect to the Storyteller database. I will look into this later.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.