| 00:00 |
ries |
timdeluxe: it works now.... but I had to modify some extensions from USER_INT to USER |
| 00:01 |
timdeluxe |
ries: congratulations :) |
| 00:02 |
ries |
timdeluxe: I had to put t3lib_div::print_array($this->config['INTincScript']); on like 3007 in t3lib_fe to see what extensions are uSER_INT |
| 00:04 |
timdeluxe |
ries: save typing power, i dont understand it at all. |
| 00:04 |
timdeluxe |
;) |
| 00:04 |
hermione_g |
What's currently the best way to realize a FE user registration? |
| 00:04 |
ries |
hahaha |
| 00:04 |
ries |
np |
| 00:05 |
ries |
hermione_g: I used a plugin that came with mm_forum |
| 00:05 |
ries |
if you don't have any strong requirements then sr_fe_userregistration is the 'best' |
| 00:06 |
hermione_g |
ries: I can't find that in the online repo |
| 00:08 |
ries |
hermione_g: http://typo3.org/extensions/repository/view/sr_feuser_register/current/ |
| 00:08 |
hermione_g |
thanks a lot |
| 01:13 |
hermione_g |
Hum. sr_feuser_register wants to include ext/static_info_tables/pi1/class.tx_staticinfotables_pi1.php but there is no file in static_info_tables. Not even the pi1 directory. Am I missing something? |
| 01:17 |
hermione_g |
Ah, seems as if the build-in import function gives outdated extensions... |
| 09:20 |
maholtz|WORK |
morning |
| 10:21 |
just2b |
morning |
| 10:21 |
m0oman |
moo. |
| 10:31 |
NMB |
i m facing some problem in my custom rootline which i have developed for the mm_forum extension |
| 10:31 |
NMB |
Home / Forum / Forum Home Page / My First Forum Category / My First Forum |
| 10:32 |
NMB |
this type of rootline is being generated by my custom ts |
| 10:32 |
NMB |
but the problem is the fourth segment 'My First Forum Category' |
| 10:32 |
NMB |
url generated for this section is something like " localhost/project/#cat1" |
| 10:33 |
NMB |
instead of localhost/project/index.php?1d=145#cat1" |
| 10:34 |
NMB |
i have also debugged the plugin and found that that this line $this->pi_getPageLink($GLOBALS['TSFE']->id.'#cat'.$cat_id) |
| 10:35 |
NMB |
to my surprise when i attach a language variable say &L=0 variable to the existing page, then url is generated correctly |
| 10:35 |
NMB |
i know the problem is some what weird |
| 10:36 |
NMB |
but anyone faced this same problem as me, if so then please help me on this |
| 10:36 |
maholtz|WORK |
http://www.typo3-unleashed.net/typo3apidocs/typo3api_4.2.1/html/df/d32/classtslib__pibase.html#7eb95e37e2dc30a8872e61d0c5870212 |
| 10:36 |
maholtz|WORK |
id has to be integer |
| 10:36 |
maholtz|WORK |
you cannot set section there |
| 10:37 |
maholtz|WORK |
i would use $this->cObj->typoLink instead |
| 10:37 |
NMB |
the above link line i have got from mm_forum extension |
| 10:37 |
NMB |
the guy developed that section have used this code |
| 10:38 |
NMB |
the link generates fine when i add a language variable L in the query string |
| 10:38 |
NMB |
seems so strange |
| 10:38 |
maholtz|WORK |
well including section? |
| 10:38 |
NMB |
yes |
| 10:39 |
maholtz|WORK |
but api says: integer and #cat is not int... |
| 10:39 |
maholtz|WORK |
if it works because of sideeffects or an bug in the core... you should not use it anyway |
| 10:39 |
NMB |
let me tell u one more thing |
| 10:40 |
NMB |
in mm_forum i have also enabled its main rootline |
| 10:40 |
NMB |
and the same breadcrumb works fine when i enable it in the mm_forum configuration |
| 10:40 |
NMB |
but when i add it through my typoscript then this problem happens |
| 10:41 |
NMB |
http://paste.phlogi.net/-92984dd17a/ |
| 10:41 |
NMB |
check this out my typoscript |
| 10:42 |
NMB |
the two lines special and userfunc, i got them from the extension manual of mm_forum |
| 10:43 |
maholtz|WORK |
why do you get then an link with section #cat in it? |
| 10:45 |
NMB |
index.php?id=145#cat1 this is what i get when the breadcrumb is generated by the same script but when i enabled the rootline |
| 10:45 |
NMB |
and #cat1 this is what i get when its been rendered by the typoscript i have written |
| 10:46 |
maholtz|WORK |
yep, but where is #cat1 defined? |
| 10:47 |
NMB |
in the plugin, in the function createRootline |
| 10:48 |
NMB |
#cat1 is an anchor on the page where categories are shown |
| 10:48 |
NMB |
1 is a variable which can be variable, ithink its id or some thing like that |
| 10:49 |
NMB |
i dont think there is some problem with my typoscript |
| 10:49 |
NMB |
does it? |
| 10:52 |
maholtz|WORK |
i dont think so - the api says integer - but they are using an string - so write an bugreport |
| 10:53 |
NMB |
http://img195.imageshack.us/img195/5188/imagejtw.jpg |
| 10:53 |
NMB |
you can check out this image |
| 10:54 |
NMB |
the above breadcrumb is generated by my extension template and this TS |
| 10:54 |
NMB |
the below breadcrumb is by mm_forum setting enable rootline |
| 10:55 |
NMB |
i only wonder why the second breadcrumb has the correct links |
| 10:56 |
NMB |
i guess it would be using the same function of plugin which i m using |
| 10:56 |
NMB |
am i rite? |
| 10:57 |
maholtz|WORK |
i do not know that extension in detail, so i cant help with that. But the code you posted was wrong, so it is a bug. But if it solves your problem - i do not know. |
| 10:58 |
NMB |
ok can u tell me one last thing |
| 10:58 |
NMB |
is there any properly in typoscript that bydefault put a language variable with the default langauge with every link.. say &L=0 with every link |
| 10:58 |
NMB |
? |
| 10:59 |
maholtz|WORK |
i do not know - and it would be an really dirty hack |
| 11:00 |
NMB |
:( |
| 13:47 |
maholtz|WORK |
hi rw-HedDi |
| 13:50 |
egbertpot |
Hi all! |
| 13:50 |
egbertpot |
Does anybody know how I can configure chgallery to use lightbox |
| 13:51 |
egbertpot |
I would like to have a 'download' button in the lightbox scree |
| 13:51 |
egbertpot |
euh.. screen. ;-) |
| 13:52 |
egbertpot |
So people can click on a photo and than click on the download button to download the photo in full resolution |
| 14:02 |
egbertpot |
Hmm.. please forget my last questions, they were not clear |
| 14:03 |
egbertpot |
What I actually mean is: I've a chgallery photo plugin with pmkslimbox enabled. All works well. But when I try to save a photo it says: |
| 14:03 |
egbertpot |
..You are trying to download a file, which you don't have access to |
| 14:03 |
egbertpot |
.. |
| 14:04 |
maholtz|WORK |
check file url - is it a browser, server, javascript warning? |
| 14:06 |
egbertpot |
It's a warning coming from the ext/pmkslimbox/savefile.php file |
| 14:06 |
NMB |
is there any tutorital of how to create a login/logout form in typo3 |
| 14:07 |
NMB |
i want to make myself a login/logout form, but do not know where to start |
| 14:07 |
maholtz|WORK |
there is a system extension fe_login or felogin |
| 14:07 |
NMB |
for now i do not want to use that extension |
| 14:07 |
maholtz|WORK |
activate that, use then content type login |
| 14:07 |
maholtz|WORK |
?why not |
| 14:08 |
NMB |
i will use them but not now, for nowii want to make my own simple script that login and log outs |
| 14:08 |
NMB |
is there any basics or base classes that i should know about |
| 14:08 |
maholtz|WORK |
nope |
| 14:08 |
maholtz|WORK |
yes |
| 14:08 |
maholtz|WORK |
use that plugin |
| 14:08 |
maholtz|WORK |
its an system extension |
| 14:08 |
maholtz|WORK |
like using extension manager |
| 14:08 |
maholtz|WORK |
or "cms" |
| 14:08 |
NMB |
yah i know |
| 14:09 |
NMB |
actually i want to develop my own coz i want to go in detail of really login/logout works |
| 14:09 |
NMB |
it will be beneficial for me when i use felogin after this |
| 14:10 |
maholtz|WORK |
i do not think so |
| 14:10 |
NMB |
do u know any basic tutorial for that/ |
| 14:10 |
NMB |
? |
| 14:10 |
maholtz|WORK |
nobody would write an tutorial for that |
| 14:10 |
NMB |
coz i have looked at felogin code, its so complex to me |
| 14:10 |
maholtz|WORK |
look at source code of that extension to understand whats going on |
| 14:10 |
NMB |
maybe i m a newbie thats why |
| 14:10 |
maholtz|WORK |
i now |
| 14:11 |
maholtz|WORK |
your questions shows that - but i do not understand why you do not trust me |
| 14:11 |
NMB |
thats why i was looking for some basic understanding and then use felogin |
| 14:11 |
NMB |
i do trust you |
| 14:11 |
NMB |
so according to you i should use felogin directly ? |
| 14:12 |
maholtz|WORK |
yes |
| 14:12 |
maholtz|WORK |
rad TSref, TSConfig and Inside TYPO3 before |
| 14:12 |
NMB |
ok tell me one thing, i do not want to include that plugin as a content element |
| 14:12 |
NMB |
i want to add it using TS only |
| 14:12 |
maholtz|WORK |
do it via typoscript |
| 14:12 |
NMB |
is this possible? |
| 14:14 |
maholtz|WORK |
yep |
| 14:15 |
NMB |
can u show me some sample code if u got any? |
| 14:19 |
NMB |
maholtz|WORK: http://paste.phlogi.net/-a0de6ca2fa/ |
| 14:20 |
NMB |
is the following code ok, or do i need to configure anything else? |
| 14:24 |
Gerhard |
Hi all |
| 14:25 |
maholtz |
re & hi |
| 14:30 |
Gerhard |
Is there any non-browser-based way of editing content in TYPO3? I think of a programs like LiveWriter... |
| 14:30 |
maholtz |
do not know if there is a stable version |
| 14:31 |
maholtz |
but there was some experiments to use eclipse at some points |
| 14:32 |
Gerhard |
eclipse for editing content? |
| 14:33 |
maholtz |
typoscript was edited... but never heard again from that |
| 14:33 |
maholtz |
rendering the pagetree in eclipse |
| 14:33 |
maholtz |
was possible |
| 14:41 |
ries |
Gerhard: you could make something based on Air |
| 14:41 |
Gerhard |
I have read that Joomla has a LiveWriter-Extension - http://www.bohacek.de/b01-joomla-blog/windows-live-writer-im-joomla-einsatz.html - ... |
| 14:42 |
Gerhard |
...so I wonder if this would be possible with TYPO3 also. |
| 14:43 |
Gerhard |
ries: you mean this? ... http://www.adobe.com/de/products/air/ |
| 14:56 |
ries |
Gerhard: yea |
| 15:42 |
ssc |
Hi, all |
| 15:42 |
ssc |
Which value should I use for config.language or config.htmlTag_langKey if I'll create a page for belgian people ? |
| 15:43 |
ssc |
Wikipedia says that belgian is splitted in 3 languages - german/netherlands/french |
| 16:00 |
egbertpot |
ssc: I'm not Belgian, but I live in The Netherlands |
| 16:02 |
egbertpot |
ssc: I think you should make a page for dutch speaking people, that's for the part of Belgium called Vlaanderen |
| 16:02 |
egbertpot |
ssc: You should also make a page in French for the people in the French speaking part of Belgium called Wallonie |
| 16:03 |
egbertpot |
ssc: The German language can be ignored |
| 16:05 |
egbertpot |
ries: Hi are you the Ries van Twisk? |
| 16:05 |
ries |
egbertpot: yes I am |
| 16:06 |
ssc |
Thanks - but my page is translated in 13 languages and the author will have a page for belgian people ... |
| 16:06 |
ssc |
The 13 still contains NL and FR ... therefore I ask which languageKey I can use for the belgian page ... - hope you understand my prob :D |
| 16:07 |
ries |
ssc: use BE if you want to translate it in 'vlaams' |
| 16:08 |
ssc |
but BE stands for http://en.wikipedia.org/wiki/Belarusian_language |
| 16:18 |
ries |
ssc: Hmmm.. I would need to look at static language then |
| 16:22 |
ssc |
ries: there is no entry for belgian ... I use NL now :... |
| 16:23 |
egbertpot |
ssc: Yeah you should use NL now |
| 16:24 |
ssc |
*thx* |
| 16:34 |
ries |
egbertpot: you are right.... |
| 16:35 |
ries |
actually 'officially' it should be nl_BE as the language code (to shows dutch in belgium) |
| 16:38 |
ries |
pmk65: peter, happen to be here? |
| 17:14 |
egbertpot |
Does anybody know a good banner module? I'm using macina_banners, but it is buggy |
| 17:33 |
egbertpot |
Does somebody has experience with OpenX the OS Ad Server? |
| 20:32 |
mr_daniel |
I try to include a nested list into a page which has the following structure: http://rafb.net/p/J4Ewlq37.html |
| 20:32 |
mr_daniel |
unfortunately typo3 is converting the '<' and '>' of the inner <dl>-List into < and gt&; characters |
| 20:33 |
mr_daniel |
why? which component of typo3 is responsible for this? How can I deactivate this undesired behavior? |
| 20:38 |
mr_daniel |
in my navigation every page title is printed in UPPERCASE, but I want to titles to be print in normal Case (just the first letter is uppercase), how and where can I chane this? |
| 21:13 |
ndee |
hey there, does anyone have his company email running on google apps? |
| 21:14 |
Houmark |
i do |
| 21:14 |
ndee |
did you have some privacy concerns or something? |
| 21:15 |
Houmark |
i converted from a hosted exchange setup, so i took the paid plan with possibility of migrating... |
| 21:15 |
ndee |
I'm just wondering how much sense it makes to run an on email server, etc., if you can just use something like google apps |
| 21:15 |
Houmark |
no, not at all, the service is as said a paid service and i feel my data is safe and secure |
| 21:16 |
ndee |
uptime is good too I guess |
| 21:16 |
Houmark |
i have had no problems at all, they had a downtime once or twice, but less than any other hoster over the same time |
| 21:16 |
Houmark |
and they did send a sorry mail and extended the period accordingly |
| 21:16 |
Houmark |
the migration tool was awesome |
| 21:17 |
Houmark |
one account had 50k+ mails on many folders and even though it took about 24 hours to migrate the mails |
| 21:17 |
Houmark |
it went super smooth and easier than it feared.... or hoped... |
| 21:18 |
ndee |
that's good to hear :) |
| 21:18 |
ndee |
how many accounts do you have there? |
| 21:18 |
Houmark |
spam processing is superb, filtering of mails is smooth |
| 21:18 |
ndee |
yes, IF someone can filter spam, I'm sure it's google :) |
| 21:18 |
Houmark |
i cannot tell, but enough to make a decent evaluation |
| 21:19 |
Houmark |
i have other partners and clients using it, no problems... |
| 21:19 |
ndee |
sweet. So I think I will move over to google too, I just hope they "don't do evil" with my stuff ;) |
| 21:20 |
Houmark |
they wont |
| 21:20 |
Houmark |
its a part of their company policy |
| 21:20 |
Houmark |
to not be evil |
| 21:20 |
ndee |
let's hope so it stays that way :D |
| 21:20 |
Houmark |
if you have many emails on the exisiting server think about the migration tool, that was what made me do the decision |
| 21:20 |
Houmark |
otherwise you can move again :) |
| 21:22 |
ndee |
does only the apps professional give you the chance to migrate the emails? |
| 21:23 |
ndee |
do you use the standard or the professional version? |
| 21:24 |
tomsdale |
haha - the calculator fails horribly for a 2 people business though :-) |
| 21:24 |
Houmark |
i think the migration tool is only for the premium use |
| 21:24 |
tomsdale |
has anyone of you tried kolab yet? |
| 21:24 |
Houmark |
that was how it was back then, more than 2 years ago |
| 21:25 |
ndee |
Houmark: ok. |
| 21:28 |
mr_daniel |
I have deactivated the htmlarea RTF editor in my typo3 installation, but despite this I have still problems with including content into typo3 |
| 21:28 |
mr_daniel |
for example |
| 21:29 |
mr_daniel |
in html a <br /> is responsible to insert a new line, but even when I just hit ENTER in the text field, some component in typo3 interprets this as a newline and generates a new line |
| 21:29 |
mr_daniel |
BUT THIS IS A WRONG BEHAVIOR!!! |
| 21:29 |
mr_daniel |
I want typo3 to JUST interpret the HTML I give him, and nothing more |
| 21:29 |
Houmark |
elaborate |
| 21:30 |
mr_daniel |
I also have problems that typo3 is converting '<' and '>' into < and > |
| 21:30 |
Houmark |
ENTER will mean new paragraph in HTMLArea |
| 21:30 |
mr_daniel |
which component or tool is responsible in typo3 for a such behavior? |
| 21:30 |
mr_daniel |
I have deactivated htmlarea |
| 21:30 |
Houmark |
SHIFT and ENTER will produce only <br /> |
| 21:30 |
Houmark |
oh, that i dont know much about |
| 21:30 |
Houmark |
since none of my clients like html editing |
| 21:31 |
mr_daniel |
this is a weird beahvior, is maybe templavoila the resaon for this strange behavior? |
| 21:31 |
Houmark |
no clue |
| 21:31 |
mr_daniel |
I also do not HTML editing |
| 21:31 |
Houmark |
i you have no RTE, how do you create a bold text? or a link? |
| 21:31 |
mr_daniel |
but I need to, because htmlarea screws my code, for example a nested list: <ul><li><dl>...</dl></li></ul> |
| 21:31 |
mr_daniel |
well, insert <strong> or <em> |
| 21:32 |
mr_daniel |
I am my own client |
| 21:32 |
Houmark |
he he |
| 21:32 |
Houmark |
that was my initial reply |
| 21:32 |
Houmark |
i wont be able to help you then, since the way you do it, is different from how i do it |
| 21:32 |
mr_daniel |
ok, I guess I need to ask this in the developer mailing list |
| 21:33 |
mr_daniel |
thanks anyway :) |
| 21:33 |
Houmark |
nope |
| 21:33 |
Houmark |
in the english mailinglist |
| 21:33 |
mr_daniel |
ok |
| 21:33 |
Houmark |
developer is for development of extensions and the core |
| 21:33 |
Houmark |
the english is for questions like this, but try to read more documentation... |
| 21:37 |
tomsdale |
mr_daniel, I think your problem is the standart transformation in typo3. I think there is a lengthly document regarding that in the doc pool |
| 21:38 |
mr_daniel |
execelent! |
| 21:38 |
tomsdale |
you like long documents ? |
| 21:38 |
Houmark |
so do i think, but i dont remember where :) |
| 21:39 |
Houmark |
but look around and see if it doesnt bring you back on track... good luck ;) |
| 21:39 |
tomsdale |
http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.1.0/view/5/2/ |
| 21:39 |
mr_daniel |
do you remember the document tomsdale ? could it be one of the core documentation documents? http://typo3.org/documentation/document-library/core-documentation/ |
| 21:40 |
mr_daniel |
nice, thank you for the direct link tomsdale :) |
| 21:40 |
tomsdale |
check the link I pasted below - the process is called transformation so you find plenty regarding this on google - that was the first lnk |
| 21:40 |
tomsdale |
ur welcome |
| 21:41 |
tomsdale |
of reading war and peace now since I find the length of the Typo3 documentation not sufficient :-) |
| 23:34 |
maltisch |
ddd |