If link to top is re-directs to homepage, to solve this we have to include following code int to our typo-script setup page
config {
prefixLocalAnchors = all
}
This replaces all links like <a href=”#” > into <a href=”[url]#”>
A useful blog with code assitance on Typo3, PHP, Apache, OpenSSL, Prestashop
If link to top is re-directs to homepage, to solve this we have to include following code int to our typo-script setup page
config {
prefixLocalAnchors = all
}
This replaces all links like <a href=”#” > into <a href=”[url]#”>
When we recently installed SVN on CentOS, we came across the following error message:
<m:human-readable errcode=”13″>Could not open the requested SVN filesystem</m:human-readable>
This seems to be due to incorrect setting of the SeLinux content. This can be changed by the following command:
chcon -R -h -t httpd_sys_content_t /PATH_TO_REPOSITORY/
ex:
chcon -R -h -t httpd_sys_content_t /home/svnRepo
This is a quick help guide for all thise who would like to upgrade to latest SVN on XAMPP.
NOTE: Like with all software upgrades there could be high risk involved.
It is always better to take a backup prior to proceeding with any kind of upgrades.
We know that when a latest version of SVN is around it is time to upgrade.
If you have already customized your XAMPP it is not an easy task to upgrade XAMPP as it might waste several days of your work!
I however came up with a quick solution to this issue. SVN binaries are stored in the \xampp\apache\bin folder.
If you closely observe this folder you can find these binaries and there are also several related DLL files.
Now we know where the files are, and it is time to grab the latest SVN binaries and proceed to upgrade.
I hope this would be useful. Please send yor comments / queries in case of any issues.
Assigning a favicon is quite simple in Typo3. you can just use the following Typoscript to assign a favicon.
page.shortcutIcon = pathToFolders/favicon.ico
In case of multi-domain setup there are various ways you can achive this:
1. By adding the above code in the Typoscript Template Record of root page for each domain.
2. If same root page is used used for 2 domains we can write a conditional statement and check the domain, and change the Favicon.
[globalString = ENV:HTTP_HOST = *mydomain.com]
page.shortcutIcon = pathToFolders/favicon.ico
[global]
[globalString = ENV:HTTP_HOST = *myotherdomain.com]
page.shortcutIcon = pathToFolders/favicon2.ico[global]
In setup write the below code
tt_content.stdWrap.dataWrap >
That’s it!