Re: [TYPO3-english] Upgraded from 3.8 to 4.2 and get not content output

2009-03-24 Thread Dmitry Dulepov
Hi! Callum MacEwan wrote: > Just done an upgrade to a very old site BE everything is fine but > frontend I get this error > > Error! > > The requested page didn't have a proper connection to the tree-root! > > How does one fix that error? Did you update the database? Get my e-book about uprad

Re: [TYPO3-english] realurl and jk_poll

2009-03-24 Thread Stephan de Bruin
Hi Dmitry, thanks for your reply. I foud a solution in the form of another extension (cbrealurl). This takes care of that problem. I have got another issue though. In the backend of TYPO3, when I click the preview-button, I get a error page (a custom 404-page that is show when a realurl-page i

Re: [TYPO3-english] Upgraded from 3.8 to 4.2 and get not content output

2009-03-24 Thread Callum MacEwan
Hi Dmitry database update happened okay I have even added new pages and they say page not found! what is going on BE is all okay Cheers Callum Dmitry Dulepov wrote: > Hi! > > Callum MacEwan wrote: > >> Just done an upgrade to a very old site BE everything is fine but >> frontend I get thi

Re: [TYPO3-english] realurl and jk_poll

2009-03-24 Thread Dmitry Dulepov
Hi! Stephan de Bruin wrote: > I have got another issue though. In the backend of TYPO3, when I click > the preview-button, I get a error page (a custom 404-page that is show > when a realurl-page is not found). > > Maybe you seen this before and know of a solution. No, never seen this :( -- Dm

[TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Hi list, is there a convenient way (an extension) to create 301 redirects from the TYPO3 backend? We relaunched a website which had another cms before and the website has some incoming deep-lins which do not work anymore. I'd like to define 301 redirects for each of these URLs. I could do it

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Steffen Ritter
Sebastian Gebhard schrieb: > Hi list, > > is there a convenient way (an extension) to create 301 redirects from > the TYPO3 backend? > > We relaunched a website which had another cms before and the website has > some incoming deep-lins which do not work anymore. > > I'd like to define 301 redi

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Mark Kuiphuis
Steffen Ritter wrote: > Sebastian Gebhard schrieb: >> Hi list, >> >> is there a convenient way (an extension) to create 301 redirects from >> the TYPO3 backend? >> >> We relaunched a website which had another cms before and the website >> has some incoming deep-lins which do not work anymore. >>

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Donatas Elvikis
hi, simply try URL: public/?act=latestnews Redirect to: latest-news at least this works for me. Best wishes, Donatas Elvikis Mark Kuiphuis schrieb: Steffen Ritter wrote: Sebastian Gebhard schrieb: Hi list, is there a convenient way (an extension) to create 301 redirects from the TYPO3 ba

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Benjamin Mack
Hey Mark, I always had trouble with that page, as I didn't know where to use absolute URLs and where to remove the domain name. Here is a working example: In the "Url" field I have: community/beta.html In the "Destination" field I have: http://www.domain.com/home.html Maybe this helps!

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! Sebastian Gebhard wrote: > is there a convenient way (an extension) to create 301 redirects from > the TYPO3 backend? Don't do this! This is very bad from performance view. Do it through the Apache configuration with mod_rewrite. It will be much faster. -- Dmitry Dulepov TYPO3 core team ht

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Dmitry Dulepov schrieb: > Hi! > > Sebastian Gebhard wrote: >> is there a convenient way (an extension) to create 301 redirects from >> the TYPO3 backend? > > Don't do this! This is very bad from performance view. Do it through the > Apache configuration with mod_rewrite. It will be much faster.

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Benjamin Mack schrieb: > Hey Mark, > > I always had trouble with that page, as I didn't know where to use > absolute URLs and where to remove the domain name. Here is a working > example: > > In the "Url" field I have: community/beta.html > In the "Destination" field I have: http://www.

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! Sebastian Gebhard wrote: > Why did you build this feture into realurl? I didn't, Kasper did. I never use this feature because it is highly inefficient. Just imagine how it goes: - mod_rewrite redirects (my favorite): - Apache gets a request - mod_rewrite does a redirect to

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Dmitry Dulepov schrieb: > Hi! > > Sebastian Gebhard wrote: >> Why did you build this feture into realurl? > > I didn't, Kasper did. I never use this feature because it is highly > inefficient. Just imagine how it goes: > > - mod_rewrite redirects (my favorite): > - Apache gets a request

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Mark Kuiphuis
Sebastian Gebhard wrote: > Dmitry Dulepov schrieb: >> Hi! >> >> Sebastian Gebhard wrote: >>> Why did you build this feture into realurl? >> >> I didn't, Kasper did. I never use this feature because it is highly >> inefficient. Just imagine how it goes: >> >> - mod_rewrite redirects (my favorite):

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! Mark Kuiphuis wrote: > I tried to add the following line to my .htaccess: (follow-up on the > redirects in RealURL) > > Redirect 301 /public/?act=latestnews /latest-news/ > > Unfortunately this doesn't work and it still shows me the 404 page. I usually use a RewriteRule. For example: Rewri

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Oliver Rowlands
Hi Sebastien, I couldn't agree more with Dmitry: handling the redirections at the Apache level is far more efficient. I wrote a small tutorial on how to set this up which you might find useful: http://lists.netfielders.de/pipermail/typo3-english/2007-May/039509.html Best regards, Oliver Dmit

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread ries van Twisk
On Mar 24, 2009, at 5:55 AM, Dmitry Dulepov wrote: > Hi! > > Sebastian Gebhard wrote: >> is there a convenient way (an extension) to create 301 redirects from >> the TYPO3 backend? > > Don't do this! This is very bad from performance view. Do it through > the Apache configuration with mod_rewri

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Mark Kuiphuis
Dmitry Dulepov wrote: > Hi! > > Mark Kuiphuis wrote: >> I tried to add the following line to my .htaccess: (follow-up on the >> redirects in RealURL) >> >> Redirect 301 /public/?act=latestnews /latest-news/ >> >> Unfortunately this doesn't work and it still shows me the 404 page. > > I usually us

Re: [TYPO3-english] phpmyadmin- Class 't3lib_div' not found

2009-03-24 Thread Rupali
i have installed 4.2.0 from TER. 2009/3/23 Dan Osipov > What version of phpMyAdmin are you using? Try downgrading one version. > Dan Osipov > Calkins Media > http://danosipov.com/blog/ > > Rupali wrote: > > Hello List, > > > > i have installed latest version of phpmyadmin. on clicking the modu

Re: [TYPO3-english] cooluri link manager 301

2009-03-24 Thread Rupali
may be i misunderstood. ya, in changelog its resolved. but what i should do to fix my problem? 2009/3/23 Jan Bednarik > Hi, > > > i have redirected a page to another with cooluri LinkManager-> new > redirect, > > it works also good. but it is 302 redirect, is it possible to do it with > 301 > >

Re: [TYPO3-english] cooluri link manager 301

2009-03-24 Thread Rupali
once again to make my problem more clear, we have rebuild a web-site and there are a few old links in google which i need to permanent redirect to new page. with LinkManager-> new redirect, it is done with 302, can it be done as 301 with cooluri or we need to do it with htaccess? 2009/3/24 Rupali

Re: [TYPO3-english] Jump to frontpage if page not translated

2009-03-24 Thread Jeppe Donslund
Andreas Burg skrev: > Jeppe, > >> Now my question is: Is it possible to make the language-menu so that >> the use is redirected to the frontpage if a page is not translated? > > I've no solution within reach yet, but did you also thought about > greying the link out, or disable the link functio

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! ries van Twisk wrote: > How can you say that without even knowing the number of redirects per > day or per second needed? Think! What is faster: 1. mod_rewrite redirect or 2. mod_rewrite redirect (to index.php) + PHP + TYPO3 + RealURL redirect > The question was if it was possible, not if

Re: [TYPO3-english] [TYPO3-paymentlib] is paymentlib the right solution?

2009-03-24 Thread Franz Holzinger
bernd wilke wrote: > for a project I should implement two new payments, which could be done > with paymentlib-addons as they exists: payone (just creditcards) and > paypal. > But the client wishes no popup and I can't get the information wether > this can be done with these extensions. > From

[TYPO3-english] [tt_news] Sorting archives.

2009-03-24 Thread Tommy Bergeron
Hi! I would like a "if possible" simple way to have my archives sorted by years and months. So I could include a submenu in my sidebar including links to years and months. I'm currently using the archive checkbox to archive them. Thanks a lot! - Tom __

[TYPO3-english] I want news to disappear from LATEST list

2009-03-24 Thread Sergio
Hi list, I've got two tt_news lists on my site: one LATEST and one LIST. I've ordered my LATEST list by "datetime asc" using the "listOrderBy" attribute and I just want the articles disappear from this list when the article's date passed. However, I just don't want articles disappear from the LI

Re: [TYPO3-english] cooluri link manager 301

2009-03-24 Thread Jan Bednarik
> we have rebuild a web-site and there are a few old links in google which i > need to permanent redirect to new page. with LinkManager-> new redirect, it > is done with 302, can it be done as 301 with cooluri or we need to do it > with htaccess? I understand that. This bug has been fixed. All yo

[TYPO3-english] T3CON09 Dallas - looking for room mate

2009-03-24 Thread Thomas Meixner
Hi, I'm from Quebec (Province) and I have booked my flight for the T3CON09 in Dallas. Since I will be paying for this "holdiday" out of my own pocket I would like to keep costs low and wouldn't mind sharing a room. My flight arrives on the 15th and leaves on the 19th so I'm looking for booking

Re: [TYPO3-english] cooluri link manager 301

2009-03-24 Thread Rupali
Thanks Jan! :-) 2009/3/24 Jan Bednarik > > we have rebuild a web-site and there are a few old links in google which > i > > need to permanent redirect to new page. with LinkManager-> new redirect, > it > > is done with 302, can it be done as 301 with cooluri or we need to do it > > with htaccess

Re: [TYPO3-english] phpmyadmin- Class 't3lib_div' not found

2009-03-24 Thread Dan Osipov
I know that version has problems. Try 4.1.* Dan Osipov Calkins Media http://danosipov.com/blog/ Rupali wrote: > i have installed 4.2.0 from TER. > > > > 2009/3/23 Dan Osipov > >> What version of phpMyAdmin are you using? Try downgrading one version. >> Dan Osipov >> Calkins Media >> http://d

[TYPO3-english] Indesign?

2009-03-24 Thread Oliver Schröder
Hi list, has anyone tried to import data exported by Indesign? Oliver ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Questions about dd_googlesitemap and multilanguage sites

2009-03-24 Thread Rino Razzi
Hi everybody. I'm trying to use extension dd_googlesitemap on a typo3 website. The site is multilanguage - unique pagetree. The site has a "high accessibility version" for each language too. Also the "high accessibility version" is in the same pagetree. In the site I'me using realurl, so links t

Re: [TYPO3-english] Indesign?

2009-03-24 Thread Wiel, J.A.M. van de
Yes, I should have something of a half-baked extension for this somewhere. Will get back to you tomorrow, when I'm at work. Bas From: typo3-english-boun...@lists.netfielders.de [typo3-english-boun...@lists.netfielders.de] On Behalf Of Oliver Schröder [t

Re: [TYPO3-english] Jump to frontpage if page not translated

2009-03-24 Thread Andreas Burg
Jeppe, I hope it works, it's my langmenu, just styled and commented for everybodys use. The original works for me. I have not tested this one, maybe you can do it for me. Best viewed with syntax highlighting, it's not so difficult as it seams. some config first: config { # your lang IDs h

Re: [TYPO3-english] Indesign?

2009-03-24 Thread Oliver Schröder
Hi, this was the fastest response in this newsgroup to a question by me :-) Thanx, Oliver > Yes, > I should have something of a half-baked extension for this somewhere. Will > get back to you tomorrow, when I'm at work. > > Bas ___ TYPO3-english mail

Re: [TYPO3-english] Indesign?

2009-03-24 Thread Paul Bucalo
i would be interested in it as well dam_index has a component (needs to be installed on server side) for reading pdf files' meta data. -p On Tue, Mar 24, 2009 at 1:31 PM, Wiel, J.A.M. van de wrote: > Yes, > I should have something of a half-baked extension for this somewhere. Will > get back to y

Re: [TYPO3-english] Indesign?

2009-03-24 Thread La Farge Douglas
I'm interested in your half-baked extension too! doug On Mar 24, 2009, at 10:31 AM, Wiel, J.A.M. van de wrote: > Yes, > I should have something of a half-baked extension for this > somewhere. Will get back to you tomorrow, when I'm at work. > > Bas > >

Re: [TYPO3-english] Indesign?

2009-03-24 Thread Christian Platt
Also beeing interested in an Indesign to somewhat importer, so please let the list know... Christian Am 24.03.2009 um 19:12 schrieb Oliver Schröder: > Hi, > > this was the fastest response in this newsgroup to a question by > me :-) > > Thanx, > Oliver > >> Yes, >> I should have something of a

Re: [TYPO3-english] Indesign?

2009-03-24 Thread Wiel, J.A.M. van de
Hi list, Seeing how my proof-of-concept InDesign-importer generates quite a bit of interest here, I'll comment some more on it. What I had been developing roughly a year ago, was a way to import InDesign XML exports into TYPO3. Hopefully it's still on my computer, as the project was more or less

Re: [TYPO3-english] I want news to disappear from LATEST list

2009-03-24 Thread Peter Klein
Hi Sergio. Try adding "mbl_newsevent" http://typo3.org/extensions/repository/view/mbl_newsevent/current/ It's an addon for tt_news that gives you some additional markers and views. -- Peter Klein "Sergio" wrote in message news:mailman.3425.1237910252.27889.typo3-engl...@lists.netfielders.de..

Re: [TYPO3-english] Questions about dd_googlesitemap and multilanguage sites

2009-03-24 Thread Xavier Perseguers
Hi Rino, > It looks to me that the generated XML don't takes into account languages > other than the main one (Italian, in my case) > > Here is an example of Generated XML: > > > - http://www.sitemaps.org/schemas/sitemap/0.9";> > - > > http://www1-vm.opapisa.it/it/lopera-primaziale/profilo-

[TYPO3-english] mm_forum: modern topic icon

2009-03-24 Thread Antonio Willybiro
Hi there, can anyone explain how the modern topic icon works? default install gives me weird images like this: http://www.demigod-live.com/typo3temp/GB/aa9f639428.png forum can be found there: http://www.demigod-live.com/forum.html. If i set it to classic mode then i would get some default icon p

[TYPO3-english] Upgrade error 3.6 to 3.7

2009-03-24 Thread Callum MacEwan
It worked once but BE didn't work now I get The requested page didn't have a proper connection to the tree-root! (Broken rootline) Does anyone know what the difference in structure from 3.6 to 3.7 Help please Cheers Callum ___ TYPO3-english maili

Re: [TYPO3-english] Indesign?

2009-03-24 Thread Callum MacEwan
Latest version of indesign CS4 has export as HTML or Flash Wiel, J.A.M. van de wrote: Yes, I should have something of a half-baked extension for this somewhere. Will get back to you tomorrow, when I'm at work. Bas From: typo3-english-boun...@lists.netf

[TYPO3-english] Create hmenu and vmenu with templavoila

2009-03-24 Thread Joko Nurjadi
Hi, I have a template that has 2 menus, in horizontal menu and vertical menu (at the left sidebar). For example, hmenu should display menu/page A, B, C vmenu should display menu/page D, E, F With Templavoila, I map horizontal menu (main menu) that show all available pages in page tree (A, B,

Re: [TYPO3-english] Questions about dd_googlesitemap and multilanguage sites

2009-03-24 Thread Mark Kuiphuis
Xavier Perseguers wrote: > Hi Rino, > >> It looks to me that the generated XML don't takes into account >> languages other than the main one (Italian, in my case) >> >> Here is an example of Generated XML: >> >> >> - http://www.sitemaps.org/schemas/sitemap/0.9";> >> - >> >> http://www1-vm.opap

Re: [TYPO3-english] Create hmenu and vmenu with templavoila

2009-03-24 Thread Mark Kuiphuis
Joko Nurjadi wrote: > Hi, > > I have a template that has 2 menus, in horizontal menu and vertical menu (at > the left sidebar). > > For example, hmenu should display menu/page A, B, C > vmenu should display menu/page D, E, F > > With Templavoila, I map horizontal menu (main menu) that show all

Re: [TYPO3-english] Create hmenu and vmenu with templavoila

2009-03-24 Thread Joko Nurjadi
oh my mistake, thanks for correction, Mark. Ok I'll try your solution, thanks a lot! Rgds, Joko > Hi Joko, > > Hmenu and Vmenu? Hmenu does exist, but doesn't stand for Horizontal > Menu, but Hierarchical Menu. My TSREf doesn't say anything about a VMenu. > > I'm not familiar with TemplaVoila, but