Reputation: 1002
I have a problem with move site made in TYPO3 4.5.32 (with PHP 5.2.17) to another server (with PHP 5.4.25). When I login in BE everything works fine, but when I try to open site in FE I have blank Page without any source code.
I create blank page with basic TS:
page = PAGE
page {
10 = TEXT
10.value = Hello world!
}
with clear Setup
, Constance
and checked Rootlevel
option I have blank page.
The response form server is: 200 OK
When I uncheck Rootlevel
I have information no TypoScript template found
.
Any idea what can be wrong?
Upvotes: 0
Views: 2203
Reputation: 3898
Just to understand you correctly: You like to update a full blown 300 extension TYPO3 4.5.x installation to TYPO3 6.2 on a new server?
This is an important information because there are a lot of things which changed between these two versions. I really doubt that the majority of your extensions are ready for TYPO3 6.2.
In this case I would recommend to install a 6.2 version at your new server and rebuild the portal from scratch.
Is it way to deactivate all extension at a time (not one by one)?
After the update you already did, you should see a PackageStates.php file in /typo3conf/ folder. Copy it to somewhere else and delete it. TYPO3 should create a new one with only the basic extensions activated when you refresh the backend/frontend.
But as I told you above. I strongly recommend you the other way around. Built your portal up from scratch.
Upvotes: 0
Reputation: 3898
A white page indicates that the script stops somewhere. I would check the memory settings in your php.ini. Set the memory_limit = 512M
or take the same amount from the old server. If that not helped, you could turn on the PHP error log to see whats going on.
Upvotes: 1
Reputation: 1
Try like this:
page = PAGE
page.10 = TEXT
page.10.value = Hello World
Here you can find a lot of nice information: http://docs.typo3.org/typo3cms/GettingStartedTutorial/
Upvotes: 0