TYPO3 4.7 get-started not found - content-management-system

Hi I'm starting to use TYPO3 4.7 and I have a problem after the installation:
The requested URL /public/typo3/get-started/ was not found on this
server.
I have actived the mod_rewrite restarted apache and try to enable/disable real url.. the problem is always the same.
I don't know if I have to actvied a page ora a template. I wanto to know why after installation I can0t see the index into my localhost.
Why?
Can someone help me?

I guess you have some trouble with your .htaccess. Probably you need to change the
RewriteBase /public/typo3/
To determine, what the problem is, you could check if the request of an specific page works: (sorry, i do not know if there is a page with the id 5. You can see them in the backend or just try some numbers)
/public/typo3/index.php?id=5

Related

TYPO3 8.7.26 RealURL is generating infinite new URL data

I have a weird problem on TYPO3 8.7.26 with RealURL 2.6.1 installed. It's generating infinite URL data for page uid 1. It generates thousands of records where speaking url part is just / and Original URL is L=0&id=1.
That happens only on page id 1 and nowhere else. Does this happen to anyone else here?
I would appreciate any suggestion on how to debug this issue. I have already tried to disable any extensions that could in my opinion interfere with RealURL, but no luck :/

Joomla! Too Many Redirects

I'm trying to build a website (it's not my first time), using latest version of Joomla! (3.8.10), but I have a problem - tabs in the main menu don't work. When I try to go to other page, I have an error:
ERR_TOO_MANY_REDIRECTS
I almost solved this problem by changing:
$sef="1"
to
$sef="0"
in configuration.php, but it caused strangely long addresses.
Ok, I found the solution. Need to add:
$_SERVER['HTTPS']='on';
in index.phpfile, behind the <?php
Maybe someone will use it.
This is most likely a problem with your .htaccess file. When you change $sef=0, you are basically telling the system to not use your .htaccess file. I suggest backing up your current one and replacing with the default Joomla one. It is the one that comes in the download package and is named htaccess.txt. Upload and rename to .htaccess to overwrite existing.

realurl prevar language and get parameter

I have a strange problem:
TYPO3 7.6 with realul 2.2.1
I got a page with a form. One field of the form gets prefilled via get-parameter (sysid=xxxxx).
The site is multilanguage: german->0, english->1, mapped via prevars '' and en.
When I call the page via www.domain.tld/form-page/?sysid=xxxxx I can fetch the get parameter and fill the field.
When I call the page via www.domain.tld/en/form-page/?sysid=xxxxx I get a 404. That's weired because www.domain.tld/en/form-page/ works without any problems.
I tried several settings (e.g. exclude sysid from chash generation) but nothing worked.
Any hints what I could do?
One additional note: the getvar links are not generated in TYPO3, the are called via barcodes.
I cannot reproduce your problem on the same versions of T3 and realurl.
And I guess (wild guess), it is not a realurl problem, but a TYPO3-core problem.
Could you try calling the page via:
www.domain.tld/index.php?id=XX&L=1&sysid=xxxxx
Furthermore investigate and tell us your settings of
[FE][pageNotFound_handling] and according (installtool/LocalConfiguration).
Nevermind. Error occured because I didn't adjust the realurl-setting for the domain after moving to live. Therefore automatic configuration took place and that didn't work. With manual conf it works.

Configure TinyMCE in Typo3 to run over HTTPS

we are using Typo3 7.6.6 for our new homepage. To simplify the process of writing new articles, we introduced the extension TinyMCE4 as TYPO3 RTE. On our test-system tinyMCE works fine, the editors are satisfied.
To prepare for production environment we introduced SSL. Hence the homepage is referenced over https://....
Since this change tinyMCE no longer appeared. After some research we found out, that the tinyMCE extension tries to load a specific dynamically generated js-file tinymceConfiguration....js over HTTP (not over SSL as preferred).
Since we have a strict policy, the server doesn't allow the client to catch the script without using SSL. Unfortunately we cannot change that policy.
The question is: where does the extension get the URL from. Can I overwrite it to reference the https://.. path?
I already tried changing
config.baseURL
tinyMCE.init({
...
document_base_url : "https://.."
});
But it didn't work.
Does anybody have an idea?
Regards,
Thomas
you could try to tell your browser to use "Content-Security-Policy" in that way all http links are rewriten by the browser itself. Maybe the lazy way.
https://developers.google.com/web/fundamentals/security/encrypt-in-transit/why-https?hl=en
http://www.html5rocks.com/en/tutorials/security/content-security-policy/
Regards
Pete

How do I get NetBeans to recognise SHTML files?

I wan't to include a generic header and footer on my web pages. I don't know php yet and the server doesn't run java, jsp, servlets etc, so I've been told to use SSI, i.e. an include statement. In order for it to work I had to rename index.html to index.shtml and include
< !--#include file="someFile.html" --> (no space before the ! just put it in as it wasn't showing up in question as it looks like a comment)
This works perfect on the server, but my problem is netbeans does not include the header or footer when run in the format!!
Does anyone know how to configure netbeans 8 to allow this format? Thanks.
Meant to answer this way back, but I didn't have XAMPP running! Schoolboy(girl) error! Thanks for the help guys.