|
Title: JSMF 2.0 Final Post by: -Wolverine on December 24, 2006, 05:14:52 PM With the overall success of JSMF 2.0RC3 I am now comfortable to call this next release JSMF 2.0 Final. There have been minor updates to the bridge to address the anchor handling problem, the pop up windows missing headers issue, and the php memory limit problems on busier sites.
The changelog is included in the com_smf_2_0.zip file after extracting JSMF_2_0_unzip1st.zip. The user guide can be found here until it is available in the downloads section. If this link is not working then check the downloads section under the Joomla-SMF Project to find the JSMF User Guide. JSMF User Guide (http://www.joshualross.us/downloads/jsmf_user_guide_2_0.pdf) The package is attached for registered users. Check the downloads section as well, although it generally takes a day or two for it to be available. edit: I forgot to put the pre-patched joomla indexes in the package. Joomla 1.0.11 and 1.0.12 are attached Title: Re: JSMF 2.0 Final Post by: Mellow on December 24, 2006, 09:56:32 PM I doubt this has been check for 1.0.12 compatibility then?
Not the best time to release a final release ;) Title: Re: JSMF 2.0 Final Post by: Mellow on December 24, 2006, 10:29:49 PM After remembering to patch the joomla index file everything seems to be working fine for joomla 1.0.12 and jsmf 2.0 final on all my sites.
Title: Re: JSMF 2.0 Final Post by: Livebox on December 25, 2006, 03:29:34 AM I doubt this has been check for 1.0.12 compatibility then? Not the best time to release a final release ;) All ready checked here. Works fine ;) so far no problems Title: Re: JSMF 2.0 Final Post by: Pmoney on December 25, 2006, 08:27:51 AM SOLVED, my mistake, didn't "save" after entering path.
Works great here! Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 25, 2006, 11:16:07 AM I'm glad, I've been so busy I didn't even see that 1.0.12 was about to come out. I'll run through some tests today.
Title: Re: JSMF 2.0 Final Post by: masyomo on December 25, 2006, 01:53:25 PM seems fine on or site with joomla 1.0.12 ;D
Only thing I noticed is that users aren't redirected to site home page on log out - funny cos in previous versions it wouldn't work so that users were returned to the same page they logged out from ::) Not really too bothered either way though ;) Title: Re: JSMF 2.0 Final Post by: Little Jedi on December 25, 2006, 06:31:13 PM Got this error :
Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 177 bytes) in /home/www/6909aba8fd62682b8814751ede67ee9b/web/administrator/components/com_smf/includes/Lite.php on line 367 Title: Re: JSMF 2.0 Final Post by: Clarensio on December 26, 2006, 06:01:19 AM @ Wolverine:
But in the packet 2.0 final version the file was eliminated mod_smf_whosonline_2_0.zip? Ok (at least to me) with joomla 1.0.12 Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 26, 2006, 09:25:44 AM Got this error : Really? I've been thinking about a better way to handle high volume sites and I will be working on a patch. For now, go into components/com_smf/smf.class.php and change line 394 and 395 by commenting them out. Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 177 bytes) in /home/www/6909aba8fd62682b8814751ede67ee9b/web/administrator/components/com_smf/includes/Lite.php on line 367 Code: //array_push($cache_search, $orig); //array_push($cache_replace, $new_link); This should prevent this error from being produced. Additionally, turn off function caching in the JSMF configuration. I'll be working on a patch. Title: Re: JSMF 2.0 Final Post by: GlingGlo on December 26, 2006, 12:56:08 PM Hi...
i am running: JSMF 2.0 Final Joomla 1.0.12 CB 1.0.2 i just saw that there is a problem with notification emails (like new replies posted, etc..) i am getting this on the email: Code: A reply has been posted to a topic you are watching by prueba. View the reply at: http://www.mysite.com/index.php?option=com_smf&Itemid=143&topic=16.new;topicseen#newUnsubscribe to this topic by clicking here: http://www.mysite.com/index.php?option=com_smf&Itemid=143&action=notify;topic=16.0More replies may have been posted since we send you this email, but we will wait until you return to the board before continuing with this notification. Regards after the URL of the topic, the word "Unsubscribe" is sticked to the link, instead of starting in a new line, so it appears as part of the link(blue and underlined). Same thing happens with the word "More" i have checked accessing the forum directly instead of through Joomla and repliying, and the email is sent correctly, so i guess it´s something to do with the bridge. However i cannot asure if this started happening only in JSMF 2.0 Final since before i had not checked this feature. Any hints? Cheers, NiCo Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 26, 2006, 01:54:36 PM This was reported and is in the process of being fixed. It most likely started in 2.0RC2.
Title: Re: JSMF 2.0 Final Post by: GlingGlo on December 26, 2006, 01:58:07 PM any idea on how to workaround this in the meantime? it´s very bad image for a site to send notifications screwed up like this :(
Thanks, NiCo Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 26, 2006, 02:13:45 PM any idea on how to workaround this in the meantime? it´s very bad image for a site to send notifications screwed up like this :( On or around line 1251 in components/com_smf/smf.class.php find this line:Thanks, NiCo Code: array_push($smf_message_replace, $jsmf->fixLink($link), '&'); and change it to Code: array_push($smf_message_replace, $jsmf->fixLink($link)."\n\r", '&'); That should do the trick Title: Re: JSMF 2.0 Final Post by: GlingGlo on December 26, 2006, 03:08:06 PM thank you Wolverine...that worked ;)
cheers, NiCo Title: Re: JSMF 2.0 Final Post by: sm8417 on December 26, 2006, 03:55:35 PM Really? I've been thinking about a better way to handle high volume sites and I will be working on a patch. For now, go into components/com_smf/smf.class.php and change line 394 and 395 by commenting them out. Code: //array_push($cache_search, $orig); //array_push($cache_replace, $new_link); This should prevent this error from being produced. Additionally, turn off function caching in the JSMF configuration. I'll be working on a patch. That prevents the error, but the problem still exist for me with hitting a "blank page" after hitting reply, new topic etc.. Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 26, 2006, 03:59:13 PM after making the change go into JSMF config and click save which clears the cache
Title: Re: JSMF 2.0 Final Post by: Little Jedi on December 26, 2006, 04:03:05 PM Tried both possibilies, of caching on and off, but still the same problem.
I've made the changes in smf.class.php, so let's see what's gonna happen. We have over 2000 users now :) Title: Re: JSMF 2.0 Final Post by: sm8417 on December 26, 2006, 04:06:58 PM after making the change go into JSMF config and click save which clears the cache Same problem... I will be more then happy to give you backend access so you can see it for yourself.. let me know if you would like access. Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 26, 2006, 07:32:34 PM do you have cache user array enabled?
Title: Re: JSMF 2.0 Final Post by: sm8417 on December 26, 2006, 08:08:55 PM do you have cache user array enabled? Nope.. its off Title: Re: JSMF 2.0 Final Post by: mrmax182 on December 26, 2006, 10:21:32 PM Big problem:
The convert tool timesout or something while converting my users, i have +7000 users and it converts near 1300, then the script just ask for download index2.php. is there a script than i can run on phpmyadmin for that? or maybe a way to get the process going in parts Title: Re: JSMF 2.0 Final Post by: Roland on December 26, 2006, 10:31:58 PM Thanks for the work Wolverine. Installed without noticable issues Joomla 1.0.12 using CB for login/profile
The only issue I am still trying to address is: - Username is displayed when new member joins site - Once User updates profile all their post update to display RealName - Am I missing a setting to revert display back to UserName? I though I read a previous post which you said this was overlooked in the previous revision, but fixed in final 2.0. Title: Re: JSMF 2.0 Final Post by: GlingGlo on December 27, 2006, 01:01:26 AM On or around line 1251 in components/com_smf/smf.class.php find this line: Code: array_push($smf_message_replace, $jsmf->fixLink($link), '&'); and change it to Code: array_push($smf_message_replace, $jsmf->fixLink($link)."\n\r", '&'); That should do the trick that worked perfect...thank you :) NiCo Title: Re: JSMF 2.0 Final Post by: madmat on December 27, 2006, 05:21:57 AM thank you so much Wolverine! ;)
Title: Re: JSMF 2.0 Final Post by: Sherie on December 27, 2006, 06:51:43 AM G'day boys,
Does this work with Joomfish 1.7, or is there a patch/fix as such? Currently running Joomla 1.0.11 Stable + SMF 1.1.1 + Joomla-SMF 2.0RC3 (which doesn't seem to work with Joomfish) Our Joomla is set to use Türkçe and English, but we can't get the forum to use anything but English. Ta. Title: Re: JSMF 2.0 Final Post by: exrace on December 27, 2006, 07:49:40 AM G'day boys, Might be having a issue finding your lang file.Does this work with Joomfish 1.7, or is there a patch/fix as such? Currently running Joomla 1.0.11 Stable + SMF 1.1.1 + Joomla-SMF 2.0RC3 (which doesn't seem to work with Joomfish) Our Joomla is set to use Türkçe and English, but we can't get the forum to use anything but English. Ta. File com_smf/smf.php uses english if it can't find the lang file to include so maybe you can hack a hard code to your lang file. That code starts at about line 92 in the rc3 version of the bridge. Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 27, 2006, 09:29:13 AM Thanks for the work Wolverine. Installed without noticable issues Joomla 1.0.12 using CB for login/profile This is an update from SMF profile or CB profile?The only issue I am still trying to address is: - Username is displayed when new member joins site - Once User updates profile all their post update to display RealName - Am I missing a setting to revert display back to UserName? I though I read a previous post which you said this was overlooked in the previous revision, but fixed in final 2.0. Title: Re: JSMF 2.0 Final Post by: Roland on December 27, 2006, 10:50:37 AM This is an update from SMF profile or CB profile? CB profile. Thanks. Title: Re: JSMF 2.0 Final Post by: mrmax182 on December 27, 2006, 11:26:29 AM Big problem: The convert tool timesout or something while converting my users, i have +7000 users and it converts near 1300, then the script just ask for download index2.php. is there a script than i can run on phpmyadmin for that? or maybe a way to get the process going in parts Anyone can help me?? ??? (sorry for the bad english, im not a english-spoken guy) By the way, some characters in the joomla site are looking funny since i installed the bridge, but they disapear on the forum pages. Its very important to me to get this community working before jan 1. My site is at www.lajodedera.com/lajodedera/ if u want to take a look at it. Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 27, 2006, 11:35:29 AM thats the max_execution_time of php causing that, you can work around that by adding this to your index2.php file
Code: ini_set('max_execution_time', '500'); Once the process completes make sure to remove that line. Title: Re: JSMF 2.0 Final Post by: Stephen on December 27, 2006, 12:44:55 PM Hi
I wonder if you guys can help... I have installed the bridge and it is a success, but when I register a user in SMF, it does not seem to update it when I search for it in joomla admin screen. I thought the aim of this script was to add the user to both configs.. Also when I click on the optional sync username or realname it comes up with the default 'The page cannot be displayed' page Thanks, Stephen Title: Re: JSMF 2.0 Final Post by: mrmax182 on December 27, 2006, 12:59:54 PM Hi I wonder if you guys can help... I have installed the bridge and it is a success, but when I register a user in SMF, it does not seem to update it when I search for it in joomla admin screen. I thought the aim of this script was to add the user to both configs.. Also when I click on the optional sync username or realname it comes up with the default 'The page cannot be displayed' page Thanks, Stephen I am having just the same problem. Title: Re: JSMF 2.0 Final Post by: mrmax182 on December 27, 2006, 03:48:44 PM thats the max_execution_time of php causing that, you can work around that by adding this to your index2.php file Code: ini_set('max_execution_time', '500'); Once the process completes make sure to remove that line. I did it, but im having the same problem, it stills tells me to download index2.php a few seconds later than im cicked the sinc link Title: Re: JSMF 2.0 Final Post by: Sherie on December 27, 2006, 04:32:04 PM I am having just the same problem. Thanks mrmax182. So if we add some code somewhere for the script to specifically use either English or Turkish, then users can select their language via Joomfish as usual and the script will then change the language in SMF? Is that right?Also, do you know if anyone has managed to get the script to work with Joomfish yet. Might be a handy contact. Thanks again. Title: Re: JSMF 2.0 Final Post by: GlingGlo on December 27, 2006, 05:01:48 PM Also, do you know if anyone has managed to get the script to work with Joomfish yet. Might be a handy contact. Thanks again. Guys, i have added a post with instructions on how to make Joomfish talk to SMF. It´s easy and it works ;) http://www.joomlahacks.com/index.php?option=com_smf&Itemid=94&/topic,2982.msg14632.html Cheers, NiCo Title: Re: JSMF 2.0 Final Post by: Old Blue on December 27, 2006, 06:06:06 PM Aloha I don't see the who's online package included in the first post or the download section -- can anyone give me a link to it :)
Mahalos! Title: Re: JSMF 2.0 Final Post by: Little Jedi on December 27, 2006, 07:36:56 PM Aloha I don't see the who's online package included in the first post or the download section -- can anyone give me a link to it :) Mahalos! http://www.joomlahacks.com/component/option,com_remository/Itemid,41/func,fileinfo/id,455/ By the way, already 24h with the modifications in the php.class file and the forum is still up. There is just one nasty bug, that i had for eons, it's that the forum changes color :s and when i go to the unwrapped, it's the correct color that shows up. Anyone has a clue ? Title: Re: JSMF 2.0 Final Post by: Old Blue on December 27, 2006, 07:49:39 PM http://www.joomlahacks.com/component/option,com_remository/Itemid,41/func,fileinfo/id,455/ Mahalos!! Quote By the way, already 24h with the modifications in the php.class file and the forum is still up. What is this -- don't recall that being mentioned in this thread - been away for awhileQuote There is just one nasty bug, that i had for eons, it's that the forum changes color :s and when i go to the unwrapped, it's the correct color that shows up. Anyone has a clue ? Sorry no :-\ Title: Re: JSMF 2.0 Final Post by: shua on December 27, 2006, 08:03:55 PM I am trying to install JSMF 2.0 Final onto a relatively fresh install of
Joomla 1.0.12 SMF 1.1 CB 1.0.2 I am following the JSMF User Guide, and have downloaded JSMF_2_0_unzip1st.zip, both from the first post. I am to the part where I am supposed to be installing the CB Plugin (smf_cb_plugin_2_0.zip). Unfortunately, that does not appear to be in the ZIP. When I unzip it, I have the following files: cb_plug_smfinfo_2_1_1.zip cb_plug_smfposts_2_1_1.zip cb_plug_smfprofile_2_1.zip cb_plug_smfsignature_2_0.zip cb_plug_smf_2_0_2.zip com_smf_2_0.zip joomap_plug_smf_2_0.zip mod_smf_login_2_0_4.zip mod_smf_recenttopics_2_0_2.zip So, I assume that what was meant was to use cb_plug_smf_2_0_2.zip. So, I go to Community Builder -> Plugin Management and enter that file and click Upload and Install. That's when I'm presented with this lovely error message: Quote Failed to create directory "/var/www/vhosts/REMOVED-FOR-SECURITY/httpdocs/components/com_comprofiler/plugin/user/plug_smfcbplugin/" So, I had to CHMOD the permissions on that "user" folder from 755 to 777. I had to do this with a couple of files. My question (I know, finally): Is it okay to change these files and folders back to 755? Title: Re: JSMF 2.0 Final Post by: sm8417 on December 28, 2006, 09:45:21 AM do you have cache user array enabled? Wolverine, Any other ideas on the memory issue? Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 09:47:47 AM I did it, but im having the same problem, it stills tells me to download index2.php a few seconds later than im cicked the sinc link were more users synced? If so, then it is a matter of making that number larger.Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 09:48:44 AM Wolverine, if you want a quick fix Any other ideas on the memory issue? ini_set('memory_limit', '32M'); I am working on a patch to completely disable caching. Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 09:49:49 AM I am trying to install JSMF 2.0 Final onto a relatively fresh install of yes, and sorry for not updating the document. That plugin is correct.Joomla 1.0.12 SMF 1.1 CB 1.0.2 I am following the JSMF User Guide, and have downloaded JSMF_2_0_unzip1st.zip, both from the first post. I am to the part where I am supposed to be installing the CB Plugin (smf_cb_plugin_2_0.zip). Unfortunately, that does not appear to be in the ZIP. When I unzip it, I have the following files: cb_plug_smfinfo_2_1_1.zip cb_plug_smfposts_2_1_1.zip cb_plug_smfprofile_2_1.zip cb_plug_smfsignature_2_0.zip cb_plug_smf_2_0_2.zip com_smf_2_0.zip joomap_plug_smf_2_0.zip mod_smf_login_2_0_4.zip mod_smf_recenttopics_2_0_2.zip So, I assume that what was meant was to use cb_plug_smf_2_0_2.zip. So, I go to Community Builder -> Plugin Management and enter that file and click Upload and Install. That's when I'm presented with this lovely error message: So, I had to CHMOD the permissions on that "user" folder from 755 to 777. I had to do this with a couple of files. My question (I know, finally): Is it okay to change these files and folders back to 755? Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 09:52:28 AM Hi If all files are patched, both joomla and SMF, and you are registering through the SMF being displayed by the bridge(not SMF standalone), then this works and has been tested multiple times. If you are reporting a problem please add as much detail as you can.I wonder if you guys can help... I have installed the bridge and it is a success, but when I register a user in SMF, it does not seem to update it when I search for it in joomla admin screen. I thought the aim of this script was to add the user to both configs.. Also when I click on the optional sync username or realname it comes up with the default 'The page cannot be displayed' page Thanks, Stephen Title: Re: JSMF 2.0 Final Post by: Angelos on December 28, 2006, 12:45:05 PM Hey joomlahacker, great job again!*thumbsUP*.
I just installed the new release and realised no bugs: joomla 1.0.12 CB 1.02 JSMF 2.0 (including all cb plugins) EDIT: Avatar sync with the smf-cb profile plugin doesn't work.There is problem with the url: http://www.mysite.com/dir/comprofiler/tngallery/butterfly.gif (SMF Url) http://www.mysite.com/dir/comprofiler/gallery/butterfly.gif (CB Url) Maybe there was a different directory in the older cb version? Title: Re: JSMF 2.0 Final Post by: unliving sava on December 28, 2006, 01:54:45 PM In the errorlog of sms i find this:
8: Undefined variable: av_path File: /components/com_smf/smf.class.php Line: 1368 using 2.0 final, SMF 1.1.1, J!1.0.12 Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 03:13:10 PM Hey joomlahacker, great job again!*thumbsUP*. gallery images previously did not synchronize. I reported this problem and maybe it was fixed in 1.0.2? Can you verify this was a gallery image? If so, I need to update the process to handle gallery images.I just installed the new release and realised no bugs: joomla 1.0.12 CB 1.02 JSMF 2.0 (including all cb plugins) EDIT: Avatar sync with the smf-cb profile plugin doesn't work.There is problem with the url: http://www.mysite.com/dir/comprofiler/tngallery/butterfly.gif (SMF Url) http://www.mysite.com/dir/comprofiler/gallery/butterfly.gif (CB Url) Maybe there was a different directory in the older cb version? Title: Re: JSMF 2.0 Final Post by: Old Blue on December 28, 2006, 09:28:07 PM Aloha I'm having an issue w/ registering new accounts - after a person fills in the required info and hits accept, they are taken to a blank page. I've placed error reported on but nothing shows -- any insights to this?
J! 1.0.12 JSMF 2.0 SMF = 1.1.1 log/registration via JSMF www.thefold.org Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 09:45:29 PM Aloha I'm having an issue w/ registering new accounts - after a person fills in the required info and hits accept, they are taken to a blank page. I've placed error reported on but nothing shows -- any insights to this? dunno, went to test and it seems Ive already been to your site before. Wanna delete my account? Wolverine(joshualross at gmail dot com) Then Ill go through it againJ! 1.0.12 JSMF 2.0 SMF = 1.1.1 log/registration via JSMF www.thefold.org Title: Re: JSMF 2.0 Final Post by: Old Blue on December 28, 2006, 09:47:54 PM Mahalos! I've deleted your account - in addition I also have the problem as mentioned a couple of posts back -- you think it's related?
Hi I wonder if you guys can help... I have installed the bridge and it is a success, but when I register a user in SMF, it does not seem to update it when I search for it in joomla admin screen. I thought the aim of this script was to add the user to both configs.. Also when I click on the optional sync username or realname it comes up with the default 'The page cannot be displayed' page Thanks, Stephen Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 09:56:56 PM Mahalos! I've deleted your account - in addition I also have the problem as mentioned a couple of posts back -- you think it's related? hmmm, worked for meQuote from: www.thefold.org Thank you for registering. You will receive an email soon with a link to activate your account. If you don't receive an email after some time, check your spam folder. But then I checked the registration email and you are having the same issue as reported by Nico (http://www.joomlahacks.com/component/option,com_smf/Itemid,94/topic,2972.msg14592#msg14592). Use this fix (http://www.joomlahacks.com/component/option,com_smf/Itemid,94/topic,2972.msg14595#msg14595) and it will resolve your issue. And it should resolve the other problem as well, as I suspect that it was causing this not to synchronize to Joomla. Let me know if that is not the case. Title: Re: JSMF 2.0 Final Post by: Old Blue on December 28, 2006, 10:02:44 PM Many, many thanks!! I'll apply that fix!!
Also when I go to sync users in the admin>component page>forum>install - I get a page not found error. EDIT: I'm checking your second half of your statement now! Will report back in a few! Mahalos! Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 10:05:32 PM how many users do you have?
Title: Re: JSMF 2.0 Final Post by: Roland on December 28, 2006, 10:21:01 PM Still trying to figure out why I can't get the username to display, realnames are being shown. Any suggestions? Thanks.
Title: Re: JSMF 2.0 Final Post by: Old Blue on December 28, 2006, 10:27:35 PM how many users do you have? Less than 200 members -- I've made the update to smf.class.php as you suggested and it fixed the activation email issue but not for the admin sych issue using real or user names. I can keep checking things for you - no worries!! :) Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 11:01:30 PM Thanks for the work Wolverine. Installed without noticable issues Joomla 1.0.12 using CB for login/profile And you have the configuration option Synchronize Usernames Only enabled in the backend? I checked the code and this should not be happeningThe only issue I am still trying to address is: - Username is displayed when new member joins site - Once User updates profile all their post update to display RealName - Am I missing a setting to revert display back to UserName? I though I read a previous post which you said this was overlooked in the previous revision, but fixed in final 2.0. Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 11:02:16 PM Less than 200 members -- I've made the update to smf.class.php as you suggested and it fixed the activation email issue but not for the admin sych issue using real or user names. so gimme details, you click sync usernames(or realnames) and it comes to a blank page immediately?I can keep checking things for you - no worries!! :) Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 11:03:42 PM In the errorlog of sms i find this: will be fixed in next release.8: Undefined variable: av_path File: /components/com_smf/smf.class.php Line: 1368 using 2.0 final, SMF 1.1.1, J!1.0.12 Title: Re: JSMF 2.0 Final Post by: Old Blue on December 28, 2006, 11:20:04 PM so gimme details, you click sync usernames(or realnames) and it comes to a blank page immediately? Yes it does - very odd - I even had debug enabled and the page was still blank Title: Re: JSMF 2.0 Final Post by: Old Blue on December 28, 2006, 11:24:55 PM Yes it does - very odd - I even had debug enabled and the page was still blank I also noticed after it returns a blank page and I check the admin configuration page for the forum that the line 'synch user names' is not selected for either enable or disable radio buttons Title: Re: JSMF 2.0 Final Post by: Roland on December 28, 2006, 11:38:58 PM And you have the configuration option Synchronize Usernames Only enabled in the backend? I checked the code and this should not be happening Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 28, 2006, 11:57:00 PM Hey joomlahacker, great job again!*thumbsUP*. I was about to say, I checked and the bug with CB is still not fixed in regards to gallery images however I overlooked that in the profile plugin. The profile plugin is handled differently, and this is why this is happening. I just fixed this and will release an update soon.I just installed the new release and realised no bugs: joomla 1.0.12 CB 1.02 JSMF 2.0 (including all cb plugins) EDIT: Avatar sync with the smf-cb profile plugin doesn't work.There is problem with the url: http://www.mysite.com/dir/comprofiler/tngallery/butterfly.gif (SMF Url) http://www.mysite.com/dir/comprofiler/gallery/butterfly.gif (CB Url) Maybe there was a different directory in the older cb version? Title: Re: JSMF 2.0 Final Post by: Angelos on December 29, 2006, 06:34:44 AM You are my hero ;D
Title: Re: JSMF 2.0 Final Post by: Stephen on December 29, 2006, 10:46:30 AM Hi I wonder if you guys can help... I have installed the bridge and it is a success, but when I register a user in SMF, it does not seem to update it when I search for it in joomla admin screen. I thought the aim of this script was to add the user to both configs.. Also when I click on the optional sync username or realname it comes up with the default 'The page cannot be displayed' page Thanks, Stephen Can anybody help with the above. MrMax seemed to be having the same problem. I am hosting on Bluehost and there are probably over 2000 registered users. Thanks Title: Re: JSMF 2.0 Final Post by: Old Blue on December 29, 2006, 01:23:33 PM Aloha - I noticed in all the wrapped themes that I use, all the links are red instead of the forum defualt color is there anything I can set in the templates CSS to resolve it back to the SMF template color?
Title: Re: JSMF 2.0 Final Post by: Livebox on December 29, 2006, 01:48:51 PM Just one more time ;)
Joomla and SMF templates are using the same Class Ids . What you can do is: You can look for the duplicate Class Ids in your templates. and you can rename them in one of the templates. I renamed the most in the Joomla template. I used for the Webdeveloper toolbar for Firefox. This is really a great tool for finding these things. Example of duplicate Class Ids. (the footer Class Id) Joomla footer (index.php) Code: <div class="topnav" id="footer"> <?php mosLoadModules('footer', -1); ?> <?php include_once( $mosConfig_absolute_path .'/includes/footer.php' ); ?> </div> SMF footer (index.template.php) Code: <div id="footer">', theme_copyright(), '</div> There also other ways to fix this...just search this forum ;) Title: Re: JSMF 2.0 Final Post by: Old Blue on December 29, 2006, 02:09:40 PM Excellent thank you - now I know how to start!
Mucho Mahalos! Title: Re: JSMF 2.0 Final Post by: phreak on December 29, 2006, 05:19:35 PM Hi all,
From time to time (i really can't reproduce it), when i test my CB Member List and klick on a Member... following error appears (see the attached .PNG). Does anybody know what it means ? Thank you and greetz Stefan Title: Re: JSMF 2.0 Final Post by: darkstar3 on December 29, 2006, 06:04:23 PM Hi,
I have installed Joomla 1.0.12 and SMF 1.1.1 on my Funpic-Webspace. But I always get this error on the top of the Site: Code: Warning: ini_set() has been disabled for security reasons in /usr/export/www/hosting/*********/homepage/administrator/components/com_smf/includes/Lite.php on line 25 Line 25: Code: ini_set('include_path', dirname(__FILE__) . PATH_SEPARATOR . ini_get('include_path')); ???Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 29, 2006, 07:04:27 PM your webhost has disabled the php function ini_set. Due to this the bridge may or may not work for you. On line 25 in that line you can add an at sign to supress the warning message.
for example: Code: @ini_set('include_path', dirname(__FILE__) . PATH_SEPARATOR . ini_get('include_path')); Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 29, 2006, 07:06:49 PM Hi all, If you tried to update your username from CB this error would occur. Refer to the JSMF user guide about the lack of functionality in CB to update usernames.From time to time (i really can't reproduce it), when i test my CB Member List and klick on a Member... following error appears (see the attached .PNG). Does anybody know what it means ? Thank you and greetz Stefan Title: Re: JSMF 2.0 Final Post by: unliving sava on December 29, 2006, 07:55:51 PM other notice:
8: Undefined index: extension File: /components/com_smf/smf.class.php Line: 1339 Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 29, 2006, 10:11:29 PM other notice: This should not happen, if it does then someone has an avatar without a file extension, which should not be possible in either SMF or CB.8: Undefined index: extension File: /components/com_smf/smf.class.php Line: 1339 Title: Re: JSMF 2.0 Final Post by: Raffi on December 30, 2006, 09:51:42 AM Hey all
This is my first post here. Thank you very much for this great bridge. I'm just testing the whole stuff. Where can I sync the users from CB/Joomlaboard with the SMF. When I click on the link sync usernames in the Backend, I get this huge error: Code: Joomla/Mambo[0] / SMF[0] inserted Failed : : Failed : 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 \\\'n\\\',\\\'Marv\\\'n\\\' ,\\\'marvin_g1@hotmail.com\\\',\\\'6788c97a4a5f96ace42c34d0c9c7b74bad77abf7\\\'\\\' at line 1 SQL=INSERT INTO smf_members (realName, memberName, emailAddress, passwd, dateRegistered, hideEmail, is_activated, validation_code) VALUES (\\\'Marv\\\'n\\\',\\\'Marv\\\'n\\\' ,\\\'marvin_g1@hotmail.com\\\' ,\\\'6788c97a4a5f96ace42c34d0c9c7b74bad77abf7\\\', UNIX_TIMESTAMP(\\\'2006-06-01 20:55:57\\\'), 0, 1, \\\'\\\') ~~~ FROM::/services/webs/partyboardv4.ch/administrator/components/com_smf/admin.smf.class.php || createsmfuser || 644 : Failed : 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 \\\'s here\\\',\\\'Beny\\\'s here\\\' ,\\\'7500@gmx.ch\\\' ,\\\'f6787175b60693d4233494d92237a7cc17996561\\\'\\\' at line 1 SQL=INSERT INTO smf_members (realName, memberName, emailAddress, passwd, dateRegistered, hideEmail, is_activated, validation_code) VALUES (\\\'Beny\\\'s here\\\',\\\'Beny\\\'s here\\\' ,\\\'7500@gmx.ch\\\' , ... and so on. I hope you unterstand my English ;D Kind regards from Switzerland Title: Re: JSMF 2.0 Final Post by: Livebox on December 30, 2006, 09:56:24 AM Sync users from CB to Joomlaboard?
All about the installation an sync users between Joomla and SMF read this user manual for the Bridge. http://www.joomlahacks.com/component/option,com_remository/Itemid,41/func,fileinfo/id,448/ Title: Re: JSMF 2.0 Final Post by: Stephen on December 30, 2006, 11:48:06 AM I am having problems syncronising my users.
The above manual gives the following explaination for syncing " Optionally, synchronize your users. If you do not synchronize your users using some method, whether using the bridge or doing it manually, your users will not be able to login." How do I sync my users. The links sync by username or realname would come up with 'cannot be displayed' pages Thanks if there is anyone out there with an easy solution Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 30, 2006, 02:52:54 PM are some being synchronized or none?
Title: Re: JSMF 2.0 Final Post by: Stephen on December 30, 2006, 06:38:18 PM firstly I am unsure on how the bridge syncrosnises users. Are they suppoed to automatcally sync when a user signs up after the bridge is installed?
With ver 1 the sync usernames links would sometimes partially work when I clicked on it. Though it did not seem to update automatically in joomla when I added the user in smf. with ver 2, the sync username/realname link do not work at all. When I create a new user in smf, it doesn't sync up at all either in joomla. Essentially the bridge is not working properly. Please help as I really want to get this going Title: Re: JSMF 2.0 Final Post by: -Wolverine on December 30, 2006, 09:04:08 PM you will have to provide me a site and login details via pm. Yes users are supposed to sync, thats one of the core features that has worked since inception of the bridge.
Title: Re: JSMF 2.0 Final Post by: GlingGlo on January 02, 2007, 11:37:16 AM Hi Wolverine...happy new year :D
I modified my omponents/com_smf/smf.class.php following your suggestion to get over the missing carriage returns in notifications: Code: array_push($smf_message_replace, $jsmf->fixLink($link), '&'); change it to:Code: array_push($smf_message_replace, $jsmf->fixLink($link)."\n\r", '&'); that solved the problem. But i have noticed, and i don´t know if it is related to the mentioned modification, that when the topic title includes spanish accents, i.e: "Este es el título del tema" and a notification is sent, it displays properly in the email subject, but in the body of the email, the accents are missing :( Any idea why this happens? Thanks, NiCo Title: Re: JSMF 2.0 Final Post by: mario on January 03, 2007, 08:15:14 AM hello,
i have a problem withs jsmf 2.0, i hope anybody can help me. Warning: updateusercount(/SSI.php): failed to open stream: No such file or directory in /lspbcjcf/www.lsp.cc/cms/administrator/components/com_smf/admin.smf.class.php on line 688 Fatal error: updateusercount(): Failed opening required '/SSI.php' (include_path='/lspbcjcf/www.lsp.cc/cms/administrator/components/com_smf/includes:.:/usr/local/lib/php') in /lspbcjcf/www.lsp.cc/cms/administrator/components/com_smf/admin.smf.class.php on line 688 sorry i'm a newbie and my english is very bad :( i cant sync my user from the cbe to the smf, i allways became this error i use: joomla 1.0.11, CBE Beta1 half 06236 and SMF 1.1.1 Title: Re: JSMF 2.0 Final Post by: hackeman on January 03, 2007, 11:00:45 AM Hiya,
Looking forward to getting this product up and running, but I have a problem with installing cb_plug_smf_2_0_2.zip since my host is running Safe Mode ON. For normal Joomla components I use the SafeJoomla patch, but since CB has it's own plug-in installer that does no good in this case. Hence, can you please tell me how to install the JSMF CB plugin manually? I had a look in the smf_cb.xml to see what changes are made, but it only tells me what files are installed - not where they are installed. Thanks! edit: SafeJoomla... not JoomlaSafe. ::) Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 03, 2007, 12:07:27 PM hello, you do not have the SMF absolute path set correctly, refer to the JSMF user guide for more information.i have a problem withs jsmf 2.0, i hope anybody can help me. Warning: updateusercount(/SSI.php): failed to open stream: No such file or directory in /lspbcjcf/www.lsp.cc/cms/administrator/components/com_smf/admin.smf.class.php on line 688 Fatal error: updateusercount(): Failed opening required '/SSI.php' (include_path='/lspbcjcf/www.lsp.cc/cms/administrator/components/com_smf/includes:.:/usr/local/lib/php') in /lspbcjcf/www.lsp.cc/cms/administrator/components/com_smf/admin.smf.class.php on line 688 sorry i'm a newbie and my english is very bad :( i cant sync my user from the cbe to the smf, i allways became this error i use: joomla 1.0.11, CBE Beta1 half 06236 and SMF 1.1.1 Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 03, 2007, 12:08:43 PM Hiya, This is a problem that should be directed at Community Builder since their installer is what is causing the problem. Contact them at www.joomlapolis.com.Looking forward to getting this product up and running, but I have a problem with installing cb_plug_smf_2_0_2.zip since my host is running Safe Mode ON. For normal Joomla components I use the SafeJoomla patch, but since CB has it's own plug-in installer that does no good in this case. Hence, can you please tell me how to install the JSMF CB plugin manually? I had a look in the smf_cb.xml to see what changes are made, but it only tells me what files are installed - not where they are installed. Thanks! edit: SafeJoomla... not JoomlaSafe. ::) Title: Re: JSMF 2.0 Final Post by: hackeman on January 03, 2007, 12:58:44 PM This is a problem that should be directed at Community Builder since their installer is what is causing the problem. Contact them at www.joomlapolis.com. Yes, I know, there's already a number of people requesting a fix on this at joomlapolis' forum. But since there doesn't seem to be any fix planned soon, I was hoping to install manually as a workaround.The xml file doesn't imply it's that complex to do manually... or am I missing something? Sorry if it's a st$p$d question... I'm new to joomla. Title: Re: JSMF 2.0 Final Post by: hackeman on January 03, 2007, 11:44:01 PM Yes, I know, there's already a number of people requesting a fix on this at joomlapolis' forum. But since there doesn't seem to be any fix planned soon, I was hoping to install manually as a workaround. The xml file doesn't imply it's that complex to do manually... or am I missing something? Sorry if it's a st$p$d question... I'm new to joomla. Never mind. I came to the conclusion that CB is not aaaaall that. A bit too messy and somewhat overestimated if you ask me. Uninstalled it. I'm getting a lot more added value with SMF and its login module. So, thanks for that! ;) Title: Re: JSMF 2.0 Final Post by: malastic on January 04, 2007, 07:55:01 AM Good afternoon. I have a serious problem and I do not have nor idea of like solving it.
I use: - Joomla 1.0.12 - SMF 1.1 - Com SMF 2.0 - Mod SMF Login 2.0.3 - SMF Arcade 1.5.1 - My web: www.malastic.com - Forum in: www.malastic.com/foro If I register to me through www.malastic.com/foro (using the connection to register itself = http://www.malastic.com/foro/index.php?action=register) it works perfectly. The problem is that if I enter by Jooma (www.malastic.com) and give register (the route has changed a: http://www.malastic.com/index.php?option=com_smf&Itemid=72&action=register) leaves the first window to me to register to me, I give the data him, but no longer it leaves the following window confirmation and it does not get to register. You could indicate to me that I must do. I feel my level of English, but I am Spanish and I am using google for the translation. Thanks. Title: Re: JSMF 2.0 Final Post by: kirck on January 05, 2007, 09:10:28 AM I have a question of jsmf login module.
the option of 'Display Activation Link' only show it when the registration config is set SMF, is correct? Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 05, 2007, 09:50:28 AM I have a question of jsmf login module. yes, it is based on the registration module configured in JSMF configuration, and will only show if SMF is selected.the option of 'Display Activation Link' only show it when the registration config is set SMF, is correct? Title: Re: JSMF 2.0 Final Post by: Stephen on January 05, 2007, 04:08:52 PM Hi Wolverine
Have you managed to look at why my bridge is not syncing properly (someone else seemed to be having the same prob. Thanks in advance for the help Steve Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 05, 2007, 04:13:23 PM Hi Wolverine I already replied via PM:Have you managed to look at why my bridge is not syncing properly (someone else seemed to be having the same prob. Thanks in advance for the help Steve I can tell you at least a big part of why things might not be working is that you aren't including the Joomla headers, which includes the JSMF headers. You template does not call mosShowHead() so your SMF headers, through JSMF, do not get added to the page. Title: Re: JSMF 2.0 Final Post by: Tim Chambers on January 06, 2007, 09:21:32 AM I'm having a real problem with it on 1.0.12.
After a successful installation when I click the forum link I get a blank page. Title: Re: JSMF 2.0 Final Post by: Livebox on January 06, 2007, 09:27:43 AM check in the backend off all files are patched.
Title: Re: JSMF 2.0 Final Post by: Stephen on January 06, 2007, 09:57:38 AM Hi Wolverine
I don't have any PM. Could you help by expanding a bit more. I need to alter thne headers in the SMF forum?? I thought the bridge automatically patched the forum?? Thanks, Stephen Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 06, 2007, 10:16:23 AM Hi Wolverine that pm was sent to you. Either way, your joomla template is the one that is missing the required function mosShowHead(). The bridge does automatically pull SMF headers into the Joomla header. But right now you aren't even outputting the joomla header, so your SMF headers are lost.I don't have any PM. Could you help by expanding a bit more. I need to alter thne headers in the SMF forum?? I thought the bridge automatically patched the forum?? Thanks, Stephen Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 06, 2007, 10:17:41 AM I'm having a real problem with it on 1.0.12. Check the user guide for solutions on solving blank pages errors.After a successful installation when I click the forum link I get a blank page. Title: Re: JSMF 2.0 Final Post by: GlingGlo on January 06, 2007, 05:27:44 PM Hi Wolverine...happy new year :D I modified my omponents/com_smf/smf.class.php following your suggestion to get over the missing carriage returns in notifications: Code: array_push($smf_message_replace, $jsmf->fixLink($link), '&'); change it to:Code: array_push($smf_message_replace, $jsmf->fixLink($link)."\n\r", '&'); that solved the problem. But i have noticed, and i don´t know if it is related to the mentioned modification, that when the topic title includes spanish accents, i.e: "Este es el título del tema" and a notification is sent, it displays properly in the email subject, but in the body of the email, the accents are missing :( Any idea why this happens? Thanks, NiCo No clue as to how i could make the accents in the notification email display when the forum topic has accents in it? :'( NiCo Title: Re: JSMF 2.0 Final Post by: purepersian on January 06, 2007, 11:24:35 PM i would really appreciate some help
im running Joomla 1.0.12 and SMF 1.1.1 I had a successful install of both joomla and smf, i installed the bridge and it was successful, i ran the patch and it said everything is done, so i clicked the convert users, i have 9000 members and it times out half way and i get a blank page this isnt my main problem though, the problem here is after running the patch i cant access my site, if u go to my site all u will see is a white page with the word HOME in the corner (www.persianhiphop.com) when i go to the admin page i can see the login box, but by clicking login i get a white page the only way i get around this is by removing the index.php and index2.php files in the root and the admin directory and replacing them with the originals any ideas why this is happening? really appreciate it thank uu Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 07, 2007, 01:17:43 AM i would really appreciate some help check the JSMF user guide, I cover this type of situation in the FAQ.im running Joomla 1.0.12 and SMF 1.1.1 I had a successful install of both joomla and smf, i installed the bridge and it was successful, i ran the patch and it said everything is done, so i clicked the convert users, i have 9000 members and it times out half way and i get a blank page this isnt my main problem though, the problem here is after running the patch i cant access my site, if u go to my site all u will see is a white page with the word HOME in the corner (www.persianhiphop.com) when i go to the admin page i can see the login box, but by clicking login i get a white page the only way i get around this is by removing the index.php and index2.php files in the root and the admin directory and replacing them with the originals any ideas why this is happening? really appreciate it thank uu Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 07, 2007, 10:18:02 AM check the JSMF user guide, I cover this type of situation in the FAQ. thank u the admin end seems to be working fine and i did read the faq but it didnt answer my Q as im not really getting a blank page, i can see the word HOME in the corner, u can see this 4 urself at www.persianhiphop.com i checked for error logs and there were none and i even put the error reporting to maximum in joomla, still nothing, same page with HOME in the left corner :( please help me :( :( funny thing is if i access my site using this link http://persianhiphop.com/index.php?option=com_smf&Itemid=57 it works fine, and i can access everything on the site EXCEPT content items like news etc... so if i click on a published article i get a blank page and if i click home i get a blank page too, im guessing thats because i have articles published on the front page? hmm Title: Re: JSMF 2.0 Final Post by: Markus Gerdelmann on January 07, 2007, 01:07:26 PM I think I have find the Problem...
When the Forum has an User, and the Joomla not, for example, "Test", and you will log in with "Test" in Joomla, and Joomla doesn't know, that TEST is exist, than you become an Blank Screen... The Problem is coming, when you install the Forum and use another Name for the Administrator than "admin"... Is it absolutely recommend that you using the Adminsitrator-Name "admin" ... not your Nickname or so... And then, when the Forum is installed you can use another Name like your Nick, and turn it into the Admin-UserGroup so that you have two or more admins in there... BUT THE NICK "admin" MUST BE IN THE GROUP!! Because Joomla is using the adminaccount with the Nick "admin" and when the Name is not in SMF, you have a Problem... Also... you must input at First the admin in the Forum... than you registry your Nick in Joomla and than turn your Nick in the SMF into the adminUserGroup. Bevor you registry, you must delete your Nick in the Forum! Okay... thats all... I hope... AND check your Users... When you will log in in Joomla, the User must also be in Joomlas User-Manager... Look in it in the Backend... When the User is not there, but in the Forum, than you must first delete the User in the Forum and then register FIRST in Joomla, and then the User will Automaticaly transferen also in the SMF... Title: Re: JSMF 2.0 Final Post by: Vedran on January 07, 2007, 02:31:13 PM I have this damn problem, and I can't fix it:
When Installing it, it requires of me to provide him with SMF Absolute Path, and I do so: /home/vedranl/public_html/startrekfarpoint/Staff/###### But whatever I write where ###### is, it just repet this damn message: (incorrect path) It is really annoying! Staff folder is root folder of Joomla and I'd like the SMF path to be home/vedranl/public_html/startrekfarpoint/Staff/forum, but it doesn't work... Does anyone know how to fix this? It's really urgent... Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 07, 2007, 04:37:01 PM no its not anything to do with the usernames, iv uninstalled and did it agian so many times, the problem occurs as soon as i patch the index.php file, iv got joomla and smf both using admin as the username etc..
like i said if i access my site using the link: http://www.persianhiphop.com/index.php?option=com_smf&Itemid=57& i can see the site including everything EXCEPT articles and and news etc... any ideas why this is? just for ur info here is a lil more information, this might not even have anything to do with this error but i thought u might wanna know, maybe this could be causing it?: magic_quotes_gpc On magic_quotes_runtime Off magic_quotes_sybase Off Session Directory /var/lib/php/session/ Unwriteable Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 07, 2007, 11:12:43 PM turn joomla error reporting to maximum and if you do not see an error message you must check your php error_log.
Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 08, 2007, 02:24:35 AM turn joomla error reporting to maximum and if you do not see an error message you must check your php error_log. this is what i can see in my error log (maximum setting on joomla didnt report any errors) i cant make sense of any of this :S [Thu Jan 04 03:12:35 2007] [error] [client 87.106.50.11] client sent HTTP/1.1 request without hostname (see RFC2616 section 14.23): /w00tw00t.at.ISC.SANS.DFind:) [Thu Jan 04 03:35:51 2007] [error] [client 80.3.0.10] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/persianhiphop.com [Thu Jan 04 03:35:54 2007] [error] [client 80.3.0.10] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/persianhiphop [Thu Jan 04 03:35:58 2007] [error] [client 80.3.0.10] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/persianh [Thu Jan 04 04:10:19 2007] [error] [client 87.106.101.232] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/persianhiphop.com [Thu Jan 04 12:39:54 2007] [error] [client 74.6.74.226] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/robots.txt [client 74.6.71.158] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat [client 74.6.72.78] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat [Thu Jan 04 12:41:12 2007] [error] [client 217.219.26.71] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/forum, referer: http://www.google.com/search?hl=en&q=khoshgeltarin [client 217.219.26.71] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat, referer: http://www.google.com/search?hl=en&q=khoshgeltarin [Thu Jan 04 12:42:00 2007] [error] [client 85.185.150.118] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/modules, referer: http://music-iran.blogsky.com/?Date=1384-08 [Thu Jan 04 12:43:57 2007] [error] [client 85.198.17.209] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/downloads [Thu Jan 04 12:43:58 2007] [error] [client 85.198.17.209] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/downloads [client 74.6.68.34] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat [client 207.59.120.81] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat, referer: http://en.wikipedia.org/wiki/Nazanin_Mahabad_Fatehi [client 85.185.107.252] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat, referer: http://search.yahoo.com/bin/search?p=persian%20rap%20download [client 71.65.97.99] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat, referer: http://www.google.com/search?client=safari&rls=en-us&q=Bale%2Bfarez&ie=UTF-8&oe=UTF-8 [client 195.229.241.182] PHP Warning: Invalid argument supplied for foreach() in /var/www/vhosts/persianhiphop.com/httpdocs/test/php/test.php on line 12, referer: http://www.persianhiphop.com [client 74.6.70.34] script '/var/www/vhosts/persianhiphop.com/httpdocs/index.php' not found or unable to stat [Thu Jan 04 12:49:54 2007] [error] [client 74.6.74.223] File does not exist: /var/www/vhosts/persianhiphop.com/httpdocs/robots.txt Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 11:12:51 AM Also have blank screen when patching Joomla index file. Seems to be conflicting with both VirtualMart and Product Book components :-( Any ideas?
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 11:22:07 AM this is what i can see in my error log (maximum setting on joomla didnt report any errors) That looks like your apache log, not your php error_log. It is just showing that some of the files being requested do not exist. Check for your php error_log. i cant make sense of any of this :S Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 11:27:50 AM Also have blank screen when patching Joomla index file. Seems to be conflicting with both VirtualMart and Product Book components :-( Any ideas? You can try starting a session just before the inclusion of SMF's SSI file. do this by adding session_start() just before the line like this in your joomla index.php"Code: require_once($jsmfConfig->smf_path."/SSI.php"); change it to be like this Code: session_start(); require_once($jsmfConfig->smf_path."/SSI.php"); Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 11:38:55 AM Sorry, didn't work. :)
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 11:51:55 AM no idea about the product book component... I do know the inclusion of SMF's SSI sometimes problems. Please run through the steps to get more information from the php error_log.
Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 02:57:49 PM Have very little idea about php, so this is bound to be wrong :-?
Web host is 1&1 and their FAQs imply that I don't have access to a PHP error log, but I might be able to create it http://faq.1and1.com/scripting_languages_supported/php/8.html. This is beyond me! However, I seem to have generate some output by trying what they suggest so it might help, if not any ideas on how I get 1&1 code into Joomla to generate error log. This is what site now reads, error_reporting(0); $old_error_handler = set_error_handler("userErrorHandler"); function userErrorHandler ($errno, $errmsg, $filename, $linenum, $vars) { $time=date("d M Y H:i:s"); // Get the error type from the error number $errortype = array (1 => "Error", 2 => "Warning", 4 => "Parsing Error", 8 => "Notice", 16 => "Core Error", 32 => "Core Warning", 64 => "Compile Error", 128 => "Compile Warning", 256 => "User Error", 512 => "User Warning", 1024 => "User Notice"); $errlevel=$errortype[$errno]; //Write error to log file (CSV format) $errfile=fopen("errors.csv","a"); fputs($errfile,"\"$time\",\"$filename: $linenum\",\"($errlevel) $errmsg\"\r\n"); fclose($errfile); if($errno!=2 && $errno!=8) { //Terminate script if fatal errror die("A fatal error has occured. Script execution has been aborted"); } } Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /homepages/7/d183703408/htdocs/interaktiv/cms/errors.php:11) in /homepages/7/d183703408/htdocs/interaktiv/cms/index.php on line 66 Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 03:20:22 PM go into joomla backend, go to system->system info->php info tab
What do it say for log_errors? And error_log? Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 03:23:37 PM Will do. Also, think I might have got the php error log working with 1&1 php
heres the output http://www.interaktiv.co.uk/errors.bak.csv Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 03:27:22 PM log_errors is off
error_log is no value for both local and master Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 03:28:52 PM Will do. Also, think I might have got the php error log working with 1&1 php that is the php error logging, however those are only notices which will not cause blank screens. If you try it again do you see a fatal error in the log?heres the output http://www.interaktiv.co.uk/errors.bak.csv Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 03:30:39 PM log_errors is off thats why you aren't getting a log, but your previous is the error log. Do you have your .htaccess setup? If so, add thiserror_log is no value for both local and master Code: php_flag log_errors on Either way, try again and look for a fatal error. If not pm me some connection info along with the problem(so I don't confuse you with others) and I can take a look. Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 03:35:02 PM No Fatal. Ran several times an all are notice. I pasted the script into the very top of the index.php file!
Is there somewhere else that would be better? Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 03:37:42 PM that should be sufficient.
Title: Re: JSMF 2.0 Final Post by: Mackavi on January 08, 2007, 03:44:40 PM created .htaccess file in joomla folder but this simply killed the backend as well :o. Have sent details as PM.
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 08, 2007, 07:28:15 PM I didn't receive a pm ???
Title: Re: JSMF 2.0 Final Post by: Mike on January 08, 2007, 07:57:11 PM In your .htaccess file try commenting out the line :
Code: Options FollowSymLinks This is the most common .htaccess problem I come accross on the Joomla forums Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 09, 2007, 11:02:50 AM i dont get a totally blank page, after patching install i get a white page with the word HOME in the top left corner
is this still the same problem? as i cant find any error logs!!! nothing is being written Title: Re: JSMF 2.0 Final Post by: Mackavi on January 09, 2007, 11:36:39 AM Wolverine did that PM turn up yet?
purepersian2 my host won't let me access the error logs but there were instructions for creating a php error file. See http://faq.1and1.com/scripting_languages_supported/php/8.html I added this to the index.php after the first set off comments. I also created the error.csv file in the Joomla root. It seems to be logging errors. Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 09, 2007, 12:46:19 PM im on a virtual private servers n i cant find any php error logs
the support at 1and1 are so rubbish, after 20 minutes on the phone the guy couldnt tell me where to find the logs!! so i used the error reporting script and put it in index.php but its not reporting any errors, the error_log.log file is empty :S Title: Re: JSMF 2.0 Final Post by: Mackavi on January 09, 2007, 01:36:39 PM The 1&1 script I used logs to errors.csv not error_log.log but I did have to upload a blank errors.csv first. ???
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 09, 2007, 01:53:03 PM I'm just stunned. Webhosts disallowing an error_log! I'd demand my money back. Thats like chopping off your legs. How are you supposed to identify errors?
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 09, 2007, 05:58:58 PM Also have blank screen when patching Joomla index file. Seems to be conflicting with both VirtualMart and Product Book components :-( Any ideas? Joomla URL: http://www.yoursite.com/SMF URL:http://www.forum.yoursite.com/index.php This kind of url rewriting might cause problems with the bridge. The bridge is designed to rewrite URLs at runtime so this might be your problem. I sent you a pm, check it when you get a chance. Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 09, 2007, 07:43:37 PM i just installed a fresh copy of joomla and smf in a directory on my server called "temp" and the bridge works fine, i guess this means im not having php problems!! so what could be the problem? any way i can fix this?!?!?!
Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 09, 2007, 08:29:39 PM ok iv narrowed the problem down to something
after getting a fresh install to work in a seperate directory i tried copying and replacing all directories in the fresh install with the files and directories of my previous site (the real site thats having the problem) i did this and found that once i copy the mambots directory i get this error, so im guessing its got something to do with one of the components im running? maybe its conflicting Title: Re: JSMF 2.0 Final Post by: purepersian2 on January 09, 2007, 09:41:36 PM PROBLEM SOLVED
after 4 days of having this blank screen problem i found the problem to be with a virtual cart bot namely - mosproductsnap i uninstalled that bot and everything works fine thanks every1 Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 09, 2007, 11:20:36 PM PROBLEM SOLVED thanks for posting your solutionafter 4 days of having this blank screen problem i found the problem to be with a virtual cart bot namely - mosproductsnap i uninstalled that bot and everything works fine thanks every1 Title: Re: JSMF 2.0 Final Post by: Mackavi on January 10, 2007, 03:07:17 AM Wolverine, the forum was setup first on a subdomain. I've deleted this this morning but it takes 1&1 about three hours to register the fact. Once its gone, I change the SMF settings from www.support.mysite.com so that no rewrite occurs.
As for the mamot, I haven't go it installed only the module and component install and its the latter that causes the problem with VC. However Product Book is component only with is published on frontend, that to causes problem. Title: Re: JSMF 2.0 Final Post by: Mackavi on January 10, 2007, 09:33:09 AM OK removed rewrite for forum and changed smf server settings. Hasn't made any difference ???
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 10, 2007, 10:23:42 AM You had Orstio's bridge installed, and his bridge has no process to uninstall the mambot that he installs. "SMF_header_include" needs to be removed. I'll do that now.
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 10, 2007, 10:58:01 AM Doing debugging I found that the code is failing when it tries to include your joomla template. Did you make modifications to your joomla template for Orstio's bridge?
Title: Re: JSMF 2.0 Final Post by: Mackavi on January 10, 2007, 11:43:35 AM Honest can't remember, tried too many things. Surely if I switched templates then it should work?
Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 10, 2007, 12:00:39 PM Finally! In the joomla index I set the following to enable TRUE php error logging:
Code: ini_set('log_errors', 1); ini_set('error_log', 'error_log'); error_reporting(E_ALL); Then I refreshed the page, checked the file error_log in the joomla root, and there is the error that your webhost is swallowing or something: Code: [10-Jan-2007 17:44:13] PHP Fatal error: Call to undefined function: () in /homepages/7/d183703408/htdocs/interaktiv/cms/support/Sources/Subs.php on line 2474 The error is coming from Code: // Don't allow more than half of the characters to be left unencoded. $allowPlain = $func['strlen']($string) / 2; which is again the user of the array $func which may be conflicting with another module, meaning another module has used $func since SMF initialized it and therefore all the data SMF stored in that variable has been overwritten. That is why it says call to undefined function and then gives no function name, because the definition SMF gave it has been overwritten. Changing this line to simply strlen should correct the immediate problem. Change this code: Code: // Don't allow more than half of the characters to be left unencoded. $allowPlain = $func['strlen']($string) / 2; To this: Code: reloadSettings(); // Don't allow more than half of the characters to be left unencoded. $allowPlain = $func['strlen']($string) / 2; This reload the $func array from SMF. This may cause problems with other components but it will fix the display of smf and your site. It is working now. By the way, this is not the fault of the bridge. Simply, you have other components that use the same variable as SMF does and since they are not in objects or classes there is overlap. That is the reason JSMF 2.0 so heavily relies on classes, there should be no way that my variables would conflict. I cannot say the same for other developers and SMF does not use classes so this will continue to be a problem. Title: Re: JSMF 2.0 Final Post by: Mackavi on January 10, 2007, 12:33:43 PM Wolverine - you are a scholar and a gentleman!!! Understand about 10% of what you explained but it works and that is brilliant. Doubt VM will be interested as their site is full of complaints about bad coding, but will post info on to writer of Product Book because he is currently looking at the problem from his side. Again many, many thanks.
Title: Re: JSMF 2.0 Final Post by: Darkki on January 11, 2007, 01:47:17 AM Having problems with inline post editing when using my forums as wrapped. Without wrap everything works fine.
Got SMF 1.1.1 Joomla 1.0.12 and Bridge 2.0 I'm getting green line "Loading.." at the top of pages but nothing happens. I assume that it tries to load some javascript there and IE error message is: Code: Line: 40 Character: 2 Error: No access Code: 0 URL-address: /index.php?option=com_smf&Itemid=27&topic=9.msg298;topicseen Anyone can help me? Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 11, 2007, 11:31:57 AM this can happen if your Joomla template isn't correctly including the custom headers. This is done through a call to mosShowHead() which should appear in your joomla template index.php file in the <head> section of the template. Basically, I pull all the SMF headers and add them to the joomla custom header, which then displays it in the appropriate place. The SMF headers contain javascript to handle this. If the javascript is missing you will get this error.
If you have firefox download firebug(the most useful JS debug tool EVAR!). It should tell you exactly why it failed. I suspect the header is not correct. Title: Re: JSMF 2.0 Final Post by: Andrew W on January 11, 2007, 09:21:06 PM I have:
Joomla 1.0.12 SMF 1.1.1 Community Builder 1.0.2 Joomla-SMF version: 2.0 Joomla-SMF Forum Config: Registration system: () SMF (*) Joomla/Mambo () CB () CBE Login module: () Joomla-SMF (*) Joomla/Mambo () CB () CBE Yes, I have logging in problems too. My current configuration is the best configuration that I can use to get most things working. It is the only configuration that properly registers passwords for both Joomla and SMF. The only problem is that I can't get CB profiles working. CB registration/login for this is hopeless, but I would like to use CB features. I believe I may have screwed up my system by installing JSMF bridge before installing community builder. I was given the impression with what I read that CB Plugin came with the JSMF bridge, so I thought this would install all of this Community Builder that I knew nothing about. So then when it came to installing the CB Plugin, which was actually separate, there was nothing to install it into. So I removed the JSMF bridge, then installed CB, then re-installed JSMF again. I may have killed something, I don't know. I don't really want to go swimming through a sea of ugly mySQL and PHP code to find out. I'll just keep tinkering til I get something that works good. SMF has a nice looking and (from the look of it) secure registration process. Community Builder has a highly customisable registration process, which needs a lot of CSS tinkering to make it look good. Perhaps I can figure out a way of directing the first login to a CB profile creation page... ouch! Title: Re: JSMF 2.0 Final Post by: hackeman on January 11, 2007, 10:25:59 PM Here's another one...
I have set "Automatically reply to topic" to YES but "Automatically create" to NO, meaning there will not be a forum topic automatically created for each posted news item, unless a user posts a comment to the article. This works all fine, apart from the fact that the first comment made by a user is considered an initial post and not a reply, which results in the "Comments (X)" shows (0) after the first comment and (1) after the second comment. It's always one number too low. I guess this is how you've chosen to do by design since it's how SMF returns number of replies, but do you have any suggestion on a workaround to this? I prefer not to have a forum topic created for articles no one has commented. Thanks. Title: Re: JSMF 2.0 Final Post by: -Wolverine on January 12, 2007, 10:09:53 AM uncomment this bit of code on or around line 575, change it from:
Code: // if (!$instant || !((time()-$seconds) < $ctime)) { // $replies = $topic->numReplies + 1; // } else { // $replies = $topic->numReplies; // } To this: Code: if (!$instant || !((time()-$seconds) < $ctime)) { $replies = $topic->numReplies + 1; } else { $replies = $topic->numReplies; } Then change the following section of code starting at line 586 from this: Code: if ($auto_reply) { if ($auto_reply_img) { $showlink = '<div class="dsc_bar"><a class="link_pos" href="'.$jsmf->fixLink('index.php?action=post;topic=' . $resultid . ';num_replies=' . $topic->numReplies) . '"><img border="0" src="' . $settings['images_url'] . '/topic/my_veryhot_post.gif" alt="Reply to Topic" /> ('.$topic->numReplies.') '.$link_text.'</a></div>'; } else { $showlink = '<div class="dsc_bar"><a class="link_pos" href="'.$jsmf->fixLink('index.php?action=post;topic=' . $resultid . ';num_replies=' . $topic->numReplies) . '"><img style="border:0px;" src="'.$discuss_image.'" alt="Discuss Topic" /> ('.$topic->numReplies.') '.$link_text.'</a></div>'; } } else { $showlink = '<div class="dsc_bar"><a class="link_pos" href="'.$jsmf->fixLink('index.php?topic=' . $resultid . $smf_location) . '"><img style="border:0px;" src="'.$discuss_image.'" alt="Discuss Topic" /> ('.$topic->numReplies.') '.$link_text.'</a></div>'; } To this: Code: if ($auto_reply) { if ($auto_reply_img) { $showlink = '<div class="dsc_bar"><a class="link_pos" href="'.$jsmf->fixLink('index.php?action=post;topic=' . $resultid . ';num_replies=' . $topic->numReplies) . '"><img border="0" src="' . $settings['images_url'] . '/topic/my_veryhot_post.gif" alt="Reply to Topic" /> ('.$replies.') '.$link_text.'</a></div>'; } else { $showlink = '<div class="dsc_bar"><a class="link_pos" href="'.$jsmf->fixLink('index.php?action=post;topic=' . $resultid . ';num_replies=' . $topic->numReplies) . '"><img style="border:0px;" src="'.$discuss_image.'" alt="Discuss Topic" /> ('.$replies.') '.$link_text.'</a></div>'; } } else { $showlink = '<div class="dsc_bar"><a class="link_pos" href="'.$jsmf->fixLink('index.php?topic=' . $resultid . $smf_location) . '"><img style="border:0px;" src="'.$discuss_image.'" alt="Discuss Topic" /> ('.$replies.') '.$link_text.'</a></div>'; } The code was there, written by Kevin, but I had disabled it for some reason, I think to be in line with the true SMF way of handling replies. Title: Re: JSMF 2.0 Final Post by: LortGob on January 14, 2007, 06:39:09 AM I'm also having problems logging in, logging out or registering on my site.
I run: Joomla 1.0.12 SMF 1.1.1 JSMF 2.0 Final I have traced the problem as a conflict between JSMF and OpenSEF. If OpenSEF is off and index.php is patched, everything works. If I turn OpenSEF on, logging/registering does not work until I unpatch. I have no idea how to solve this, can anyone help? Title: Re: JSMF 2.0 Final Post by: hackeman on January 14, 2007, 04:04:18 PM uncomment this bit of code on or around line 575, change it from: Thanks a lot, that did the trick. :) Title: SMF Table Prefix Post by: walkin on January 15, 2007, 03:10:42 AM what should i insert in the SMF Table Prefix. Its giving a error. Please guide me ???
Title: Re: JSMF 2.0 Final - Using with Mambo 4.5.4 SP3 Post by: Alexander on January 22, 2007, 04:18:39 PM Hallo,
I am using the SMF-BRidge since al lot of versions and first I want to say THANKS for the great work. Now I upgraded my system from Mambo 4.5.2.3 up to 4.5.4 SP3. Normaly I wanted update up to 4.6.1 but there is the Login-Problem which is discussed in a lot of forums. Well, now I have the following configuration: Mambo 4.5.4 SP3 SMF 1.1.1 Bridge 2.0 Final I installed everything like described in the Tutorial, but I get the folowing error-MEssage: "Fatal error: main() [function.main]: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "jsmfFrontend" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide a __autoload() function to load the class definition in /var/www/html/web/html/cms/index.php on line 56" Could anybody tell me whats the Problem? Is the JSMF-Bridge not anymore working with Mambo? Thanks for answering. BEcaus I dont get any of the Bridge-Versions working? The last version I used (1.1 Beta) crashed the system after the using with Mambo 4.5.4. Greetings from Alex Title: Re: JSMF 2.0 Final Post by: Andrew W on January 26, 2007, 07:58:08 PM Yay, everything is functioning pretty well on my site. My registration and login works through either Joomla or SMF. CB login and registration doesn't work at all and I don't even need it. I have CB profiles running because of a this hack (http://forum.mamboserver.com/showthread.php?t=31979). The only thing that is pissing me off is that the comprofiler doesn't display correctly in Firefox, but does in IE. The comprofiler uses CSS generated menus which increase and decrease the height when clicking on each menu item, causing the whole thing to jump up and down the page, but only in Firefox. It looks very sh$tty and would really like to find a hack to fix it.
As I said before.... I have: Joomla 1.0.12 SMF 1.1.1 Community Builder 1.0.2 Joomla-SMF version: 2.0 Joomla-SMF Forum Config: Registration system: () SMF (*) Joomla/Mambo () CB () CBE Login module: () Joomla-SMF (*) Joomla/Mambo () CB () CBE Title: Re: JSMF 2.0 Final Post by: Darkki on February 02, 2007, 10:10:19 AM Having problems with inline post editing when using my forums as wrapped. Without wrap everything works fine. I managed to found some solutions to work. I had to edit xml_topic.js file and change all these:Got SMF 1.1.1 Joomla 1.0.12 and Bridge 2.0 I'm getting green line "Loading.." at the top of pages but nothing happens. I assume that it tries to load some javascript there and IE error message is: Code: Line: 40 Character: 2 Error: No access Code: 0 URL-address: /index.php?option=com_smf&Itemid=27&topic=9.msg298;topicseen Anyone can help me? smf_scripturl + "?action=.." -> jsmf_scripturl + "action=.." This way I got fast quote working and now I can get to the inline editing form. But when I try to save those editings I'm getting error: XMLDoc.getElementsByTagName("smf")[0] has no properties xml_topic.js (line 133) If I refrest the screen I can see that all my changed got saved perfectly. It's just that the page is ain't redirect to the post as it should after saving. Title: Re: JSMF 2.0 Final Post by: Serge on February 02, 2007, 02:32:25 PM Hello !
I'm download joomla_index_patched_1_0_12 file ... Login worked ... but i have trouble with localisation ... please see this ... (http://img515.imageshack.us/img515/6807/kosyakhc7.th.jpg) (http://img515.imageshack.us/my.php?image=kosyakhc7.jpg) what is this ? please help ! system Joomla 1.0.12 RE russian utf-8 localisation SMF 1.1.1 russian utf-8 localisation JSMF 2.0 Final Title: Re: SMF Table Prefix Post by: Justin Partridge on February 17, 2007, 02:33:20 AM what should i insert in the SMF Table Prefix. Its giving a error. Please guide me ??? I am also having a problem with a new instal at this part of installing bridge for joomla. I have the smf running well. but bridge install get to the prefix (by default it chooses SMF_ ) but it says error I've tryed putting everything there.. Any help would now be appreciated by 2 of use here ;) Title: Re: JSMF 2.0 Final Post by: dk on April 25, 2007, 06:13:28 PM Alexander, did you solve your problem? I have the same problem.
Title: Re: JSMF 2.0 Final Post by: Livebox on May 01, 2007, 11:15:29 AM version info please. And did you checked the user guide and followed the instructions?
Title: Re: JSMF 2.0 Final - Using with Mambo 4.5.4 SP3 Post by: Smokey4life on May 06, 2007, 04:47:25 AM Hallo, I am having this same problem, now i understand that its because its not properly patching the mambo index files seeing as its all setup for joomla. Then why advertise it as working for both joomla and mambo?? I have searched these forums high and low and couldnt find anything to make this component work with mambo which is a shame seeing as its the best bridge out there!! Could someone please help? I would greatly appreciate it. Thanks for your time.I am using the SMF-BRidge since al lot of versions and first I want to say THANKS for the great work. Now I upgraded my system from Mambo 4.5.2.3 up to 4.5.4 SP3. Normaly I wanted update up to 4.6.1 but there is the Login-Problem which is discussed in a lot of forums. Well, now I have the following configuration: Mambo 4.5.4 SP3 SMF 1.1.1 Bridge 2.0 Final I installed everything like described in the Tutorial, but I get the folowing error-MEssage: "Fatal error: main() [function.main]: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "jsmfFrontend" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide a __autoload() function to load the class definition in /var/www/html/web/html/cms/index.php on line 56" Could anybody tell me whats the Problem? Is the JSMF-Bridge not anymore working with Mambo? Thanks for answering. BEcaus I dont get any of the Bridge-Versions working? The last version I used (1.1 Beta) crashed the system after the using with Mambo 4.5.4. Greetings from Alex Title: Re: JSMF 2.0 Final Post by: Allasar on May 22, 2007, 01:19:19 PM Hi everyone
I'm having a problem with my jsmf com. When the forum is wrapped the theme of smf isnt' working at all, but when I turn it unwrapped it seems ok. I changed the template in joomla! and it starts working fine. The main problem is i'm using a modified version of rhuk_planetfall 1.0 (made by friend). The only change i made to the html file is that i added the code from lxmenu. I'm using Joomla! 1.0.11 smf 1.1.2 jsmf 2.0 You can see the copy i'm using on www.mno.com.pl/demo and the forum on www.mno.com.pl/demo/smf Please help :( Title: Re: JSMF 2.0 Final Post by: Roland Dalmulder on June 16, 2007, 05:43:31 PM Hey Guys,
Kudos to the person/people who make the bridge between SMF and Joomla. Now, I don't really have an issue, the installation went as smooth as can be. Just a little point for improvement. When I am logged in, I see this nice menu with all the SMF options, including the Calendar. It happens that I have disabled the calendar. When I click on this button, I run SMF wrapped, I am shown a full screen SMF page saying that the calendar is disabled. Clicking the go back link takes me back to my website. So I think it would be better not to show the calendar button at all when the calendar is disabled. Regards, RolandD Title: Re: JSMF 2.0 Final Post by: Krumbz on July 21, 2007, 10:52:28 AM Warning: main() [function.main]: open_basedir restriction in effect. File(/SSI.php) is not within the allowed path(s): (/home/warezsha:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/warezsha/public_html/index.php on line 66 Warning: main(/SSI.php) [function.main]: failed to open stream: Operation not permitted in /home/warezsha/public_html/index.php on line 66 Fatal error: main() [f |