| 07:04 |
xsebi |
mornin |
| 08:02 |
conic |
does someone know the problem that his entire site is displayed twice? |
| 08:03 |
conic |
my entire site is dispayed multiple times, and everytime i expand and collapse the site there is one more copy |
| 08:04 |
conic |
but all of them are completely identic, all id's etc... |
| 08:04 |
conic |
and when i delete one of them then everything is deleted |
| 08:05 |
conic |
this is very disturbing |
| 08:26 |
davidbrunnthaler |
good morning, how can i compare another column with RECORDS than the uid-column? |
| 09:03 |
HelioShelle |
hello |
| 09:04 |
HelioShelle |
anyone here have some experience setting up RealURL? |
| 09:04 |
HelioShelle |
(i am having a small problem trying to get it to work) |
| 09:34 |
Dynamike |
hi @ all |
| 09:45 |
xN33D |
morning everyone |
| 09:46 |
mikhas |
morning |
| 09:46 |
teppi|work |
hi |
| 09:46 |
mikhas |
HelioShelle: probably half of us have experience in RealURL. :) |
| 09:46 |
mikhas |
HelioShelle: you followed the manual and didn't get it to work? |
| 09:53 |
davidbrunnthaler |
is there a way to load a pic, depending on what's in the db? |
| 09:56 |
pmk65 |
davidbrunnthaler: yes, but you got to be more specific. Is it something you want to do from PHP or TS? |
| 09:56 |
davidbrunnthaler |
ok. i'm currently in the template setup field |
| 09:57 |
pmk65 |
so you want to display a pic in the FE, if some field in BE has been set? |
| 09:57 |
davidbrunnthaler |
jup |
| 09:57 |
pmk65 |
what BE field? |
| 09:57 |
davidbrunnthaler |
if you give me a second i show you the setup code |
| 09:58 |
davidbrunnthaler |
http://paste.phlogi.net/-59e5186b98/ |
| 09:58 |
davidbrunnthaler |
i'm working with CONTENT here |
| 09:59 |
davidbrunnthaler |
and i want make a simple switch case or something like this |
| 10:02 |
pmk65 |
is it the 20 part of renderObj you want to have displayed, depending on if another field is set or not? |
| 10:03 |
davidbrunnthaler |
mhm. it's the 20part of the renderObj. the db-field contains a number from 0-5 |
| 10:03 |
davidbrunnthaler |
and depending on that i want to display "sterneX.gif" (X stands for the db-field) |
| 10:04 |
pmk65 |
ok. then you can do it the easy way, by just including the number in the filename.. |
| 10:05 |
davidbrunnthaler |
but how? :) |
| 10:05 |
pmk65 |
-> http://www.phlogi.net/t3/tspastebin/ |
| 10:06 |
davidbrunnthaler |
mh that's an empty paste |
| 10:06 |
pmk65 |
then change YOURFIELD into the name of the field you are using. |
| 10:06 |
davidbrunnthaler |
(you probably copied the wrong url) |
| 10:07 |
pmk65 |
sorry, I just copied the url in from the browser.. The correct one should be this: - > http://paste.phlogi.net/-75a62bba6d/ |
| 10:08 |
davidbrunnthaler |
thx pmk65 |
| 10:08 |
davidbrunnthaler |
it worked |
| 10:08 |
davidbrunnthaler |
:) |
| 10:10 |
pmk65 |
I just used the exact same method for an extension yesterday. |
| 10:10 |
davidbrunnthaler |
mh and a second question: http://paste.phlogi.net/-04e05b30a0/ |
| 10:11 |
davidbrunnthaler |
is there a better way than " " |
| 10:12 |
davidbrunnthaler |
i want to give out something like "street 5, 50201 vienna" |
| 10:13 |
chefan |
i doubt that there is a good replacement for a non breaking space |
| 10:13 |
chefan |
at least i can think of none that makes sense |
| 10:13 |
pmk65 |
you can use "noTrimWrap" if you don't to use , but it's a bit trickier to use. |
| 10:13 |
chefan |
you don't want that to wrap, right? |
| 10:14 |
davidbrunnthaler |
is there another way to show 3 fields in a row? |
| 10:14 |
pmk65 |
chefan: the problem is that TYPO3's wrap commands filters out leading /trailing linefeed, tabs and spaces. |
| 10:14 |
davidbrunnthaler |
than to create a COA and put 3 TEXTs in it |
| 10:14 |
chefan |
pmk65: the nonbreaking kind as well? |
| 10:15 |
pmk65 |
davidbrunnthaler: Use "dataWrap" or "insertData". That way you can have as many fields as you want. |
| 10:15 |
pmk65 |
chefan: no, but sometimes you want a breaking space inserted, specially in form labels. |
| 10:17 |
davidbrunnthaler |
ok i will have a look |
| 10:17 |
davidbrunnthaler |
thx |
| 10:17 |
chefan |
hmm, maybe, i never wanted that up to now. I see it a bit the zen way. all the code aims just for outputting html. and html thinks 's are ok :) |
| 10:17 |
pmk65 |
davidbrunnthaler: 10.dataWrap = {field:Anschrift}, {field:PLZ} {field:Ort} |
| 10:17 |
davidbrunnthaler |
instead of the whole COA? |
| 10:19 |
davidbrunnthaler |
oh yeah.. it's working |
| 10:19 |
davidbrunnthaler |
thanks guys |
| 10:19 |
pmk65 |
chefan: It's a real problem if you try including inline javascript using typoscript, as the filtering of linefeeds prevents you from adding JS comment tags to make the code valid XHTML. (I spend a couple hours yesterday, trying to get that to work.) |
| 10:20 |
chefan |
the obvious solution would be to just not wrap it :) |
| 10:20 |
chefan |
but that's a classic for a lot of cms's |
| 10:20 |
chefan |
they don't just do what you want |
| 10:21 |
chefan |
but a hell lot more, and not everything is obvious |
| 10:21 |
pmk65 |
All inline Javascript must be wrapped like this, in order for it to be XHTML valid. -> http://javascript.about.com/library/blxhtml.htm |
| 10:21 |
chefan |
i do remember though that the way in which the rendering cleans up the output can be tweaked in the configuration |
| 10:21 |
pmk65 |
(if the page is XHTML strict) |
| 10:23 |
chefan |
yip. i know. i just hadn't thought about what typo3 does there while wrapping |
| 10:24 |
chefan |
i don't use so much inline js anyway if i can avoid it |
| 10:26 |
pmk65 |
me neither, but sometimes you need it for setting some config values, which you can't have in the main JS file. My Slimbox extension has the main JS in external files, but I still have to create a small inline JS to set the options and activate the script. |
| 10:31 |
SebastianB |
mikhas: I found a very nice tutorial online and now everything is perfect |
| 10:31 |
mikhas |
HelioShelle: nice. :;) |
| 10:32 |
HelioShelle |
mikhas: http://typo3bloke.net/post-details/realurl_made_easy_part_1/ |
| 10:32 |
HelioShelle |
in case you are interested |
| 10:35 |
mikhas |
thanks, but I've used reaurl quite a lot. :) |
| 10:43 |
bayer |
hi there - how can i access $conf from within cli extensions? |
| 10:47 |
bayer |
i would like to access the configuration from ext_typoscript_setup.txt |
| 10:47 |
bayer |
anyone? |
| 10:48 |
tf |
hi. i have a question about tt_news. when i use the marker ###NEWS_AUTHOR###, the output is: "By: name". Now i want to delete the "By:". How can i do that? |
| 10:50 |
chefan |
grep -rH By: in the extension directory might help |
| 10:53 |
bayer |
can i parse the ext_typoscript_setup.txt by hand? |
| 10:53 |
tf |
chefan: i dont think so. Because its in german. "Von:". there must be a variable. |
| 10:54 |
chefan |
yes |
| 10:54 |
chefan |
and extensions have configuration files to replace the language specific parts |
| 10:55 |
tf |
ah ok. i know what u mean. |
| 10:55 |
chefan |
so starting from there, you can look for the part where this is used |
| 10:56 |
chefan |
another option would be too grep for NEWS_AUTHOR in the source code, to check where the token is replaced |
| 11:17 |
davidbrunnthaler |
mh i have a db-table which looks something like this: http://phpfi.com/336460 |
| 11:18 |
davidbrunnthaler |
now i want to output only the "1" and substitute them with a certain value each |
| 11:18 |
davidbrunnthaler |
how do i do this in the template setup field? |
| 11:54 |
youam |
when i want to get the uid of an translated element with some_TEXT_object.field = uid , i don't get the uid of the translated / rendered object but of the element in the default language. how can i get the actually rendered elements uid? |
| 11:58 |
Denyerec |
how hard is it to make a plugin that doesn't support frontend localisation support frontend localisation? |
| 12:05 |
crisb2010 |
hi there |
| 12:06 |
crisb2010 |
short question guys: if i use the text w/image and i insert more than one picture, can i use a caption for each of them? right now it seems, that the caption only works for the first image |
| 12:08 |
basic_typo3 |
Hi everybody |
| 12:09 |
basic_typo3 |
pls help me to config RealURL |
| 12:10 |
basic_typo3 |
config.simulateStaticDocuments = 0 |
| 12:10 |
basic_typo3 |
[globalString = IENV:HTTP_HOST = secude-consulting.in] |
| 12:10 |
basic_typo3 |
config.baseURL = http://secude-consulting.in/ |
| 12:10 |
basic_typo3 |
config.sys_language_uid = 5 |
| 12:10 |
basic_typo3 |
config.language = in |
| 12:11 |
crisb2010 |
use pastie |
| 12:11 |
crisb2010 |
or somethink |
| 12:11 |
crisb2010 |
something |
| 12:11 |
crisb2010 |
pastie.org |
| 12:12 |
Denyerec |
crisb2010 - one newline per caption |
| 12:12 |
Denyerec |
should work fine thern. |
| 12:13 |
crisb2010 |
Denyerec: that would be great. im gonna give it a try |
| 12:13 |
crisb2010 |
works like a charm. could have figured this out by myself ;) |
| 12:32 |
Ruudi |
hello |
| 12:33 |
Ruudi |
any one got idea what would be best way to resolve a situation where i need a preset content a grid where one has to fill in certain things? something like html table with preset column headers |
| 12:39 |
crisb2010 |
does someone know if sr_feuser_register supports something like if-statements in the html template? i took a look at the manual, but there is nothing about this |
| 12:40 |
RoyalKnight |
Ruudi: depends on your problem - maybe with templavoila |
| 12:41 |
RoyalKnight |
crisb2010: i think this is not possible |
| 12:41 |
crisb2010 |
too bad. i wanted to set a default user image |
| 12:41 |
Ruudi |
RoyalKnight I was thinking about templavoila as well, i need it displayed once on page and need to show the grid that includes information, some of those fields must be links |
| 12:44 |
crisb2010 |
RoyalKnight: mailformplus is capable of this statements ... thats why i was asking |
| 12:48 |
RoyalKnight |
Ruudi: if your grid elements are content elments you can use links too |
| 12:48 |
crisb2010 |
would be great if someone has an idea on how to solve that problem besides using js and the dom |
| 12:48 |
RoyalKnight |
crisb2010: maybe you can solve your problem using typoscript |
| 12:49 |
RoyalKnight |
crisb2010: but i'm not sure about that |
| 12:49 |
Ruudi |
RoyalKnight thnx I think I will just make a templavoila mapping for a certain subpages then |
| 12:55 |
crisb2010 |
RoyalKnight seems like there is nothin helpful in the manual ... |
| 12:57 |
Ruudi |
anyone got two level chained select menu done with javascript and TS? |
| 13:55 |
conic |
i try to run tt_news, but it doesnt display the news (but the categories are shown, in the Cat. overview) it alway says "there are no news in this view |
| 13:55 |
conic |
i use the list module, is tht right? |
| 13:56 |
conic |
i mean in the news plugin i select "list" to display the news |
| 14:06 |
ries |
. |
| 14:19 |
matracus |
hi |
| 14:19 |
matracus |
:) |
| 14:20 |
matracus |
nobody there? |
| 14:21 |
conic |
ok i got it... wront settings... |
| 15:27 |
snoy_ms |
I want to test free podcast software for my first typo3 podcast. Anyone knows a good one? |
| 15:38 |
raistlin_ |
On dirait que mon input de loggin n'est pas linker à mon storage folder "User". J'essai tout dabord de créer des users manuellement |
| 15:38 |
raistlin_ |
J'ai donc un user : test |
| 15:38 |
raistlin_ |
password : test |
| 15:38 |
raistlin_ |
groupe: test |
| 15:38 |
raistlin_ |
Je met dans mon plugin macmade starting point le storage folder "User". |
| 15:38 |
raistlin_ |
Quel serait mon erreur? |
| 15:38 |
davidbrunnthaler |
mh please write in english |
| 15:44 |
raistlin_ |
It seems that my output loggin macmade doesn't work with my storage folder "User". I tryed to create my user manually. user: test password: test group: test. I put in my plugin macmade "starting point": the storage folder "User". What's wrong in my config?! |
| 16:13 |
raistlin_ |
It seems that my output loggin macmade doesn't work with my storage folder "User". I tryed to create my user manually. user: test password: test group: test. I put in my plugin macmade "starting point": the storage folder "User". What's wrong in my config?! |
| 16:29 |
RoyalKnight_ |
raistlin_: i don't understand what you want in detail, but if you want a storage folder for every user, you have to set an option in localconf.php (install tool) |
| 16:43 |
raistlin_ |
in short i just want the procedure to make a work a standard login with a storage folder with more than 1 user. |
| 16:46 |
raistlin_ |
*to make work |
| 16:46 |
mfarajmandi |
hey guys ... I very new to typo3, just have a general question before dive deeper in it ... |
| 16:48 |
Stoffel |
Don't ask to ask, just ask |
| 16:48 |
mfarajmandi |
lool .. I am looking for a cms system that provides support for multiple languages ... |
| 16:49 |
Stoffel |
[x] check |
| 16:49 |
Phlogi_ |
mfarajmandi: yes its supported :) |
| 16:49 |
mfarajmandi |
not really looking for fancy interface .. just the ease of use, and system that support this in it's backend would do the job for me ... |
| 16:51 |
mfarajmandi |
nice any hint links to where find more info on this support ... |
| 16:52 |
Phlogi_ |
mfarajmandi: the backend does the job of course, and quite well |
| 16:52 |
Phlogi_ |
mfarajmandi: http://typo3.org/about/new-to-typo3/ |
| 16:53 |
mfarajmandi |
thx .. phlogi ... guess I shall come back with more specific question ... |
| 16:53 |
Phlogi_ |
yes don't hestitate to just ask |
| 17:27 |
ckoehler |
any core guys on? |
| 17:45 |
bayer |
is there a way to access instatiate pi_base in a typo3 cli script? |
| 17:46 |
ckoehler |
why do you want pibase? |
| 17:46 |
bayer |
in order to call pi_getpagelink |
| 17:47 |
ckoehler |
use a cObj |
| 17:47 |
ckoehler |
and the typolink method |
| 17:47 |
ckoehler |
or something similar |
| 17:47 |
ckoehler |
check out the reference for cobj |
| 17:47 |
bayer |
typolink method? |
| 17:47 |
bayer |
so instatiating cobj is no problem in cli mode? |
| 17:47 |
ckoehler |
of course not |
| 17:47 |
ckoehler |
you may already have one |
| 17:47 |
ckoehler |
not sure on that though |
| 17:50 |
bayer |
i read somewhere that you dont have access to the tslib libraries at all from within a cli script |
| 17:50 |
ckoehler |
just try it |
| 17:50 |
bayer |
i did |
| 17:51 |
bayer |
i think PATH_tslib isnt defined |
| 17:51 |
bayer |
while PATH_t3lib is |
| 17:52 |
ckoehler |
define it |
| 17:52 |
ckoehler |
you know the typo3 path |
| 17:53 |
RoyalKnight_ |
bayer: PATH_tslib is just a constant which you can define at your own too, but i think there a to much dependencies |
| 17:59 |
crak |
hi all |
| 18:01 |
crak |
can anyone help me with realurl? i have a hmenu as a default navigation put into a site called 'hauptmenue'. i don't want the links look like hauptmenue/guestbook.html. it should only the pagetitle 'guestbook.html' be shown |
| 18:02 |
crak |
is this hard to change? |
| 18:06 |
bayer |
ckoehler, do i need to initialize something in order to use the typolink functions? |
| 18:06 |
bayer |
except for the cobj of course |
| 18:07 |
ckoehler |
don't think so |
| 18:08 |
bayer |
because after $cObj = new tslib_cObj(); -> there is no $cObj->getTypoLink_URL() |
| 18:09 |
ckoehler |
check out makeInstance |
| 18:09 |
ckoehler |
in t3lib_div |
| 18:12 |
ckoehler |
t3lib_div::makeInstance('tslib_cObj'); |
| 18:12 |
ckoehler |
and also look at cObj->start() |
| 18:13 |
crak |
no one who could help me? |
| 18:14 |
Tsoots |
crak, just use hide in menu in the hauptmenue's page properties |
| 18:15 |
Tsoots |
you'll need to clear caches after that |
| 18:15 |
Tsoots |
realurl's too |
| 18:15 |
Tsoots |
if it's not hide in menu it's the page type not in menu |
| 18:15 |
Tsoots |
not sure what's the difference with these two |
| 18:15 |
crak |
mom |
| 18:16 |
bayer |
ckoehler, calling start() is tricky, cause i dont have content .... |
| 18:16 |
bayer |
i only need the typolink functions |
| 18:17 |
ckoehler |
pass in null |
| 18:18 |
crak |
Tsoots: well what kind of page should the 'haupmenue'-page be? |
| 18:18 |
Tsoots |
if it doesn't matter for you use "not in menu" |
| 18:19 |
crak |
Tsoots: yes, that is the way i did it |
| 18:20 |
crak |
Tsoots: but the link is still with 'hauptmenue/'... |
| 18:20 |
Tsoots |
did you clear the realurl's cache and all other caches too? |
| 18:21 |
Tsoots |
if it still is check the "hide in menu" in the page properties too |
| 18:23 |
jopk |
hi |
| 18:24 |
crak |
Tsoots: the tx_realurl_* db-tables are all empty |
| 18:25 |
Tsoots |
i don't know anything more |
| 18:25 |
Tsoots |
that's how i got it working |
| 18:25 |
crak |
ok |
| 18:25 |
crak |
thanks anyway |
| 18:25 |
Tsoots |
looks like im using the "Hide in menu" property |
| 18:26 |
crak |
Tsoots: i though that it would be possible to set it in the localconf.php via $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT']... |
| 18:27 |
jopk |
I added this line to my root-htaccess:php_value include_path "/is/htdocs/wp1107779_5JMIZCQ7EO/www/_pear/PEAR/" now i get 4 warnings in backend. concerning some includments of php files |
| 18:27 |
crak |
Tsoots: i use the hide-prop too |
| 18:27 |
Tsoots |
crak, probably is but i'm not at that level yet with my typo3 skills |
| 18:27 |
Tsoots |
i used some realurl autoconfiguration extension |
| 18:28 |
crak |
one day u will :) |
| 18:28 |
Tsoots |
lazy me |
| 18:28 |
crak |
this is ok |
| 18:30 |
bayer |
ckoehler, i think something is missing, because i get a "call to a member function on a non-object" error in tslib_content.php |
| 18:31 |
bayer |
while calling the gettypolink_url |
| 18:34 |
jopk |
I added a line (1) to my root htaccess and now I get 4 warnings in the backend (2) > http://nopaste.de/p/aSvaL0Pwg Any ideas why? |
| 18:39 |
jopk |
no ideas? |
| 18:51 |
ckoehler |
bayer: then you don't have an object :) |
| 18:51 |
ckoehler |
probably because you forgot to include the class |
| 18:51 |
ckoehler |
require(path) |
| 18:57 |
jopk |
I added a line (1) to my root htaccess and now I get 4 warnings in the backend (2) > http://nopaste.de/p/aSvaL0Pwg Any ideas why? |
| 18:58 |
Tsoots |
do those files exist and do they have proper access rights |
| 18:59 |
jopk |
I think so, because without this line in the htaccess file it works well |
| 18:59 |
Tsoots |
hmm i guess 'think so' is enough |
| 19:00 |
Tsoots |
i'm out of ideas |
| 19:05 |
jopk |
ok, thx, found a solution |
| 19:38 |
HelioShelle |
hello |
| 19:38 |
HelioShelle |
i was wondering if its possible to creat an HTML login box (as a Typo3 element) that is used the same way as the standard Typo3 login box |
| 19:39 |
HelioShelle |
my goal here is to simply change the appearance of the login box |
| 19:53 |
HelioShelle |
...from what i read, some of the functionality previously provided by plugins is now in the typo3 core |
| 19:53 |
HelioShelle |
but i cant find anything about fe user anywhere... |
| 19:55 |
ckoehler |
felogin is the extension |
| 19:55 |
ckoehler |
it replace the Loginform CE |
| 19:56 |
HelioShelle |
do i have to turn it on in the ext manager? |
| 19:56 |
ckoehler |
hm maybe |
| 19:56 |
ckoehler |
it's a sysext, so it may already be installed |
| 19:57 |
HelioShelle |
where would i normally access it from (its not in the ext manager for sure...) |
| 19:57 |
HelioShelle |
? |
| 19:57 |
ckoehler |
it should be as part of 4.1 i think |
| 19:57 |
ckoehler |
make sure you're looking at all extensions, not just the loaded ones |
| 19:58 |
ckoehler |
anyway, once you have that installed, the "Login form" CE should be new |
| 19:58 |
HelioShelle |
yes, you were right |
| 19:58 |
ckoehler |
and you can set a bunch of new options, including a template file |
| 19:58 |
HelioShelle |
i only had loaded extensions up |
| 19:58 |
HelioShelle |
wow, template file is very nice |
| 19:58 |
ckoehler |
yep |
| 19:58 |
ckoehler |
knock yourself out |
| 20:00 |
HelioShelle |
wow, i already see the changes...its beutiful ;) |
| 20:26 |
just2b |
anyone who is interested in Magento should read this and answer in mailinglist > http://support.typo3.org/general/dev/m/typo3-dev-magento-to-typo3-355731/p/234/ |
| 20:39 |
conic |
is the one not to import from tt_products but to integrate magento in t3? |
| 21:24 |
mcbass |
hello |
| 21:25 |
mcbass |
anyone here ? |
| 21:26 |
just2b |
guess so |
| 21:26 |
mcbass |
hi there,... I am looking for some typo3 help |
| 21:26 |
mcbass |
anyone played with tt_rating ? |
| 21:27 |
just2b |
use ratings, tt_rating is far too old for everything |
| 21:27 |
just2b |
i guess you are asking "oh i want it on every page" ;) |
| 21:27 |
mcbass |
well looks like I am not the only one,..... |
| 21:27 |
just2b |
you are.. ;) |
| 21:28 |
peyrol |
hello |
| 21:28 |
mcbass |
well, i have ONE big problem with ratings, though,.... php 5 |
| 21:28 |
mcbass |
i really do not want to touch that webserver |
| 21:29 |
mcbass |
hi peyrol |
| 21:29 |
mcbass |
looks like a no go for that project |
| 21:29 |
mcbass |
another TS question,.. |
| 21:30 |
just2b |
ok that is of course not good ^^ |
| 21:30 |
peyrol |
i'm looking some help. I'm doing trivial bug but i don't know where. I won't to make pages only for logged users but it dosn't work :/ user should be logged after giving his password but nothing happens :/ |
| 21:30 |
just2b |
nothing happens means ^^ |
| 21:31 |
peyrol |
i created sysfolder users in my website tree and from LIST view add one website users group and add then user.. i test it with mm_forum.. lot's of option i had checked but i could find nothing |
| 21:32 |
just2b |
use the ext newloginbox |
| 21:32 |
just2b |
add the folder to the page properties and it should work |
| 21:33 |
peyrol |
i check this even this new box |
| 21:34 |
mcbass |
.. i try to put a link for the tip-a-friend ext on my page, works good by just writing the whole thing like : wrap =<a href="index.php?id14">tip a friend</a> 1 = TEXT 1.data = TSFE:id 1.wrap = &tipUrl=http://www.mydomain.com/index.php?id=| |
| 21:34 |
peyrol |
probably it's my mistake but i don't really where i make this |
| 21:34 |
mcbass |
how can I replace the http://www.mydomain.com automatically with the startdomain with TS |
| 21:35 |
just2b |
use a COA or so and get the domain from TYPO3, e.g. the baseURL or so |
| 21:35 |
peyrol |
what do you mean by ' add the folder to the page properties' just2b ? |
| 21:36 |
peyrol |
it's there is that not enought? |
| 21:36 |
peyrol |
enough |
| 21:38 |
just2b |
no it is not, but should all be described in manual |
| 21:38 |
just2b |
field is called "General Record Storage page:" |
| 21:39 |
ckoehler |
peyrol: don't use newloginbox, unless you're running an old TYPO3 version |
| 21:39 |
ckoehler |
since 4.1 you get felogin |
| 21:39 |
ckoehler |
it's a sysext |
| 21:39 |
mcbass |
you can also use this : styles.content.loginform.pid = 12 and add it to your template constants |
| 21:39 |
ckoehler |
install it |
| 21:40 |
ckoehler |
add the "login form" content element |
| 21:40 |
ckoehler |
and configure it |
| 21:40 |
ckoehler |
make sure you don't have any other fe_user extensions installed, those may conflict |
| 21:40 |
ckoehler |
feuser_list or something i think |
| 21:40 |
ckoehler |
or feuser_admin |
| 21:40 |
ckoehler |
something like that |
| 21:43 |
just2b |
ckoheler, he doesnt want php5, so he cant be at 4.2, so newloginmbox is fine |
| 21:44 |
peyrol |
ckoehler: thank you i'm just in the middle of fight with this |
| 21:44 |
ckoehler |
well then i can't help him... |
| 21:44 |
HelioShelle |
hi again |
| 21:44 |
ckoehler |
:) |
| 21:44 |
peyrol |
:) |
| 21:44 |
mcbass |
ok, my attempt to build up that url string with TS using TSFE : baseURL failed |
| 21:45 |
HelioShelle |
anzyone know where i can find a tutorial on how to make a template for the new fe user extension? |
| 21:45 |
HelioShelle |
(the login box, specifically) |
| 21:45 |
ckoehler |
HelioShelle: take the default one and change it |
| 21:45 |
HelioShelle |
ok, perfect! |
| 21:45 |
HelioShelle |
didnt even think of thar |
| 21:45 |
ckoehler |
typo3/sysext/felogin/template.html |
| 21:45 |
HelioShelle |
*that |
| 21:46 |
HelioShelle |
ya...thats what i was going to ask next |
| 21:46 |
HelioShelle |
:) |
| 21:50 |
mcbass |
anyone know how to build up a link in TS with TSFE : baseURL |
| 22:10 |
XiXora |
mark? |
| 22:11 |
Denyerec |
look out for porkpie |
| 22:12 |
XiXora |
ok |
| 22:12 |
XiXora |
i was in a powercut :( |
| 22:12 |
XiXora |
it made me vacuum tho |
| 22:12 |
XiXora |
and clean |
| 22:12 |
Denyerec |
he can't get in |
| 22:12 |
Denyerec |
how can you vaccum in a powercut ? |
| 22:13 |
XiXora |
my net was cut off too |
| 22:13 |
XiXora |
it came back on |
| 22:13 |
XiXora |
but no net |
| 22:15 |
XiXora |
emailed back now anyway |
| 22:16 |
mcbass |
need some help with TSFE : baseURL |
| 22:18 |
mcbass |
1 = TEXT 1.wrap = &tipUrl=| 2 = COA 2.data = TSFE : baseURL 2.wrap = | 3 = TEXT 3.data = TSFE : id 3.wrap = index.php?id=| |
| 22:19 |
peyrol |
http://typo3.org/documentation/document-library/tutorials/doc_tut_quickstart/0.1.0/view/1/5/#id3973116 |
| 22:20 |
peyrol |
if I want to put login form on which page o should put info about folder users General Record Storage page ? |
| 22:21 |
mcbass |
==> it says on this page, you just posted : A login form in place (please see the Template section on constants for important information on configuring the storage page id for the login form) |
| 22:22 |
mcbass |
means you need to tell the form where to find the user data |
| 22:23 |
mcbass |
i assume you added some user groups and users to that General Record Storage page |
| 22:24 |
peyrol |
yes |
| 22:24 |
mcbass |
what is the ID of that page ? |
| 22:26 |
peyrol |
3 |
| 22:27 |
mcbass |
ok, now open your template and open the constants view for the template |
| 22:27 |
peyrol |
and in the edit page properties in root page it's chosen in General Record Storage page |
| 22:28 |
peyrol |
mcbass: if i do this right i have no template :) |
| 22:28 |
mcbass |
you need a general site template ?! |
| 22:29 |
mcbass |
in the left menu, you have the menu option templeate, go there, and then hit the top item in the tree list, then it will tell you about your templates |
| 22:30 |
peyrol |
ok |
| 22:30 |
peyrol |
done |
| 22:30 |
mcbass |
what you see now ? |
| 22:31 |
peyrol |
my template Edit constants for template for example |
| 22:32 |
peyrol |
or there is one more step over with earth |
| 22:32 |
peyrol |
then I see |
| 22:32 |
mcbass |
ok, in the constants view add this line : styles.content.loginform.pid = 3 |
| 22:32 |
peyrol |
Template tools: Page name # Templates Is Root? Is Ext? |
| 22:33 |
mcbass |
in this view, it should list you a template |
| 22:34 |
peyrol |
done |
| 22:35 |
mcbass |
which part ? |
| 22:36 |
peyrol |
ok |
| 22:36 |
peyrol |
i'm to old for this |
| 22:37 |
peyrol |
i'm tired. thank you all guys but i will go sleep. thanks again :) |
| 22:44 |
mcbass |
anyone still alove here ? |
| 23:17 |
Phlogi_ |
hmm wouldn't it be nice to have an extension that could update typo3 core? :) |
| 23:27 |
ckoehler |
or a shell script |
| 23:27 |
ckoehler |
wait, that would be too easy.. |
| 23:27 |
ckoehler |
sans the db updates of course... that would be something |
| 23:42 |
Schlimpitz |
hello |