Support Forum

issue tracker

KG kgw
kgw
Member

OK, so I banged out 4.1 on a linux box and on WAMP (Windows Aint My Problem).

I have noticed a few issues and went to the issue tracker.

Am I assuming correctly that when it says “Closed” the issue is fixed?

Have you guys tried a fresh install a few times?

60 Answers

New Answer

MP Mr Papa
Mr Papa
Member

yes, if an issue is closed, it should be fixed and tested…

yes, we do periodic fresh installs, but frankly, we hit those hardest as we closer to the end as too much changes in between… its certainly possible we have knocked the install/upgrade along the way…

have you run into a problem?

MP Mr Papa
Mr Papa
Member

btw… its probably worth doing daily svn up unless you are working a specific issue that you dont want to get derailed on…

KG kgw
kgw
Member

A few.

ON a fresh install the first time. It threw SQL errors. Saying the smf members table and a couple others didnt exist.

On the image uploader there are a slew of errors..

WordPress database error: [Table 'wordpress.sfmembers' doesn't exist]
SELECT * FROM SFMEMBERS WHERE user_id=1

WordPress database error: [Table 'wordpress.sfmeta' doesn't exist]
SELECT * FROM SFMETA WHERE meta_type='default usergroup' AND meta_key='administrator' ORDER BY meta_id

WordPress database error: [Table 'wordpress.sfusers' doesn't exist]
SELECT user_login, display_name FROM SFUSERS WHERE ID=1

WordPress database error: [Table 'wordpress.sfmembers' doesn't exist]
INSERT INTO SFMEMBERS (user_id, display_name, pm, posts, moderator, lastvisit) VALUES (1, '', 0, -1, 0, now());

 

HOWEVER At  http:  //  imahack.kindagreywolfsworld.com/?page_id=3/general/adfhsdfh-dzsfh

It uploads an image at http:  //  imahack.kindagreywolfsworld.com/wp-content/forum-image-uploads/admin/Opps.jpg

However it inserts it in the post at http:  //  wp-content/forum-image-uploads/admin/Opps.jpg

 

There were a few others but a reinstall it fixed them.

KG kgw
kgw
Member

Mr Papa said:

btw… its probably worth doing daily svn up unless you are working a specific issue that you dont want to get derailed on…


OK will do

YS Yellow Swordfish
Yellow Swordfish
Member

Did these database errors persist? I know we have had the odd problem with the sfmembers table not being created (and I dont now why yet) but one of those errors says: [Table 'wordpress.sfusers' doesn't exist]. This is a base WordPress table and without it your WP system wouldn't run.

You can understand why I find that somewhat confusing!!!

KG kgw
kgw
Member

Well the latest nightly build I am getting 

Parse error: parse error, expecting `')'' in C:\wamp\www\wp-content\plugins\simple-forum\install\sf-install.php on line 799

Looking into that one.

[Table 'wordpress.sfusers' doesn't exist]

It did, but not anymore.

Since it is a test site I only had an admin name. So I made a regular member and POOF the errors are gone.

Pictures are still busted.

What I will do is wipe the site, install wp again for fun, make an admin and member, install simplepress and see whats happens.

KG kgw
kgw
Member

OK, there was an extra “}” at 799, I removed it and installed the latest its working

Now for your images breaking.

in config_tinybrowser.php you should have on or about line 40

image_uploads = '../wp-content/'.$sfconfig['image-uploads'];

if($sfuploads['privatefolder']) {

$image_uploads.='/'.$user_slug.'/';

}


$media_uploads = '../wp-content/'.$sfconfig['media-uploads'];

if($sfuploads['privatefolder']) {

$media_uploads.='/'.$user_slug.'/';

}


$file_uploads = '../wp-content/'.$sfconfig['file-uploads'];

if($sfuploads['privatefolder']) {

$file_uploads.='/'.$user_slug.'/';

}

You just have image_uploads = '/wp-content/'.$sfconfig['image-uploads'];

That will fix your image dilema. Hope this helps 😀

MP Mr Papa
Mr Papa
Member

I have fixed and committed the install file typo… thanks!

how does sfusers not exist? even with just an admin, it should have one entry, wouldn’t it?

I am just heading off to work, so don’t have time to look at the image report… either andy can today, or will look at it tonight…

KG kgw
kgw
Member

Mr Papa said:

how does sfusers not exist? even with just an admin, it should have one entry, wouldn’t it?


I think what is happening is on a NEW install, with no members, it's creating the tables but is throwing an error as there is no data in it. I had a long list of SQL errors but checking the database, they were there.

I am going to wipe the site, put my admin and a couple members in there and install again. If this is the case, I will work on the SQL.

YS Yellow Swordfish
Yellow Swordfish
Member

Yes but the ‘users’ table is a WordPress table not an SPF table. Without it WP will not work. That is a bizarre error and suggests something seriously wrong with the WP setup.

MP Mr Papa
Mr Papa
Member

yes…  even the admin created at wp install has an entry in the sfusers table…

KG kgw
kgw
Member

Im back from the Dr's so going to try yet another fresh install from scratch

I have noticed in the beta that regualr members cant post, they get “access denied”.

But I will do fresh installs to see fi it fixes it. WordPress seems to work fine with or without simplepress.

MP Mr Papa
Mr Papa
Member

interesting… just confirmed this myself on my test site… havent seen that before… both new topics and replies…

ticket coming up… tonight tough for me but will see if I can find time to investigate…

MP Mr Papa
Mr Papa
Member

as to your image post…

what image dilemma are you referring to?

and why do you think the ../wp-content is needed?  it works fine for me right now…

what do you have for your upload directory?  and where is wordpress installed in relation to doc root?