Home arrow Forum Latest posts of: PifGadget
  Welcome, Guest. Please login or register.
Did you miss your activation email?
January 09, 2009, 12:47:46 AM
Home New Posts Search Calendar


Login with username, password and session length
  Show Posts
Pages: [1] 2
1  Joomla Hacks / Mambo-SMF 1.3.x / BBC Table tags not working? on: June 23, 2005, 11:03:27 PM
I just discovered that Table tags were not interpreted.

Here is a test:

This is a table row
With one column cell

Intriguing, huh?

I don't know if it's a Mambo-SMF bug or if it is a plain SMF bug though...
2  Joomla Hacks / Mambo-SMF 1.3.x / Mambo/SMF/CB Registration: Confirmation emails and Hotmail on: June 16, 2005, 06:40:39 PM
It may not have anything to do with Mambo-SMF but I have a problem when users register on my site.  When users provides hotmail email addresses, the confirmation email never reach them.
I use a SMTP server to send emails from Mambo and mails are always delayed (status: 4.4.7) when sent to hotmail.
It only happens with hotmail email addresses.

I was wondering how you did to be able to accept users with hotmail accounts?  I registered here with a hotmail account and I received my confirmation email without problem.  So I would like to know how you did.

Thanks
3  Joomla Hacks / Mambo-SMF 1.3.x / Re: Broken pagination prev next on: June 07, 2005, 01:10:17 PM
Hi cowboy,

I can help you in testing if you want.
Did you alreadgy made a list of all bugs remaining?

Do you have a bug database or something?
4  Joomla Hacks / Mambo-SMF 1.3.x / Re: Error on index.php line 38 on: June 03, 2005, 04:40:23 PM
Mambo version 4.5.2.2
Community Builder for Mambo version 1.0RC1
SMF version 1.0.3 with ChatBubbles2 1.0 Theme
Mambo-SMF Integration version 1.3.1.2
5  Joomla Hacks / Mambo-SMF 1.2.x / Re: QUOTE & SPELL CHECK bug! on: June 03, 2005, 10:46:00 AM
Sure, I was looking forward to see it in 1.3, but for now it's not solved even in 1.3.1.2, any luck you fix it for 1.3.1.3? Wink

Cheers
6  Joomla Hacks / Mambo-SMF 1.3.x / Re: Error on index.php line 38 on: June 03, 2005, 10:37:03 AM
Hi cowboy,

I kinda have the same problem. Hopefully the error is not showed to the users but the SMF logs is full of these errors. I tried to uninstall and re-install the SMF mod, but still the same.

BTW, my website runs on IIS 6.0, could it be related?
7  Joomla Hacks / Mambo-SMF 1.3.x / Re: SMF Real name... not for admin on: June 03, 2005, 10:33:55 AM
Well since my admin real name is admin I didn't noticed it yet Smiley

However I'd like that it would be possible to chose the groups for which topics have to be displayed. I have a restricted sub-forum which access is only allowed to a certain group, and I'd like the New topics from them to not appear to Guests and users not members of that group.
8  Joomla Hacks / Mambo-SMF 1.3.x / Re: does not work when mambo SEF is on on: June 02, 2005, 12:39:06 PM
Hi EliteRides,

Try that:


On an Apache server
-------------------
1. Enable SEF in mambo configuration
2. do NOT rename the htaccess.txt
3. open /includes/sef.php and change this line: (~ line 242)
Code:
return $mosConfig_live_site."/".$string;
to
Code:
return $mosConfig_live_site."/index.php/".$string;




On an IIS server
----------------
For IIS or if you can't get the above working replace the line with:

Code:
return $mosConfig_live_site."/index.php?".$string;

There will remain a single ?, but it doesn't matter, such addresses are still indexed by search engines (One interrogation mark is tolerated).

It could also be needed to add this to your sef.php:

Code:
$_SERVER['REQUEST_URI'] = $_SERVER['QUERY_STRING'];

just above
if ($mosConfig_sef) {

(line 13 approximately)
9  Joomla Hacks / Mambo-SMF 1.3.x / Re: User Registration approval: How does it work ? on: May 31, 2005, 01:30:36 PM
Actually I would like to have both: email verification AND aproval.
I want the user to confirm via email and then to let the admin approve it or not.

Is that possible ?

The goal is to be able to chose who can register to my forum.

I thought it would be possible by setting "Require Admin Approval" and "Require Email Confirmation" CB settings to Yes, but when I do that, even though the message stating that the user needs to wait for his approval to login, it is already possible for that user to log in, which is not normal. Non-approved users shouldn't be allowed to log in when not approved.

BTW, I'm using mod_smf_login 1.3.1a. Maybe the bug is there. It seems to allow SMF login when CB user approval is still pending.
Depending the way SMF's registration is overriden, that may be the problem: Only CB would block the user to log in when approval is pending, but not SMF. That's why the mod_smf_login lets unapproved users log in.

Oh and last thing: I don't want to use CB login module since it doesn't have links to SMF Recent Posts, Calendar and Profile.
10  Joomla Hacks / Mambo-SMF 1.2.x / Re: QUOTE & SPELL CHECK bug! on: May 31, 2005, 12:08:06 PM
Any news about that issue?

It's now possible to quote, but spell check is impossible in wrapped mode, the Javascript popup just display the whole site instead of the Spellchecker dialog. I know orstio had the same problem and solved it but your code is too different from his to solve it the same way.

Could you have a look at it?

Thanks in advance
11  Joomla Hacks / Mambo-SMF 1.3.x / User Registration approval: How does it work ? on: May 30, 2005, 05:23:18 PM
Hi cowboy,

I have Mambo 4.5.2.1, SMF 1.0.3, Communauty Builder 1.0RC1 and Mambo-SMF 1.3.1.2 installed on my server. I would like to be able to have my User Registration process like this:
- User fills the registration form
- EMail is sent to the new user with an confirmation link
- Email is sent to an administrator account to approve the user or not
- If administrator approves the new account, Email is sent to the user confirming he is a new member and he can log in. If not, the user can not log in.

I tried several combinations of parameters and Login modules, but I couldn't have this process work flawlessly. There is always a problem (most of the time, the mails are sent but the user account is never blocked during the validation process).

Can someone give me precise indications ?

Thanks in advance

PifGadget
12  Joomla Hacks / Mambo-SMF 1.3.x / Re: Login/Logout issues on: May 26, 2005, 10:34:22 AM
You're right, PSmith, there are problems with Login modules and com_smf when CB is installed.
Here is what I experienced: If you use CB login module,  login will be fine, but you won't be able to log out, and of course you won't have the Recent Posts, Updated Topics and Members list options in your menu once logged in. But the CB registration options (aproval methods) will work.

On the other hand, if you use Mambo-SMF login module, you'll have the SMF user's avatar, the nice menu options in the frontend, and the logout will work fine. But you'll have a problem with registration, it will use Mambo basic default registration process, no matter the method you chose in CB. The Mambo-SMF login module is apparently not compatible with CB.
Another bug I found is that the SMF Registration activation is never checked. Any registered user will be able to login even if he's not approved.

It seems there is no solution if you want to benefit from the CB registration features (especially the aproval process) and the Mambo-SMF login menu options at the same time. More problematic, you actually can't use the CB login module since it never logs you out.


The user deletion problem is another big issue; you're right, SMF and Mambo user lists are not in synchornized when a user is deleted in either SMF or Mambo. You need to manually delete the user account in both locations to have it really deleted.

Cowboy, did you have a chance to have a look at these issues ?

Thanks for your great work
13  Joomla Hacks / Mambo-SMF 1.2.x / Re: Approved registration possible? on: May 25, 2005, 01:12:08 AM
Any progress on that ?
Because right now, approved registration is still impossible.

Thanks
14  Joomla Hacks / Mambo-SMF 1.3.x / Re: MAJOR BUG: Mambo-SMF breaks editor in Frontend (SOLVED) on: May 17, 2005, 05:23:58 PM
Update: After the uninstall, I noticed that the //MABOHACKS.COM blocks in index.php had not been removed.
I removed them manually and tried again and... it worked !!!

The problem is clearly due to Mambo-SMF and precisely to the presence of these blocks in index.php. They are including Mambo-SMF files, right ? Well now we may have the culprit Wink

Update 2: I finally managed to solve the problem by setting gpc_magic_quotes to On in my PHP.ini file. That's something you should add to the setup instructions. Could be very useful.
It was apparently just a server issue then. The Mambo-SMF bridge team already had that problem before, and it was documented in SMF support forums.

Thanks for your great component, cowboy, keep up the good work.
15  Joomla Hacks / Mambo-SMF 1.3.x / Re: MAJOR BUG: Mambo-SMF breaks editor in Frontend on: May 17, 2005, 05:03:42 PM
I uninstalled Mambo-SMF and the issue doesn't disappear.
I don't know what to think or do...
Pages: [1] 2


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