| 00:00 |
dokma |
but some give up as soon as I mention installing xdebug |
| 00:00 |
dokma |
like this there is a prepackaged solution with means to try out TYPO3 plus an entire development environment |
| 00:02 |
ries |
dokma: Not bad for beginners I think... |
| 00:02 |
dokma |
I agree... just haven't checked the size of it yet. |
| 00:02 |
ries |
on the other end, begiibers need to know TS and stuff.... |
| 00:03 |
ries |
beginners |
| 00:03 |
dokma |
I think it's going to be close to 500MB |
| 00:03 |
dokma |
ries: working the debugger through the code helped me with TS tremendeously |
| 00:05 |
ries |
really?? With TS?? |
| 00:06 |
dokma |
sure! stepping through class.tslib_content.php I even discovered some undocumented properties |
| 00:07 |
ries |
interesting... I am not a TS guru though.... |
| 00:08 |
dokma |
me neither... this was just my way of coping with the steep learning curve |
| 08:01 |
ZaFantasy |
is possible to set in TCA that all images are saved as original and also resized ones ? So there would be two original+resized image |
| 08:24 |
gerards |
ZaFantasy: you mean have the resized image override the original? |
| 08:33 |
BejjWrk |
I have a marker, say ###MY_MARKER###, is there a way by typoscript I can replace this marker with text ? and if so, how ? Ive been looking at tsref and been googling like mad |
| 08:36 |
gerards |
wow.... that's a good question. :) |
| 08:37 |
sorenmalling |
BejjWrk: The TEMPLATE object? http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/8/26/ |
| 08:39 |
gerards |
sorenmalling: is there anyway to do it outside of the template obj? |
| 08:40 |
sorenmalling |
gerards: A userFunc |
| 08:40 |
BejjWrk |
sorenmalling: thats one of the methods I tried, doesnt work |
| 08:40 |
gerards |
yeah, thats my answer too sorenmalling |
| 08:40 |
sorenmalling |
BejjWrk: Define doesn't work.. The TEMPLATE object has been used before the times of templavoila, so it does work :) |
| 08:40 |
gerards |
BejjWrk: it depends if your TS object is a TEMPLATE object. If its not a TEMPLATE obj, of course it wouldn't work. |
| 08:41 |
BejjWrk |
maybe I should have stated that I do infact use tv |
| 08:41 |
BejjWrk |
hmm |
| 08:42 |
gerards |
if you use TV, assign a TS object to the TV Node, and just maniputlate the object in your TS code. |
| 08:45 |
BejjWrk |
umm |
| 08:45 |
BejjWrk |
thats where I get confused :) |
| 08:46 |
gerards |
:) no problem. I have some time. I can walk you through it. you're in TV in the Backend right? that's where you assign HTML elements to TV content elements right? |
| 08:47 |
gerards |
BejjWrk: let me know if the above doesn't make sense to you. |
| 08:47 |
kennyb |
Hi |
| 08:47 |
kennyb |
is there a page in the BE where i can get a list of which pages extensions are used on? |
| 08:48 |
kennyb |
i have alot of deprecated extensions i want to delete, but cant figure out if they are used a any pages |
| 08:48 |
BejjWrk |
gerards: Im in backend, in template (ts) yes, in my template I have a marker, and Im trying to replace it with a value |
| 08:48 |
gerards |
BejjWrk: you need to stop using the marker in the TV template. :) |
| 08:48 |
BejjWrk |
the marker shows up on the rendered page, untouched |
| 08:49 |
gerards |
BejjWrk: so instead of ###My_MARKER###, in your TV template, replace that with <div id="to_be_replaced"></div> |
| 08:49 |
gerards |
tell me when you've done that. :) |
| 08:49 |
BejjWrk |
oh I have no problems doing normal mapping in tv |
| 08:50 |
BejjWrk |
its another extension that has the marker in the template file, which I have no control over, so I assumed I could approach it with typoscript |
| 08:50 |
gerards |
ahhhh...... |
| 08:50 |
gerards |
:) |
| 08:51 |
gerards |
BejjWrk: usually, the extension will let you know how to replace the marker. read the extension's manual. |
| 08:51 |
gerards |
its the responsibility of the extension writer, not typo3, to replace the marker. BejjWrk so the extension's manual will tell you how to replace the marker. |
| 08:51 |
BejjWrk |
so its not possible to change the rendering of the output with ts ? |
| 08:51 |
gerards |
yes its possible, |
| 08:52 |
gerards |
but you need to read the extension's manual, and it should tell you how to replae the marker. |
| 08:52 |
gerards |
and yes BejjWrk, usually it can be done via TS. but its all in the extension manual. |
| 08:53 |
BejjWrk |
i need it to be done via ts, or I'll have to xclass the ext |
| 08:54 |
gerards |
like i said, it can probably be done via TS. :) but you need to read the documentation of the extension. please, read the manual first. we're here if you need us. BejjWrk |
| 08:55 |
BejjWrk |
I did read the manual, but its not a generic marker for the ext so |
| 08:55 |
gerards |
oh? |
| 08:55 |
BejjWrk |
this is hwat happens when you have to salvage someone elses projects :/ |
| 08:55 |
gerards |
so you created your own template, and added your marker to your own template? |
| 08:56 |
BejjWrk |
yes |
| 08:57 |
gerards |
:) |
| 08:57 |
gerards |
that's tough. |
| 08:57 |
gerards |
you'll probably need to write your own user function then. :) |
| 08:58 |
BejjWrk |
I guess its time I do that approach heh. |
| 08:59 |
BejjWrk |
thanks for your time though |
| 09:00 |
gerards |
:D yeah. there's a postuserfunction in stdwrap. see if you can use that. |
| 09:00 |
gerards |
please check the spelling of stdwrap and postuserfunction. I don't remember and I don't have tsref near me. |
| 09:01 |
gerards |
i think its userFunc |
| 09:01 |
gerards |
or postUserFunc |
| 09:08 |
xaver |
good morning ;) |
| 09:33 |
sorenmalling |
Morning |
| 09:33 |
maholtz|WORK |
morning:) |
| 09:38 |
silverline_jiten |
Hello All |
| 09:38 |
kotelette |
Good Morning! Could someone help me with the staticpub and crawler combination? I installed both but the crawler just fills the queue and if i start the process manually there's no output in the defined folder at all :-( |
| 09:39 |
silverline_jiten |
is anybody hv useed this extension "macina_searchbox"? |
| 09:40 |
sorenmalling |
silverline_jiten: Yes |
| 09:42 |
xaver |
silverline_jiten: yes |
| 09:42 |
tPl0ch |
markstory: ping |
| 09:43 |
maholtz|WORK |
@kotelette: is the folder writeable? |
| 09:44 |
kotelette |
yes i set it to 777 just to be sure... |
| 09:44 |
maholtz|WORK |
and afaik you have to define them as published via admin-tool(?) |
| 09:45 |
kotelette |
how can i do that? |
| 09:45 |
kotelette |
atm i just start the crawler with the staticpub configuration |
| 09:45 |
kotelette |
the crawler fills it's queue but does not start any process |
| 09:46 |
kotelette |
but i can start it manually in the backend |
| 09:47 |
kotelette |
but no files are created and the table tx_staticpub_pages stays empty :-( |
| 09:47 |
kotelette |
the process finished with message 'Process completed successfully' |
| 09:49 |
kraftb |
good morning ... |
| 09:50 |
maholtz|WORK |
morning kraftb:) |
| 09:51 |
kraftb |
morning Martin! |
| 09:51 |
kraftb |
also good morning everyone else! |
| 09:51 |
kotelette |
hi there :-) |
| 09:52 |
maholtz|WORK |
@kotelette: perhaps check for php errors? (didnt published static files with TYPO3) |
| 09:52 |
kotelette |
ok i'll activate errors |
| 09:57 |
kotelette |
ok, no php errors visible; the crawler fills it's queue again, i have to start the process manually (finishes with success) but no static files at all |
| 09:58 |
silverline_jiten |
Hello Xaver? |
| 09:59 |
silverline_jiten |
i want know somthing about these search extension |
| 10:00 |
silverline_jiten |
macina_searchbox, doc_indexed_search_4.2.1 |
| 10:01 |
xaver |
yes? and what |
| 10:01 |
silverline_jiten |
i hv installed these extension |
| 10:01 |
silverline_jiten |
on my local |
| 10:01 |
xaver |
ok |
| 10:01 |
silverline_jiten |
but when i trying to search |
| 10:02 |
silverline_jiten |
i don't get any result |
| 10:02 |
silverline_jiten |
my typo3 version is 4.2 |
| 10:02 |
xaver |
you need indexed_search too (you have the doc) |
| 10:02 |
silverline_jiten |
4.2.0 |
| 10:04 |
silverline_jiten |
yes for that i installed macina_searchbox |
| 10:05 |
zilla-ob |
how do you install extensions already donwload the powermail.t3x |
| 10:05 |
xaver |
silverline_jiten: http://www.phlogi.net/f/t3/tsp/sp/-c0fd7bf93d/ you need a ts config |
| 10:05 |
sorenmalling |
zilla-ob: Go to the "Ext. Manager" module in your backend, and choose the "Import extension" from the dropdown in the upper left corner. Browse to the file on your computer and click the submit button |
| 10:05 |
kotelette |
@zilla-ob you can upload it when using 'Import extensions' from the dropdown menu in extension manager |
| 10:06 |
zilla-ob |
am already logged in typo3 I see a tools in the left side of the menu but it only shows "Log" and "UrlTool" |
| 10:08 |
silverline_jiten |
ok |
| 10:08 |
sorenmalling |
zilla-ob: Are you logged in as the admin user? |
| 10:08 |
silverline_jiten |
one more thing |
| 10:08 |
silverline_jiten |
xaver |
| 10:08 |
zilla-ob |
sorenmalling : hmmmm i didn't see any admin tools.. i guess im not using the admin account |
| 10:09 |
xaver |
yes? |
| 10:09 |
silverline_jiten |
actually my requirement is to search a word or... from tt_news extension and as well as for attach document that may be pdf/doc |
| 10:10 |
silverline_jiten |
so can u plz guide me which extension should i use and how? |
| 10:10 |
xaver |
you can set it in indexed search or macina |
| 10:11 |
silverline_jiten |
i hv install both |
| 10:11 |
silverline_jiten |
which one? |
| 10:12 |
xaver |
if you go into indexed_search in loaded extans... |
| 10:12 |
silverline_jiten |
yes |
| 10:13 |
xaver |
klick the name... -> Path to WORD parser || Path to PDF parsers... |
| 10:13 |
xaver |
you need a software on your server or pc |
| 10:15 |
zilla-ob |
sorenmalling : many thanks man |
| 10:15 |
silverline_jiten |
can u tell me which one i m using ubuntu 9.0.4 |
| 10:18 |
xaver |
i have no idear ;) |
| 10:18 |
xaver |
sry |
| 10:19 |
sorenmalling |
silverline_jiten: In the extension configuration it says "path to SOMETHING". Try open a terminal in your ubuntu and write "which SOMETHING" change SOMETHING to the text fromthe configuration, and you will get the path to the program |
| 10:20 |
xaver |
/usr/bin/ is right but you need the programm ;) |
| 10:22 |
silverline_jiten |
ok thanks i m trying to findout those parser |
| 10:23 |
silverline_jiten |
plz stay in touch today |
| 10:23 |
xaver |
silverline_jiten: Indexing external files: Text formats like html and txt and doc, pdf by external programs (catdoc / pdftotext) |
| 10:24 |
xaver |
http://typo3.org/documentation/document-library/extension-manuals/doc_indexed_search/4.2.1/view/1/1/ |
| 10:24 |
xaver |
look in your package manager |
| 10:35 |
kotelette |
i wonder if the crawler has problems with runnning in a subdomain and in a subdirectory... (like dev) |
| 10:36 |
kotelette |
i set the logfile for the crawler and it says 'Warning: file_put_contents(sitecrawler.log): failed to open stream: Permission denied' even the dir is set to 775 and the group is set correctly |
| 10:36 |
silverline_jiten |
xaver: yes i m following this document |
| 10:37 |
silverline_jiten |
but there is some prob |
| 10:37 |
silverline_jiten |
i don't see the startingpoint in my extension |
| 10:37 |
silverline_jiten |
but without that i can see that plugin on my page |
| 10:39 |
chaser_ |
hi, has anyone done a navigation menu horizontally split into three columns? i've tried various typoscripts from web with no luck |
| 10:39 |
maholtz|WORK |
@kotelette: afaik there are some issues with suoshin patch, so you have to set 770 with correct user/group |
| 10:39 |
chaser_ |
i need to display the 4th level of the navigation tree in three separate columns |
| 10:41 |
maholtz|WORK |
@chaser_: cant you use floating li elements? if you define the width you can put them in an box with width*3 and be happy? |
| 10:41 |
kotelette |
770 makes the whole typo throwing permission denied errors ;-) |
| 10:41 |
howard |
hello people |
| 10:42 |
chaser_ |
maholtz|WORK: i actually thought about it but wasn't sure if it's possible |
| 10:42 |
chaser_ |
so basically it should look like this: |
| 10:42 |
chaser_ |
Item 1 | Item 4 | Item 7 |
| 10:42 |
chaser_ |
Item 2 | Item 5 | Item 8 |
| 10:42 |
chaser_ |
Item 3 | Item 6 | Item 9 |
| 10:42 |
maholtz|WORK |
ah, ok |
| 10:42 |
maholtz|WORK |
i dont think that it is possible with floating |
| 10:42 |
maholtz|WORK |
but i am not good in css/html |
| 10:43 |
howard |
does anybody know solution for this problem: Whenever I add new table to db, through kickstarter extension, my custom made fe plugins simply become overwritten with default typo3 class code????!!!! |
| 10:43 |
chaser_ |
i'm not sure either |
| 10:43 |
maholtz|WORK |
what happens if you have only 3 elements? what if you have 10? |
| 10:43 |
silverline_jiten |
hello xaver:? |
| 10:44 |
maholtz|WORK |
@howard: many ??? or !!! is like crying - did you read the message the kickstarter tells before overwriting (sth. like "this is an kickstarter, not an editor") |
| 10:44 |
chaser_ |
howard: you have to uncheck the modified file when saving the kickstarter modifications |
| 10:45 |
howard |
oh...ok...now It's clear |
| 10:46 |
chaser_ |
maholtz|WORK: yeah, that is yet to be solved... i suppose with 3 items, there should only be one column, with 10 items, first column 4, other two 3 |
| 10:47 |
maholtz|WORK |
@chaser_: before trying it with typoscript, do it with pseudocode - if you get it, you could paste it to pastebin, perhaps i can help you than |
| 10:49 |
chaser_ |
maholtz|WORK: well, doing it with say php wouldn't be a problem for me, but typoscript can be a pain in the ass :) |
| 10:51 |
chaser_ |
maholtz|WORK: i'm now actually thinking of doing it in php... i can create a custom function and bring it into typoscript |
| 10:52 |
silverline_jiten |
hello Xaver |
| 10:52 |
maholtz|WORK |
@chaser_: well, do it with php, paste it to pastebin, perhaps it is then easy to translate to typoscript... perhaps not :) |
| 10:52 |
silverline_jiten |
sorry i was loggof |
| 10:53 |
silverline_jiten |
will u help me |
| 11:02 |
silverline_jiten |
Hello All |
| 11:03 |
silverline_jiten |
is anybody use "indexed_search" extension |
| 11:03 |
chaser_ |
silverline_jiten: yeah, it sucks |
| 11:03 |
silverline_jiten |
can u help |
| 11:03 |
silverline_jiten |
it doesn't work for me |
| 11:04 |
silverline_jiten |
i hv install this extension |
| 11:04 |
silverline_jiten |
pdftotext |
| 11:04 |
silverline_jiten |
also |
| 11:04 |
loswillios |
hi |
| 11:04 |
silverline_jiten |
i |
| 11:06 |
chaser_ |
silverline_jiten: can't really help you if you say "it doesn't work" |
| 11:06 |
chaser_ |
silverline_jiten: have you put "page.config.index_enable = 1" in your setup? |
| 11:08 |
silverline_jiten |
ok |
| 11:08 |
silverline_jiten |
yes i hv put this value in |
| 11:08 |
silverline_jiten |
setup |
| 11:08 |
silverline_jiten |
i can see this search box on my page |
| 11:09 |
silverline_jiten |
is i need to install crawler extension for external file? |
| 11:09 |
silverline_jiten |
i mean for pdf/doc |
| 11:11 |
chaser_ |
not sure |
| 11:11 |
chaser_ |
so what doesn't work? the form? the search process? |
| 11:19 |
silverline_jiten |
the search process |
| 11:19 |
silverline_jiten |
i don't get any result |
| 11:20 |
silverline_jiten |
what ever i search it says NO results found. |
| 11:25 |
kotelette |
damn .. no i use absolute paths for crawler and staticpub .. the crawler seems to work but still no output... |
| 11:25 |
kotelette |
is there any logfile the staticpub uses? |
| 11:28 |
kotelette |
and table tx_staticpub_pages is still empty :-( |
| 11:30 |
pmk65 |
silverline_jiten> You also need to enable indexing of external documents if you want pdf/doc indexed. (Check the manual for the config options) |
| 11:31 |
silverline_jiten |
pmk65: how ? |
| 11:43 |
silverline_jiten |
is anybody can help me |
| 11:48 |
chaser_ |
come on, read the damn manual |
| 11:49 |
pmk65 |
silverline_jiten> (Check the manual for the config options) |
| 11:50 |
dominiks |
hello |
| 11:50 |
pmk65 |
http://typo3.org/documentation/document-library/extension-manuals/doc_indexed_search/4.2.1/view/1/5/ |
| 12:01 |
dominiks |
guys, I'd like to change (rewrite) paths for images (i.e. typo3temp/pics/6a3c059d0b.jpg) to something more SEO friendly.. is there any working solution please? |
| 12:06 |
silverline_jiten |
how can i use this extension with indexed_search? |
| 12:07 |
gerards |
wow |
| 12:08 |
gerards |
that's the indexed_search extension's documentation... :) silverline_jiten. |
| 12:09 |
silverline_jiten |
yws |
| 12:09 |
silverline_jiten |
yes |
| 12:09 |
silverline_jiten |
do u know how to use? |
| 12:09 |
silverline_jiten |
for content and document search? |
| 12:09 |
gerards |
silverline_jiten: Thank God i've never used it. So I can't help you. |
| 12:10 |
silverline_jiten |
it's ok |
| 12:10 |
silverline_jiten |
:) |
| 12:11 |
gerards |
but you know what you can do? |
| 12:11 |
gerards |
you can offer to pay someone in this channel to do it for you. |
| 12:12 |
gerards |
after all, they had to put in a lot of (free) effort to help you, I think its fair that you pay them to do it. Just my 2 cents. |
| 12:16 |
ndee |
anyone seen ries lately? |
| 12:17 |
xaver |
silverline_jiten: you need the programms -> catdoc and pdf2text |
| 12:17 |
xaver |
is nio typo extantion is da ubuntu package |
| 12:18 |
silverline_jiten |
i hv install both |
| 12:18 |
silverline_jiten |
pdf2text and catdoc |
| 12:18 |
kotelette |
does anyone how to check if the crawler is calling a staticpub method at all? |
| 12:19 |
xaver |
ok and the right path? |
| 12:20 |
xaver |
normal it work |
| 12:20 |
xaver |
but php need exec or shell_exce to start the praser |
| 12:29 |
silverline_jiten |
yes for that i think i need to install crawler |
| 12:32 |
pmk65 |
dominiks: try this ext. -> http://typo3.org/extensions/repository/view/fl_realurl_image/current/ |
| 12:33 |
dominiks |
pmk65: thanks :) |
| 12:35 |
dominiks |
one more question - is it possible in +ext template to reset static includes from parent tamplate? or should i just create new root tepmlate? |
| 12:35 |
zilla-ob |
hi i'm in my extension manager how do i install the extension i downloaded? |
| 12:36 |
dominiks |
zilla-ob: click (+) icon |
| 12:36 |
pmk65 |
dominiks: you can also try setting config.meaningfulTempFilePrefix = 1 |
| 12:37 |
zilla-ob |
dominiks... there's lots of + icons on the lists... |
| 12:37 |
pmk65 |
dominiks: you can manually clear the various TS objects on the ext template, like: lib.blabla > |
| 12:38 |
zilla-ob |
d4mn... found it thankx |
| 12:38 |
pmk65 |
zilla-ob: if you have downloaded a t3x file, then go to the installtool, and select "Install extension". Then you can upolad it using the file prompt. |
| 12:38 |
zilla-ob |
i have to select import from the dropdown lists |
| 12:38 |
dominiks |
pmk65: thanks a lot |
| 12:46 |
kotelette |
any idea which method of the static pub should be called by the crawler? |
| 12:46 |
kotelette |
in the queue all pages are with configuration staticpub... |
| 12:47 |
kotelette |
maybe i can add some echos |
| 12:47 |
zilla-ob |
i installed powermail |
| 12:48 |
zilla-ob |
i imported the external file and uploaded in typo3 then clicked the + icon to install it but I received 4 warnings.. file permission problems... Do I need to do ssh and repair the permission problem? please help... |
| 12:52 |
zilla-ob |
It seems like there is a backend module in "cli/conf.php" which is not configured in ext_emconf.php Error: Upload folder "uploads/tx_powermail/files" did not exist! |
| 12:55 |
pmk65 |
what version of typo3 are you running? |
| 13:01 |
SargoDarya |
Heyho, I have a strange error regarding Typo3 Backend |
| 13:02 |
SargoDarya |
If I try to edit and save changes I made in a TCE it reloads and shows the TCE with no changes made. It doesn't save |
| 13:03 |
SargoDarya |
Can someone help me with that? |
| 13:10 |
pmk65 |
SargoDarya> don't you mean FCE? |
| 13:10 |
SargoDarya |
Sure |
| 13:10 |
SargoDarya |
yeah |
| 13:11 |
pmk65 |
check the mapping of the FCE and see if there's any errors. (if it contains errors, it usually wont save) |
| 13:11 |
SargoDarya |
How do I check mapping? It's a standard Text Element |
| 13:12 |
pmk65 |
then its not a FCE, but a CE (content element) :) |
| 13:13 |
pmk65 |
Then you should go to the installtool and do a compare on the db.. |
| 13:13 |
SargoDarya |
ok |
| 13:15 |
SargoDarya |
everythings fine there |
| 13:26 |
zilla-ob |
Warning: fopen() [<function.fopen>]: SAFE MODE Restriction in effect. The script whose uid/gid is 307623/100 is not allowed to access /Users/<removed>/6e/04/ambra.net.au/public/www/uploads/tx_powermail owned by uid/gid 80/80 in /Users/<removed>/6e/04/ambra.net.au/public/www/t3lib/class.t3lib_div.php on line 2420 |
| 13:26 |
kotelette |
could anyone imagine the current crawler version and staticpub do not work together? |
| 13:27 |
demi-jour |
hi |
| 13:27 |
kotelette |
crawler was updated on 10.09.2009 with multi process functionality |
| 13:27 |
demi-jour |
anyone can tell if it's worth to buy the Typo3 book english or french that has been published in 2006 or is it too much out of date ? |
| 13:27 |
demi-jour |
saddly i can't read German yet ;P |
| 13:31 |
demi-jour |
anyone ? |
| 13:31 |
pesz |
hi all |
| 13:53 |
silverline_jiten |
Hell All |
| 13:54 |
silverline_jiten |
Hello All |
| 13:54 |
silverline_jiten |
is anybody know "indexed_search for page content" |
| 15:07 |
sorenmalling |
What application (for windows) do you use to make nice screenshots for a manual? |
| 15:08 |
SargoDarya |
photoshop |
| 15:09 |
SargoDarya |
Just Print Screen > Photoshop |
| 15:09 |
SargoDarya |
or Gimp |
| 15:10 |
sorenmalling |
Okay, great :) |
| 15:13 |
ries |
sorenmalling: print screen button :D |
| 15:13 |
ries |
Gimp sucks |
| 15:14 |
sorenmalling |
I love that button ;) thought about if anyone waas using a special application with some nice features :) |
| 15:17 |
ries |
sorenmalling: Shoft-Cmd-4 on OSX... to grab any screen region :D |
| 15:18 |
ries |
s/Shoft/Shift/ |
| 15:20 |
SargoDarya |
Alt Gr+Print Screen = Current Window |
| 15:21 |
SargoDarya |
so, I gotta go for now. |
| 15:27 |
pmk65 |
For making browser screenshots, I prefer FireShot (FireFox plugin) http://screenshot-program.com/fireshot/ |
| 15:27 |
pmk65 |
It allows you to capture full page, regions etc. |
| 15:34 |
ndee |
!seen ries |
| 15:37 |
ries |
hey ndee |
| 15:48 |
cuervos |
hi all, why from Mirc i dont see nobody ? |
| 15:49 |
m4rtijn |
hm? |
| 15:49 |
cuervos |
Mirc , the irc client |
| 15:50 |
m4rtijn |
try making a complete sentence |
| 15:51 |
cuervos |
anyway |
| 15:51 |
cuervos |
tell me please , typo3 allow posting/editing from backend ? |
| 15:54 |
m4rtijn |
http://www.typo3.org ? |
| 15:54 |
m4rtijn |
http://wiki.typo3.org |
| 15:57 |
cuervos |
thanks |
| 16:01 |
enmerkar |
how can I see if a backend user ever logged in / when he logged in? |
| 16:02 |
enmerkar |
is that stored in the db or some logfile? |
| 16:04 |
maholtz|WORK |
@enmerkar: admin-tools: log |
| 16:05 |
maholtz|WORK |
or admin-tools first entry ("verwaltung" in german) -> List Users Online |
| 16:06 |
enmerkar |
hm, i think there's a time limit on the admin-tools log |
| 16:07 |
maholtz|WORK |
there are select boxes in the top |
| 16:07 |
enmerkar |
yeah, i selecteded infinite |
| 16:07 |
maholtz|WORK |
and max = 500 ? |
| 16:07 |
enmerkar |
but only goes back to february |
| 16:08 |
m4rtijn |
maybe its a spanish server.. they tend to be lazy |
| 16:08 |
maholtz|WORK |
otherwise check in database sys_log - but its not the same |
| 16:08 |
enmerkar |
ah, there's no paging if there are more entries |
| 16:08 |
enmerkar |
maholtz|WORK: thanks |
| 16:08 |
maholtz|WORK |
your welcome:) |
| 16:22 |
howard |
folks |
| 16:22 |
howard |
does anybody know |
| 16:23 |
howard |
is there an option to use REPLACE sql command in typo3 dbal |
| 16:56 |
solshark |
Hi. Is any simple way to add pagination for tt_products in list mode? |
| 17:00 |
howard |
^ I am interested in pagination in general |
| 17:12 |
dominiks |
there is a : character betweet page title and template Website title.. is there any way to change this : char to something else? |
| 17:20 |
dokma |
dominiks: just looked at that code the other day |
| 17:20 |
dokma |
I think it was hardcoded |
| 17:20 |
dominiks |
dokma: ah ok.. thx for the info.. gonna hack it then =) |
| 17:21 |
dokma |
dominiks: don't take my word for it |
| 17:24 |
dokma |
dominiks: function is called printTitle |
| 17:24 |
dokma |
this is the code you are looking for: return $st.': '.$title; |
| 17:25 |
dominiks |
dokma: woot.. thanks a lot for help =) |
| 17:25 |
dokma |
;) |
| 17:26 |
dokma |
dominiks: Being at it, this code looks a bit ill to me: |
| 17:26 |
dokma |
if ($title && $st) { |
| 17:26 |
dokma |
return $st.': '.$title; |
| 17:26 |
dokma |
} else { |
| 17:26 |
dokma |
return $st.$title; |
| 17:26 |
dokma |
} |
| 17:27 |
dominiks |
too sophisticated for me :P |
| 17:33 |
kubixa |
anybody an idea why my $this->piVars is empty after sending a form via post? |
| 17:34 |
kubixa |
(i've just created the simplest fe plugin with the kickstarter) |
| 17:38 |
dokma |
kubixa: there is a call you need to make to initialize piVars |
| 17:40 |
dominiks |
dokma: my problem is solved.. thx again :) |
| 17:40 |
kubixa |
dokma: hmm, any idea which one? |
| 17:41 |
dokma |
kubixa: can't recall. are you on linux? |
| 17:42 |
dokma |
kubixa: try this grep -r 'this->piVars' * | less |
| 17:42 |
kubixa |
dokma: it's a linux server but i don't have a shell |
| 17:42 |
dokma |
in typo3conf/ext folder |
| 17:43 |
dokma |
ahhh.. crap |
| 17:43 |
dokma |
I'll do it |
| 17:43 |
kubixa |
there is $this->pi_setPiVarDefaults(), but this is sth different i think |
| 17:44 |
miousse |
kubixa: what does your form looks like? |
| 17:44 |
dokma |
kubixa: I have a lot of these around: $this->piVars = $pObj->piVars; |
| 17:45 |
kubixa |
it's the standard form of kickstarter: <h3>This is a form:</h3> |
| 17:45 |
kubixa |
<form action="'.$this->pi_getPageLink($GLOBALS['TSFE']->id, '', array('no_cache'=>'1').'" method="POST"> |
| 17:45 |
kubixa |
<input type="text" name="'.$this->prefixId.'[input_field]" value="'.htmlspecialchars($this->piVars['input_field']).'"> |
| 17:45 |
kubixa |
<input type="submit" name="'.$this->prefixId.'[submit_button]" value="'.htmlspecialchars($this->pi_getLL('submit_button_label')).'"> |
| 17:45 |
kubixa |
</form> |
| 17:45 |
kubixa |
but after sending the input_field is still empty |
| 17:49 |
miousse |
kubixa: if you put a t3lib_div::debug does it show after submitting? |
| 17:52 |
kubixa |
miousse and dokma: i'm fed up for the moment, i'll try on later... thank you for helping |
| 18:05 |
JuanJOBC |
Hi all |
| 18:06 |
JuanJOBC |
Does anybody know where on hearth the META tags are set???? |
| 18:07 |
JuanJOBC |
I my template setup I just have: page.meta.keywords.field=keywords page.meta.description.field=description |
| 18:08 |
JuanJOBC |
But where are those fields??? I acan't find them anywhere!!!! |
| 18:08 |
dominiks |
in BE -> page properties -> metadata tab |
| 18:09 |
JuanJOBC |
dominiks, I am under "Page" editing my root node in the tree but no METADATA tab |
| 18:10 |
dominiks |
JuanJOBC: ok, select some page in the tree and click [Edit page properties] |
| 18:11 |
JuanJOBC |
dominiks, there it shows up, but I want to change it for the entire web, not just for one page |
| 18:11 |
dominiks |
ah i see |
| 18:11 |
JuanJOBC |
metadata of course |
| 18:11 |
dominiks |
u can use page.config.kaywords = blah blah blah i think |
| 18:12 |
dominiks |
keywords* |
| 18:12 |
dominiks |
in the template |
| 18:12 |
dominiks |
sorry: page.meta.keywords = text... |
| 18:12 |
JuanJOBC |
but I already have that |
| 18:13 |
JuanJOBC |
But what I want to know is where that text is registered |
| 18:13 |
dominiks |
u said u have page.meta.keywords.field = keywords |
| 18:13 |
JuanJOBC |
the web I have is doing that |
| 18:13 |
JuanJOBC |
yes I did |
| 18:13 |
JuanJOBC |
but the content for "keywords" is stored in somewhere |
| 18:13 |
JuanJOBC |
so I want to find it |
| 18:13 |
JuanJOBC |
to change it |
| 18:13 |
dominiks |
it's in BE for each page separated |
| 18:13 |
JuanJOBC |
for my web site it is not |
| 18:14 |
JuanJOBC |
I have METAs everywhere the same, and they are not defined in the template |
| 18:14 |
dominiks |
do u want the same meta for all pages? |
| 18:14 |
JuanJOBC |
ok course |
| 18:14 |
JuanJOBC |
yes |
| 18:15 |
dominiks |
then use page.meta.keywords = your text |
| 18:16 |
dominiks |
http://www.typo3wizard.com/en/snippets/general-config/meta-keywords-description.html |
| 18:17 |
JuanJOBC |
Now I remmeber why I escaped from this fucking crazy CMS! |
| 18:19 |
dominiks |
heh |
| 18:19 |
gerards |
:) |
| 20:31 |
jaeger4 |
hi mqintus |