| 00:11 |
rapidfyredotne1 |
voidus: Thanks for the reply earlier. Where do I enter "TCAdefaults.pages.hidden=0" to override the value of a specific page? |
| 00:12 |
voidus |
rapidfyredotne1: in the page properties, in page ts config |
| 00:12 |
voidus |
hm.. or in user TS config.. |
| 00:14 |
rapidfyredotne1 |
voidus: I added it in the Setup field of a template object on that particular page. It didn't seem to work. |
| 00:15 |
voidus |
rapidfyredotne1: not template object. it's *NOT* TS Setup |
| 00:15 |
voidus |
rapidfyredotne1: it's a user TS config. open tools > user admin |
| 00:15 |
rapidfyredotne1 |
hmmm I'm learning something. |
| 00:18 |
rapidfyredotne1 |
Well here's the reason I'm trying to use this property. I have a menu with entryLevel = -3 and want page to be displayed (uncheck "hide in menu") if it or any other subpage is selected. |
| 00:19 |
rapidfyredotne1 |
Sooo pretty much a conditional "hide in menu" |
| 00:20 |
voidus |
hm... you won't change any FE with TS config |
| 00:20 |
rapidfyredotne1 |
sigh |
| 00:24 |
rapidfyredotne1 |
voidus: Can I uncheck "hide in menu" with TS within a condition like... [PIDupinRootline]hide in menu = 0[end] |
| 00:24 |
voidus |
yes. |
| 00:24 |
voidus |
you can use .includeNotInMenu in your HMENU |
| 00:25 |
rapidfyredotne1 |
:) Ahhh I knew that would come up |
| 00:26 |
rapidfyredotne1 |
The problem with that is that I want it to specifically target ONE "hide in menu" page (the root page of that branch in the menu). |
| 00:27 |
rapidfyredotne1 |
When I use "includeNotInMenu = 1" it shows all "hide in menu" pages in the whole tree. |
| 00:27 |
rapidfyredotne1 |
I know this must be possible but I'm beginning to run out of ideas. |
| 00:27 |
rapidfyredotne1 |
I spend more time with CSS/HTML then TS. |
| 00:30 |
voidus |
you can override that all |
| 00:30 |
voidus |
but it's a bit overhead |
| 00:32 |
voidus |
rapidfyredotne1: you can use [PIDupinRootline] lib.mymenu.NO.allStdWrap.overrdie |
| 00:32 |
voidus |
*override |
| 00:32 |
voidus |
and then use .if to check id of that page |
| 00:33 |
rapidfyredotne1 |
thanks. |
| 00:34 |
voidus |
rapidfyredotne1: http://phpfi.com/266524 |
| 00:35 |
rapidfyredotne1 |
dude that's cool! |
| 00:36 |
rapidfyredotne1 |
I've never seen the "override" value used before. |
| 00:37 |
voidus |
rapidfyredotne1: does it work? |
| 00:37 |
rapidfyredotne1 |
I'm looking at the code trying to figure out how to make it work now. |
| 00:48 |
rapidfyredotne1 |
I'm still trying to understand why you have two lines of if's... |
| 00:48 |
rapidfyredotne1 |
if.value.field = uid |
| 00:48 |
rapidfyredotne1 |
if.equals = {$your_uid} |
| 00:50 |
Denyerec |
one loads a value to test |
| 00:50 |
Denyerec |
the second tests it |
| 00:51 |
rapidfyredotne1 |
and that's what you're doing with "field = title" as well, correct? |
| 00:51 |
Denyerec |
the "If" in typoscript can cause a real headache if you don't "get it" |
| 00:51 |
Denyerec |
Not quite |
| 00:51 |
Denyerec |
the if.value.field = can be the same, or different. |
| 00:51 |
Denyerec |
so you set it to what you want. |
| 00:51 |
rapidfyredotne1 |
That's a different register or variable then ehh? |
| 00:53 |
rapidfyredotne1 |
So in my case i would replace field = title and typoline... with....??? I still don't know the correct TS to override "hide in menu" |
| 00:57 |
Denyerec |
Learning how to interpret the documents is another skill you pick up with time |
| 00:57 |
Denyerec |
Trust me |
| 00:57 |
Denyerec |
It took ages before I could look at a page in the TSRef and see anything OTHER than total gibberish. |
| 00:57 |
Denyerec |
It's still only 4% sense now... :) |
| 00:59 |
rapidfyredotne1 |
Denyerec: Well it's slowly making more sense to me. Now that I think back I remember reading this in TSRef but forget it a LONG time ago. |
| 01:00 |
rapidfyredotne1 |
I have uploaded what I have so far at the end of the code here: http://phpfi.com/266524 |
| 01:01 |
rapidfyredotne1 |
The first section is the example code sent to me. The second section is my code with the sensitive TS between START NEW CODE and END NEW CODE. |
| 01:01 |
rapidfyredotne1 |
I need to find the TS to set "hide in menu = 0" |
| 01:01 |
Denyerec |
um |
| 01:02 |
Denyerec |
you might need to show me the actual code |
| 01:03 |
rapidfyredotne1 |
ACT.allStdWrap.override { |
| 01:03 |
rapidfyredotne1 |
if.value.field = uid |
| 01:03 |
rapidfyredotne1 |
if.equals = 12626 |
| 01:03 |
rapidfyredotne1 |
TCAdefaults.pages.hidden=0 #I don't think this line will work here |
| 01:03 |
rapidfyredotne1 |
} |
| 01:03 |
rapidfyredotne1 |
This TS is just in my main template in the setup field. |
| 01:09 |
Denyerec |
use pastecode please! :) |
| 01:19 |
rapidfyredotne1 |
I had already pasted the code here: http://phpfi.com/266524 ...sorry, I misunderstood what you were wanting :) |
| 05:27 |
derrydayemx1 |
hELLO |
| 05:31 |
derrydayemx1 |
HELLO |
| 06:07 |
d|g |
hi all |
| 08:55 |
Awillys |
morning |
| 09:53 |
smeringe |
a localization question; how can I make only text translatable and not image using "text w/image" element? :S |
| 09:54 |
dokma |
guys, you got any clue why sr_feuser_register is not md5ing passwords when I update a profile even though useMd5Password is true? |
| 10:00 |
smeringe |
ah.. never mind.. found it at last. found the config.sys_language_softMergeIfNotBlank = tt_content:image, tt_content:header thingie |
| 10:34 |
dokma |
lordlamer: you got an idea why sr_feuser_register would not md5 passwords on profile update? |
| 10:36 |
lordlamer |
perhaps. will the extension save it as md5? you could take a look in the class |
| 11:06 |
elbart |
good morning |
| 12:01 |
AlexTheGer1 |
morning |
| 12:05 |
AlexTheGer1 |
I want to use the "Rich Text Editor". Does it come with Typo3 nativly or do I have to load/install an extention? |
| 12:12 |
ddoesburg |
Hi guru's |
| 12:15 |
Denyerek |
Alex it comes natively. |
| 12:34 |
Strud |
I have a bunch of news categories that I want to sort alphabetically on the backend... how can I do that? |
| 12:42 |
voidus |
Strud: why do you want to sort them? |
| 13:08 |
AlexTheGer1 |
if I want to use HTMLarena, what option do I have to choose from this election: http://fanaticx.de/auswahl.jpg ? |
| 13:11 |
Strud |
I have a bunch of them |
| 13:11 |
Strud |
and when I created them I created them in alphabetical order |
| 13:11 |
Strud |
now I added a bunch of them |
| 13:11 |
Strud |
and they're not in that order |
| 13:12 |
Strud |
I have about 50 news categories |
| 13:12 |
Strud |
half of them show up correctly, they other half doesn't |
| 13:15 |
voidus |
AlexTheGer1: "just text" |
| 13:19 |
AlexTheGer1 |
voidus: if I select "Regular text element" I come up the this screen: http://fanaticx.de/just_text.jpg . Usely it should show a HTML-Icon to the right of the the text-input-field. But it does not. How can I enable this? |
| 13:20 |
voidus |
AlexTheGer1: one of two. 1) you did uninstall rtehtmlarea 2) you use opera |
| 13:20 |
AlexTheGer1 |
could it be that this htmlArena is not working with TemplaVoilà? |
| 13:20 |
AlexTheGer1 |
2) i do use opera |
| 13:20 |
voidus |
rtehtmlarea don't work with opera |
| 13:22 |
AlexTheGer1 |
ah, that makes it work. Thanks alot. |
| 13:22 |
AlexTheGer1 |
But why is opera not supported by htmlArena? |
| 13:23 |
voidus |
AlexTheGer1: dunno. it's for many years already, i think... |
| 13:23 |
voidus |
AlexTheGer1: use tinyrte if you want opera |
| 13:25 |
AlexTheGer1 |
are there any disadvantages if I use tinyrte? |
| 13:43 |
ries |
hehehehe I just had a good laugh about on bug reporter |
| 13:43 |
ries |
on http://bugs.typo3.org... |
| 13:43 |
ries |
good morning |
| 13:43 |
ries |
just2b: got my mail? |
| 13:47 |
voidus |
ries: why? |
| 13:48 |
just2b |
hi ries, yes but i was in the company.. will get it asap |
| 13:50 |
ries |
voidus: http://bugs.typo3.org/view.php?id=5088 |
| 13:50 |
ries |
there is one guy that is willing to send his VM for FREE (yes for free!!) to a core developer to get his problem solved :) |
| 13:50 |
ries |
just2b: thanks |
| 13:51 |
ries |
I was looking in the chat transcript but lost yoru account :( |
| 13:51 |
just2b |
please answer in icq ;) |
| 13:51 |
ries |
voidus: Bu the 'free' he keeps on repeating a couple of times... then if a developer wan't to solve it oversees, he needs to pay 60 euro to get his problem solved... |
| 13:53 |
pulponair |
hi dudes |
| 14:00 |
ries |
Hey pulponair ! |
| 14:00 |
pulponair |
ries: i read you are fiddeling arround with a native pg driver. great . |
| 14:05 |
ries |
pulponair: yeaaaa indeed.. |
| 14:05 |
ries |
yesterday evening I was making teh whole thing more universal and more portable... |
| 14:05 |
pulponair |
ries:i always wondered what that t3 db abstraction is for if t3 virtually just supports mysql (except for dbal ...) |
| 14:07 |
pulponair |
ries: great. Perhaps this will result in better native suppor for other dbms like oracle or mssql... |
| 14:07 |
pulponair |
als |
| 14:07 |
pulponair |
o |
| 14:10 |
flo_ps |
hi guys |
| 14:12 |
flo_ps |
i am using templavoila. i have a flexible contentelement with 2 (different) links. but when they get rendered both are linking to the last one, anyone know why this can happen? |
| 14:21 |
flo_ps |
ok i got it |
| 14:46 |
Denyerec |
Bloody interent connection |
| 14:46 |
Denyerec |
hey guys |
| 14:46 |
just2b |
yeah here too... only 100mbit :D |
| 14:48 |
Denyerec |
Anyone here particularly familiar with "Newsletters" and their associated extensions ? I'm after recommendations / hints / possible pitfalls. |
| 14:52 |
pmk65 |
DirectMail sucks (Dunno if the updated version is better), as it uses an ancient way of configuring (From TYPO3 v2) I recommend TCDirectMail, which is easy to setup. |
| 14:53 |
Softzilla |
Do you test new version of DirectMail? |
| 15:03 |
Denyerec |
pmk, damn, man, you have had ALL the answers in the last few days. |
| 15:04 |
just2b |
yeah peter is the king ;) |
| 15:04 |
pmk65 |
The only thing you need to pay attention to, is the format of the newsletter. You can't use full CSS if you want your newsletter to show up in all mailreaders. |
| 15:04 |
Denyerec |
Ah yeah |
| 15:05 |
Denyerec |
I've been toying with that. |
| 15:06 |
pmk65 |
A goot site to read before creating newsletters, is this: http://campaignmonitor.com/ |
| 15:06 |
Denyerec |
I was going to get someoen to write a script that would aid newsletter writers |
| 15:06 |
Denyerec |
but I don't know enough JS to get the job done quickly. |
| 15:07 |
pmk65 |
http://www.campaignmonitor.com/blog/archives/2007/04/a_guide_to_css_support_in_emai_2.html |
| 15:08 |
pmk65 |
I was working on making a "css_styled_newsletter" extension, that could replace "css_styled_content" on the newsletter pages, but I never got around to finishing it. |
| 15:08 |
Denyerec |
How good is your Javascript ? |
| 15:16 |
AlexTheGer1 |
where can I see/edit/add Flexforms? |
| 15:18 |
just2b |
AlexTheGer1 read section in wiki about it |
| 15:26 |
pmk65 |
Denyerec: Im pretty good at JS, I have been coding a couple plugins in 100% javascript too ;) |
| 15:26 |
Denyerec |
Check your pm :) |
| 15:30 |
AlexTheGer1 |
did anybody ever worked with bddb_flvvideogallery? |
| 15:30 |
AlexTheGer1 |
I can't find the place where to put my .flv movies or where to edit it in the flexforms |
| 15:55 |
ddoesburg_ |
Hé guys, I've little problem. |
| 15:55 |
ddoesburg_ |
Once I saw a possibility (extension?) to use a kind of variables in the RTE. |
| 15:55 |
ddoesburg_ |
But now I need that I can't find it back. |
| 15:55 |
ddoesburg_ |
I want to use such a variable p.e. in a site about an community. And in some places I have to call the number of members in the bodytext (RTE). But that is a constant changing number. I want to use for that kind of information a variable or something like that. I've tried the custom tags and the acronyms, but both don't give me a right solution. |
| 15:55 |
ddoesburg_ |
Who can give me a nice hint? |
| 16:01 |
voidus |
ddoesburg_: de_custom_tags ? |
| 16:06 |
theanomaly |
riddle me this someone, I need to have a mount point that substitutes the mount point with the mounted page, but still hides the mount point/page in the menu (and that setting has no effect when the mount point is substituted) |
| 16:07 |
ddoesburg_ |
Voidus: Sorry I had a call. Yes that extension I used. But I can't get it that a new value is substituted in the bodytext |
| 16:08 |
voidus |
ddoesburg_: did you use non-english symbols in value? |
| 16:09 |
ddoesburg_ |
No. In those example only a number of 3 figures |
| 16:11 |
voidus |
ddoesburg_: no.. not in value. some "marker" is substituted with "value". marker should be english-only, value can be anything. |
| 16:12 |
ddoesburg_ |
The marker was the word "number" |
| 16:14 |
ddoesburg_ |
Do you know for sure that this extension does what I want? I will try it again. May be I overlooked something |
| 16:15 |
voidus |
ddoesburg_: yes, it does. i use it in production. |
| 16:23 |
ddoesburg_ |
voidus: Thanks for this hint. I'll try it. |
| 16:54 |
Denyerec |
Oh man |
| 16:54 |
Denyerec |
the sr)fe)user_reg manual scares me |
| 16:54 |
Denyerec |
Whatever it's called |
| 16:54 |
Denyerec |
that thing is a hell of an intimidating plugin |
| 16:57 |
Diblo |
I need a TS to chances the page name in typo3 in a php strips. I will use a php variable to set the name. A there some can help me the code. |
| 16:58 |
Diblo |
in a = whit a* |
| 16:58 |
Meins |
hello |
| 17:01 |
voidus |
Diblo: do you want to change <title> tag? |
| 17:01 |
voidus |
Meins: hello |
| 17:02 |
Diblo |
no the Pagetitle |
| 17:03 |
voidus |
Diblo: TS can't change anything in the DB |
| 17:05 |
Diblo |
So i have to duet manuel whit the php ? |
| 17:06 |
Diblo |
or can I due manuel |
| 17:07 |
voidus |
Diblo: what do you want to do? |
| 17:09 |
Diblo |
chances the pagetitle for a page whit php. The php chase the server title and I will like to have the php to chances the pagetitel |
| 17:09 |
Diblo |
pagetitle |
| 17:10 |
Diblo |
sry for the bad english |
| 17:11 |
voidus |
Diblo: i don't understand. do you want to change pagetitle in the database (in the table 'pages') or do you want to change rendering of page title? |
| 17:12 |
Diblo |
http://team-target.dk/index.php?id=25 |
| 17:12 |
Diblo |
Server 1 and sever 2 have to get the server name by the php strips |
| 17:14 |
Diblo |
server 1 and 2 in the sudmenu |
| 17:15 |
Diblo |
submenu :P |
| 17:15 |
voidus |
Diblo: use IProcFunc property of TMENU |
| 17:17 |
Diblo |
Tanks for the help. I well to look on it. :) |
| 17:39 |
theanomaly |
anyone know how to accomplish having a login link change to logout once someone logs in and vice-versa? |
| 17:39 |
theanomaly |
i tried hiding the login page at login and the logout page when not logged in, but that breaks simulatebe and redirection and results in a 404 on login/logout |
| 17:51 |
Meins |
does anyone of the typo3 expert speaks german? |
| 17:56 |
Denyerec |
most of them. |
| 17:56 |
Denyerec |
Bloody german documentation.... |
| 17:56 |
Denyerec |
;) |
| 17:57 |
Meins |
;) i have a special question and i think it is easyer to ask this in german |
| 19:08 |
count-0 |
hi channel. i'm haviong abit of a problem here with forms generated in TS using the blah=FORM assignment. when wrapFieldName is used, the posted values are not being reinserted into the form. any ideas how to bypass this? |
| 19:09 |
Tchinkatchuk |
hi all |
| 19:10 |
Tchinkatchuk |
I really need help on crawler functionlaity and erros in crawler log. |
| 19:10 |
Tchinkatchuk |
I have this stuff in database in result data of crawler_queue |
| 19:10 |
Tchinkatchuk |
a:2:{s:7:"headers";s:262:"HTTP/1.1 200 OK |
| 19:10 |
Tchinkatchuk |
Date: Wed, 03 Oct 2007 16:23:36 GMT |
| 19:10 |
Tchinkatchuk |
Server: Apache/2.0.58 (Unix) mod_ssl/2.0.58 OpenSSL/0.9.7i |
| 19:10 |
Tchinkatchuk |
X-Powered-By: PHP/5.1.4 |
| 19:10 |
Tchinkatchuk |
Set-Cookie: fe_typo_user=69e14a693f; path=/ |
| 19:10 |
Tchinkatchuk |
Vary: Accept-Encoding,User-Agent |
| 19:10 |
Tchinkatchuk |
Connection: close |
| 19:11 |
Tchinkatchuk |
Content-Type: text/html |
| 19:11 |
Tchinkatchuk |
";s:7:"content";s:353:" a:4:{s:7:"running";b:1;s:10:"parameters";a:2:{s:3:"url";s:52:"http://demo.xxx.org/index.php?id=39";s:16:"procInstructions";a:2:{i:0;s:24:"tx_indexedsearch_reindex";i:1;s:24:"tx_indexedsearch_crawler";}}s:3:"log";a:1:{i:0;s:26:"Forced Re-indexing enabled";}s:4:"vars";a:3:{s:2:"id";i:39;s:7:"gr_list";s:4:"0,-1";s:8:"no_cache";i:1;}}";} |
| 19:11 |
Tchinkatchuk |
and I am not able to traduct it. ^^It has been month since I could not get anything else than that with crawler. |
| 19:12 |
just2b |
Tchinkatchuk dont post that here |
| 19:12 |
Tchinkatchuk |
sorry. |
| 19:12 |
Tchinkatchuk |
I'll pot it in phpfi. |
| 19:13 |
Tchinkatchuk |
I forgot |
| 19:13 |
Tchinkatchuk |
Here's the URL : http://phpfi.com/266672 |
| 20:04 |
pond |
anyone know how to use auth services or similar to allow feuser login via get parameters? Like this: |
| 20:05 |
pond |
http://domain.com/index.php?id=123&user=pond&password=jumpinthe |
| 20:06 |
pond |
it looks to me like the fe_userauth is designed to do this by default... but ... I cannot get it to work... |
| 20:07 |
Hendrix |
pond: Why would you wanna type users password in the URL? That doesn't sound like good practice to me. |
| 20:07 |
pond |
no |
| 20:07 |
pond |
generally its not ;) |
| 20:07 |
pond |
but... the client wants it... lol |
| 20:07 |
pond |
you know how that goes... |
| 20:08 |
Hendrix |
Why not send a md5-hash or something like that? |
| 20:09 |
pond |
ok, well that would work too... its just that I need to know how to do this... and it seems like it should work out of the box... |
| 20:10 |
pond |
class.tslib_feuserauth.php appears to look for get parameters... |
| 20:10 |
Hendrix |
How far have you gotten then? |
| 20:10 |
pond |
just looking through class.tslib_feuserauth.php |
| 20:10 |
pond |
and I saw a post by ries about using auth services |
| 20:11 |
ries |
hey pond |
| 20:11 |
pond |
which I am looking into... he said it was a TS solution for a sso type environment |
| 20:11 |
pond |
hey |
| 20:12 |
Hendrix |
I see. |
| 20:12 |
ries |
pond: if you want to develop your own then I SUGGEST TAKE A LOOK AT ONE OF THE EXHISTING EXTENSIONS |
| 20:12 |
ries |
sorry caps |
| 20:13 |
pond |
yeah... but there is this cryptic little line in class.tslib_feuserauth.php: |
| 20:13 |
pond |
var $getMethodEnabled = 1; // Login may be supplied by url. |
| 20:13 |
pond |
so... I was hoping it would be a quick task ;) |
| 20:14 |
ries |
I don't recal that currently... |
| 20:14 |
ries |
I took my example of some of the LDAP versions |
| 20:14 |
ries |
Now I made a system taht can login and create a user based on get variables |
| 20:14 |
pond |
yeah... I saw that in the forum |
| 20:15 |
pond |
I don't need to do that... |
| 20:15 |
pond |
just simple get paramaters login |
| 20:15 |
pond |
anyway... I am sure I can hack the feuserauth class a bit to do it... I was just hoping that it was a simple piece of TS I had overlooked somewhere... |
| 20:16 |
ries |
pond: don't hack that class |
| 20:16 |
ries |
it's not needed |
| 20:18 |
pond |
well, I am not sure how, but I am looking at that now... the only function that uses the "getMethodEnable" flag is: function getLoginFormData() |
| 20:19 |
pond |
so.. I assume I just need to make sure the get vars are being passed in properly... |
| 20:20 |
ries |
pond my extension allows to do this : http://paste2.org/p/7861 |
| 20:21 |
pond |
is GM_AUTH a standard typo3 object now? |
| 20:22 |
pond |
I really need to learn about this ;) |
| 20:23 |
ries |
GM_AUTH was created by me... |
| 20:23 |
ries |
in the extension |
| 20:24 |
pond |
oh... this is the extension you made to create and login a user by get paramaters... |
| 20:24 |
pond |
I see |
| 20:27 |
pond |
is your ext in the ter? |
| 20:28 |
ries |
nope.. private |
| 20:28 |
ries |
I always wanted to put it in TER if teh client is ok with it |
| 20:29 |
ries |
but I need to check if the is any client specific code in it |
| 20:29 |
ries |
But it works great in production.. we have more then 10.000 users comming in from various locations using this SSo system |
| 20:30 |
pond |
ok... well, I am pretty sure the regular auth class is made to do this... i just nood to make sure the params get passed in correctly... |
| 20:30 |
pond |
anyway |
| 20:30 |
pond |
on your system is this a third party software that is sending the clients in with the get params? |
| 20:30 |
pond |
sort of a way of propogating users? |
| 20:31 |
ries |
yes |
| 20:31 |
ries |
it was the only way to do it |
| 20:31 |
pond |
I guess its ok if you use ssl |
| 20:31 |
ries |
and with teh configuration file we can tell the system how/where to create users |
| 20:31 |
pond |
what about the single-signon.com extension? |
| 20:31 |
ries |
we explained to client the riscs and they where ok with it.. |
| 20:31 |
pond |
yeah... that is really cool. |
| 20:31 |
ries |
SSL doesn't help here much... |
| 20:32 |
pond |
I noticed that in the TS paste |
| 20:32 |
pond |
why not? (SSL not working well) |
| 20:32 |
ries |
if the webite you come from is not SSL, which is in soem cases then anybody with a sniffer can know the auth string... |
| 20:32 |
pond |
oh, right. |
| 20:33 |
pond |
I assumed it would always be coming from ssl connection |
| 20:33 |
ries |
not always... in our case... |
| 20:33 |
ries |
But still.. it doesn't garantee taht anybody else can try to do teh same |
| 20:34 |
pond |
did you look at the extension at single-signon.com? I was looking at that the other day for another application |
| 20:34 |
pond |
right |
| 20:34 |
ries |
single-signon.com handles sso between applications... |
| 20:34 |
ries |
in my case we don't have control over the remote website |
| 20:34 |
pond |
right... isn't that basically what you are doing? |
| 20:34 |
pond |
oh |
| 20:34 |
pond |
I see |
| 20:35 |
pond |
well, that's cool... if I ever need it, I'll dig deeper form some inside tips ;) |
| 21:42 |
dokma_ |
guys, have you got a clue why sr_feuser_register does not encrypt passwords when profile is updated |
| 21:43 |
dokma_ |
is this standard behaviour? it's quite a problem on my end! |
| 23:07 |
AlexTheGer1 |
hi there |
| 23:08 |
AlexTheGer1 |
is it a bad idea to mix a standart "extension template" with templaVoila? |
| 23:13 |
tchang |
hi guys |
| 23:14 |
elbart |
hi |
| 23:14 |
tchang |
I have a FileLink content |
| 23:15 |
tchang |
is it possible to remove the upload form which is in the content form |
| 23:15 |
tchang |
so the user have to use the popup ? |
| 23:15 |
tchang |
not sure I'm very clear... |
| 23:15 |
tchang |
:p |