Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This worked for me: <a href="http://www.typo3multishop.com/forum/list_post/fix-how-to-make-multishop-compatible-with-typo-6-x-582/" rel="nofollow">http://www.typo3multishop.com/forum/list_post/fix-how-to-make-multishop-compatible-with-typo-6-x-582/</a> (I am using jQuery 1.8.x-1.9.x-1.2.js)</p> <p>Here the code, in case the link is gone:</p> <p>Replace:</p> <pre><code>$pageRenderer-&gt;addBodyContent(LF . $pageContent); if (!empty($GLOBALS['TSFE']-&gt;config['INTincScript']) &amp;&amp; is_array($GLOBALS['TSFE']-&gt;config['INTincScript'])) { // Store the serialized pageRenderer in configuration $GLOBALS['TSFE']-&gt;config['INTincScript_ext']['pageRenderer'] = serialize($pageRenderer); // Render complete page, keep placeholders for JavaScript and CSS $GLOBALS['TSFE']-&gt;content = $pageRenderer-&gt;renderPageWithUncachedObjects($GLOBALS['TSFE']-&gt;config['INTincScript_ext']['divKey']); } else { // Render complete page $GLOBALS['TSFE']-&gt;content = $pageRenderer-&gt;render(); } </code></pre> <p>in typo3/sysext/frontend/Classes/Page/PageGenerator.php by</p> <pre><code> $pageRenderer-&gt;addBodyContent(LF . $pageContent); if (!empty($GLOBALS['TSFE']-&gt;config['INTincScript']) &amp;&amp; is_array($GLOBALS['TSFE']-&gt;config['INTincScript'])) { // Store the serialized pageRenderer in configuration $GLOBALS['TSFE']-&gt;config['INTincScript_ext']['pageRenderer'] = serialize($pageRenderer); // Render complete page, keep placeholders for JavaScript and CSS $GLOBALS['TSFE']-&gt;content = $pageRenderer-&gt;renderPageWithUncachedObjects($GLOBALS['TSFE']-&gt;config['INTincScript_ext']['divKey']); // Multishop fix $GLOBALS['TSFE']-&gt;content = $pageRenderer-&gt;render(); } else { // Render complete page $GLOBALS['TSFE']-&gt;content = $pageRenderer-&gt;render(); } </code></pre> <p>credit to Georg Ringer &amp; Bas van Beek</p> <p>A few other issues I had with the installation of Multishop under Typo3 6.1.x:</p> <ul> <li><p>phpexcel_service error --> you have to add that extension first.</p></li> <li><p>Multishop does not get extracted when using Typo3 extension upload (seems to be too large) --> unpack locally and upload it to typo3conf/ext/multishop</p></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload