41
marcan
Re: AMS and SmartSection.......GRRRRR
  • 2006/5/30 18:02

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


I understand

Perhaps Skalpa, phpp or Mithrandir could help us on this.

Thanks !
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



42
marcan
Re: AMS and SmartSection.......GRRRRR
  • 2006/5/30 17:12

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Quote:
I don't remember how block options were stored in 2.0.x, but in 2.2.4 they're stored as a serialized array.

I beleive they were stored like this in 2.0.x also. The problem deeper I think. Here is an example. Let's suppose this is the options for a block :

$options = array(=> '150'=> '5');

Let's suppose this block has a third option which is an array. The options array will then look like this :
Quote:
$options = array(0 => '150', 1 => '5', 2, => array(0 => '1', 1 => '2'));

In 2.0.x, I beleive that each option within the $options array was check to know if it was itself an array. If so, then the option was implode and transformed into a string. So the actual $options saved in the database was a serialized version of :
Quote:
$options = array(0 => '150', 1 => '5', 2, => '1, 2');


This does not seems to happen in 2.2.x. If we take the same example, in 2.2.x, the $options saved in the database would be this :
Quote:
$options = array(0 => '150', 1 => '5', 2, => 'array');


Am I explaining myself correctly ? What am I missing ?

Cheers !
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



43
marcan
Re: AMS and SmartSection.......GRRRRR
  • 2006/5/30 16:37

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Quote:
I really like using SmartSection, but the dang spotlight feature doesn't work.

I investigate the problem and it seems that this is a problem with XOOPS 2.2.x. The way XOOPS 2.2.x saves array options for block has changed since 2.0.x and I could not see a way to save array anymore... This is why it is still not fixed.

Perhaps other people could help us with this ?

CHeers !
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



44
marcan
Re: SmartSection seo feature
  • 2006/5/30 16:34

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Hi

Quote:
Will that not create duplicate content in search engines?

Not if no links are available pointing on original URLs.

Quote:
Also, the links in the breadcrumb menu (SmartSection > CategoryName) and the categories menu block are not rewritten


Regarding the breadcrumb, I cannot reproduce that. Can you post an URL where we could see this live in action. Or perhaps i'm not understanding the issue correctly ? Can you see this bug on SmartFactory's Library ?

As for the Category block, yes this, slipped through our testing as not used on the SmartFactory. It shall be fixed by final release.

Cheers !
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



45
marcan
Re: bug in smartmedia
  • 2006/5/29 13:48

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Edit the file smartmedia/blocks/clips_recent.php and find this line :
$clipsArray =& $smartmedia_clip_handler->getClipsFromAdmin(0$max_clips'clips.created_date''DESC''all');

Juste BEFORE this line, insert this :
$smartmedia_clip_handler =& xoops_getmodulehandler('clip''smartmedia');


Cheers !
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



46
marcan
Re: Universal Billing module for XOOPS
  • 2006/5/25 19:13

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Hi guys,

I'm interested in this as well. As you may know, we are working on a SmartObject framework to ease the creation / edition / deletion / listing of objects in a module. It could be interesting to develop this module base on SmartObject. I could take care of this part and other people, like McNaz could take care of the billing.
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



47
marcan
Re: XOOPS Newsletter Mailer
  • 2006/5/17 17:44

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


We are working on it . New info should be posted soon

Cheers!
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



48
marcan
Re: module that creates and manage custom smarty vars
  • 2006/5/12 11:48

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Hi Michael

The SmartLanguage module actually does that, It allows you to create Custom Smarty Tags. It was designed for XOOPS Multilanguages, to allow people to create multilanguage smarty tags, but i'm sure that feature could be quickly extracted from SmartLanguage and put in an individual module.

Interested ?
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



49
marcan
Re: XOOPS Newsletter Mailer
  • 2006/4/26 12:11

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Hi, allow me to take position here. I agree with Andy. I don't beleive we need a separate table to hold users information. The xoops_users can do the job perfectly.

Quote:
I want to be able to have in my mailinglists peoples that are not XOOPS users and that is what guide me

Why ? If you I want to be subscribed to your mailinglist AND be a registeted member of your site, why would I need to complete 2 registrations ? Only one should do the job. We could customize the way users are added to the site in different ways to allow someone:

- to be a User AND a newsletter subscriber
- to only be a User
- to only be a Newsletter subscriber

For the user, it will be transparent, but in the background he will be manage as a User of the site. For him, it makes no difference.

I can see the registration form of the site where, in addition to register as a member, you select the different newsletter you wish to subscribe to.

In the other hand, I can see the Newsletter subscribe form as simple as entering an email + checking the newsletter you want to subsribe to. Hit Go, and that's it.

In the background, the system would create a new user, assign him a password, subscribe him to teh newsletter and send a beautifull email explaining everything : you are now subscrive to our site, here is your password, here is the page where you can customize your newsletter preferences, etc...

Quote:
Read Skalpa's post about scalebility of OpenSource and XOOPS - the direction it's going to - is to separate tasks/modules/etc'

Absolutely. But why separate informations about the very same objects. Registered users and newsletter subscriber can really be see as the same object : a person. So we need to manage both of the in the same manner, with a few properties that difference some behavior.

Quote:
I see it as a stand alone mailinglist that will "know" how to work with XOOPS users database but won't be limited to it !!!!

If this is really what you want, then I beleive the best way is to hack your favorite newsletter code and only hack a little part of the system to hook newsletter users to XOOPS users. And I beleive this can easily be done.

However, I don't think this will reach the objectives that Andy and I had in the first place. But perhaps this could be an "easy and cheap" solution that could do the job for certain needs.

Thoughts ?
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.



50
marcan
Re: [PAID]: Need ClientExec Plugin Coded
  • 2006/3/30 17:25

  • marcan

  • Just can't stay away

  • Posts: 824

  • Since: 2003/10/8


Hi JMorris,

I beleive I can help you with this through my company InBox Solutions. I'm sending you a PM at the moment.

Cheers !
.:: marcan (aka mal aka Marc-André) ::.
.:: Open Source :: The SmartFactory ::.
.:: XOOPS Professional Services :: INBOX International ::.




TopTop
« 1 2 3 4 (5) 6 7 8 ... 36 »



Login

Who's Online

189 user(s) are online (100 user(s) are browsing Support Forums)


Members: 0


Guests: 189


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits