Home arrow Forum JSMF 2.0 Beta 3
  Welcome, Guest. Please login or register.
Did you miss your activation email?
November 22, 2008, 05:25:12 AM
Home New Posts Search Calendar


Login with username, password and session length
+  Joomla Forum
|-+  Joomla Hacks
| |-+  Joomla-SMF Forum Support
| | |-+  Joomla-SMF 2.0.x (Moderators: -Wolverine, kai920)
| | | |-+  JSMF 2.0 Beta 3
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 2 [3] 4 5 ... 14 Go Down Print
Author Topic: JSMF 2.0 Beta 3  (Read 39756 times)
unliving sava
Joomla Pro
**

Karma: +5/-3
Offline Offline

Posts: 73


View Profile
Re: JSMF 2.0 Beta 3
« Reply #30 on: September 15, 2006, 09:47:32 AM »

we do leave the table on uninstall, I followed the process used by CB and others.  Simply on install we first find out if the table exists, if so we get the itemid and reg code from the previous install.  The itemid is saved to the table on the first click of save in the JSMF administration.  We then drop the previous table and create a new table using the defaults and the two items retrieved from the old table. 

I suppose if the default menu item created by the bridge is not being used then it might be possible that the Itemid is not saved, or the saved Itemid is not correct.

and what is the "default" menuitem, the one with id 154? it's always that number Wink
my only menuitem is the one with id 140 and is a component-type link like the one that gets automaticly created. So the only menuitem it must retrieve would be in my place the one witrh id 140, probaply this does not happen and all the things gets deleted :s
Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0 Beta 3
« Reply #31 on: September 15, 2006, 09:58:46 AM »

reviewing things here, the default Itemid would be whatever this query returns:

"SELECT id, link " .
"FROM #__menu " .
"WHERE link='index.php?option=com_smf'" .
"AND published=1 " .
"LIMIT 1";

If not previously set.  If you want to truly test your link, go in and modify the table and set it manually.  Then uninstall and reinstall the bridge.  That would be the correct test.  I suspect the table has the wrong Itemid(154) and since it persists across installs, it keeps using that Itemid. 
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
unliving sava
Joomla Pro
**

Karma: +5/-3
Offline Offline

Posts: 73


View Profile
Re: JSMF 2.0 Beta 3
« Reply #32 on: September 15, 2006, 10:44:57 AM »

140     index.php?option=com_smf
that query works :p

let's look what happens
uninstal, the xml installation file is being read, uninstall query states:
  <query>DELETE FROM `#__menu` WHERE link="index.php?option=com_smf"</query>
so my menuitem is deleted
when looking in install.smf.php:
$query =
        "INSERT INTO #__menu " .
        "( menutype, name, link, type, published, parent, componentid, sublevel, ordering, checked_out, checked_out_time, pollid, browserNav, access, utaccess ) " .
        "VALUES ('mainmenu', '"._JSMF_FORUM_LINK."', 'index.php?option=com_smf', 'components', 1, 0, 9999, 0, 8, 0, '0000-00-00 00:00:00', 0, 0, 0, 3)";
a new one is being created (i see it's being executed: $database->query()

and then we are going to look if there is an existing menuitem, verry nice, it's already deleted! The new one has indeed being input by the insert query, a new itemid has appeared so it takes an itemid that was not the one that it realy was before because it always gets deleted by uninstalling...

after that the table of JSMF gets the new id also...


does this makes it a bit clear?
Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0 Beta 3
« Reply #33 on: September 15, 2006, 10:54:55 AM »

sent you a pm
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
HighlanderICT
QA / Testers
Joomla Newbie
*****

Karma: +0/-0
Offline Offline

Posts: 27


View Profile
Re: JSMF 2.0 Beta 3
« Reply #34 on: September 15, 2006, 11:55:26 AM »

Wolverine - excellent work as usual and it has solved a few of the problems I was having but I am still having a couple of issues - maybe they are my issues, or Joomla issues or maybe they are the bridge, I dont know.

1. When logged in as admin and viewing the forum in wrapped mode, I click on the SMF ADMIN link (<site>/index.php?option=com_smf&Itemid=299&action=admin) and that address always seems to take me to the password page which is unwrapped. (Previously I only got this on my first visit to admin area, subsequent visits brought admin area up wrapped inside joomla).

Bearing in mind that you mentioned there were issues regarding the integration of the bridge with joomla or the syncing of info between them if the forum is unwrapped this gives me a problem as I cant get it to load. After entering my password, the page that loads has the address <site>/<forum dir>/index.php?option=com_smf;Itemid=299;action=admin. If I manually remove the forum directory portion of the address Joomla tells me the page does not exist.

2. If I try to sync by username in the admin or 'verify', I get the same inserted / failed message (see screenshots) and the main component config changes back to show that 'synchronise' usernames is disabled

« Last Edit: September 15, 2006, 11:58:03 AM by HighlanderICT » Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0 Beta 3
« Reply #35 on: September 15, 2006, 01:39:06 PM »

1. When logged in as admin and viewing the forum in wrapped mode, I click on the SMF ADMIN link (<site>/index.php?option=com_smf&Itemid=299&action=admin) and that address always seems to take me to the password page which is unwrapped. (Previously I only got this on my first visit to admin area, subsequent visits brought admin area up wrapped inside joomla).

Bearing in mind that you mentioned there were issues regarding the integration of the bridge with joomla or the syncing of info between them if the forum is unwrapped this gives me a problem as I cant get it to load. After entering my password, the page that loads has the address <site>/<forum dir>/index.php?option=com_smf;Itemid=299;action=admin. If I manually remove the forum directory portion of the address Joomla tells me the page does not exist.
In the old version my recommendation was to either disabled the admin security check or logout and log back in then go immediately to SMF admin.  Both of these will have the effect of keeping your forums wrapped and allowing you into SMF admin.  The URL you posted is invalid if you remove the forums part, it is close to a valid URL but not quite.  The redirect link comes from SMF so I don't have any control over it at this point, so there is no solution on the horizon just yet.
2. If I try to sync by username in the admin or 'verify', I get the same inserted / failed message (see screenshots) and the main component config changes back to show that 'synchronise' usernames is disabled
Yes, I forgot to address this problem as I mentioned in a previous message.  I will be looking to resolve this soon.
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
armybot
Joomla Newbie
*

Karma: +1/-0
Offline Offline

Posts: 26


View Profile
Re: JSMF 2.0 Beta 3
« Reply #36 on: September 15, 2006, 02:09:04 PM »

Hi.
I have J debug site ON, max level log and the result is still the same.

Blank page for "installation", "configuration" and even "about".

Now, for some reason, even when I perform a logout I get a blank page.

I PM you: if u want I could give u access into the backend to see the configuration.

For the php error log: my host sucks and doesn't offer me any php error log...

Thanks in advance!

[update] Great... now trying to unistall smf bridge component I'm getting a blank page too. I have to remove manually components
« Last Edit: September 15, 2006, 02:21:03 PM by armybot » Logged
armybot
Joomla Newbie
*

Karma: +1/-0
Offline Offline

Posts: 26


View Profile
Re: JSMF 2.0 Beta 3
« Reply #37 on: September 15, 2006, 03:51:13 PM »

OK folks:)
SOLVED!

Somehow, unistall process always left me admin component parts into administrator/components !
Removed manually and reinstalled successfully.

Now i'm tryong to install all stuff into the zip file:)

Only thing weird wight now is that I have perform synch successfully but i can't login into joomla (frontend) with admin forum account meanwhile the viceversa works perfectly.

I'll keep you all in touch and I'll annoy you asap with something else ;-)

THANKS Grin
Hi.
I have J debug site ON, max level log and the result is still the same.

Blank page for "installation", "configuration" and even "about".

Now, for some reason, even when I perform a logout I get a blank page.

I PM you: if u want I could give u access into the backend to see the configuration.

For the php error log: my host sucks and doesn't offer me any php error log...

Thanks in advance!

[update] Great... now trying to unistall smf bridge component I'm getting a blank page too. I have to remove manually components
Logged
Livebox
Guest
Re: JSMF 2.0 Beta 3
« Reply #38 on: September 15, 2006, 06:58:17 PM »

is there in the new bridge the following functions?

Login Redirection URL: Back to the page from which the user logged in
Logout Redirection URL: Back to the page from which the user logged out

amd intergrated search for Joomla and SMF ?
Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0 Beta 3
« Reply #39 on: September 15, 2006, 07:04:33 PM »

If a redirect url is available the bridge will redirect back to the page where the user logged in or out.  If it is not the bridge will fall back to the setting of on login and on logout redirect configurations in the JSMF administration.

Search is the first thing that will be added after JSMF 2.0 full release.
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
Jeremy
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 12


View Profile
Re: JSMF 2.0 Beta 3
« Reply #40 on: September 16, 2006, 02:09:00 AM »

I just want to say thank you.
Logged
Livebox
Guest
Re: JSMF 2.0 Beta 3
« Reply #41 on: September 16, 2006, 02:54:23 AM »

oke thanks Wink

Logged
Mass
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 5


View Profile
Re: JSMF 2.0 Beta 3
« Reply #42 on: September 16, 2006, 04:16:29 AM »

When installing this, on the last part of the installation, when I try to sync usernames, it comes up with the following error:

Joomla/Mambo[0] / SMF[0] inserted Failed :

Is there a workaround at all?

Thanks
Logged
enzo
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 5


View Profile
Re: JSMF 2.0 Beta 3
« Reply #43 on: September 16, 2006, 05:44:07 AM »

Is this release ok with joom!fish, changeing languages as well as joomla do?
Logged
Warwick
Joomla Newbie
*

Karma: +1/-0
Offline Offline

Posts: 26



View Profile WWW
Re: JSMF 2.0 Beta 3
« Reply #44 on: September 16, 2006, 08:03:55 AM »

When in the installation istructions "Uninstall all previous versions of modules/mambots/plugins" do you mean those realted to JSMF or are you saying that ALL modules/mambots/plugins need to be deleted out of Joomla?
Logged

Joomla 1.0.11 CB 1.0.1 SMF1.1RC3 J-SMF 2.0 RC3 (patched)
Pages: 1 2 [3] 4 5 ... 14 Go Up Print 
« previous next »
Jump to:  



Login with username, password and session length

Powered by MySQL Powered by PHP Joomla Forum | Powered by SMF 1.1 RC1.
© 2001-2005, Lewis Media. All Rights Reserved.
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!

Joomla Hacks is a Joomla Components, Joomla Modules, Joomla Templates, & Joomla Mambots resource portal. None of the text or images in this public website may be copied without the expressed written consent of the authors. Copyright 2005 by JoomlaHacks.com. Powered by Joomla. All rights reserved.
Terms of Use
Joomla Hacks



Joomla Hacks
German Lang French Lang Italian Lang Spanish Lang Japanese Lang Chinese Lang
Search Contact About Advertise Blogs Topsites Submit News Register Login