So, mein letzter Versuch.
Ich habe jetzt auf einem anderem Server bei all-inkl.com
eine neue Oxid installation gemacht. Läuft
Wordpress Installation. Läuft
Toxid hochgeladen und aktiviert. Läuft
OXID, TOXID und Wordpress. Läuft
Jetzt muss ich meinen Lokalen Shop und Wordpress auf den Server ziehen…
Also Servermzug von Oxid gemacht (http://wiki.oxidforge.org/Tutorials/Einen_Oxid-Shop_umziehen_lassen)
Und den Umzug von Wordpress gemacht. Die Einstellungen von TOXID geändern.
Das Azure Template Läuft.
Mein Eigenes Oxid Template ist erstmal nicht aktiviert.
Wordpress Toxid template. Läuft
Sobald ich jetzt folgenden code in die application\views\azure pl\layout\header.tpl
[{assign var=‘toxid’ value=$oViewConf->getToxid()}]
[{ $toxid->getCmsSnippet(content) }]
bekomme ich vom IE
Die Seite kann nicht angezeigt werden.
Firefox
Fehler: Umleitungsfehler
Adresszeile steht: http://www.xyz.de/index.php?
in Wordpress habe ich das Toxid template aktiviert.
\wordpress\wp-content hemes oxid\header.php
header.php
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
echo '<?xml version="1.0"?>';
?>
<toxid>
<content><![CDATA[
page.php
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
footer.php
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
]]></content>
<footer><![CDATA[
<footer id="colophon" role="contentinfo">
<div class="site-info">
<?php do_action( 'twentytwelve_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
<?php wp_footer(); ?>
]]></footer></toxid>
Sobald ich den Code:
[{assign var=‘toxid’ value=$oViewConf->getToxid()}]
[{ $toxid->getCmsSnippet(content) }]
wieder rausnehme geht der oxid shop.
Bitte helft mir.