This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Themenwechsel


avatar
Wolf42 17
From: -
Themenwechsel

Hallo schon wieder!

Ich bin auf ein kleines Problem gestoßen:

Im Dropdown für die Themenauswahl erscheinen zwar alle möglichen Themen, aber ein Wechsel des Themas ist leider nicht möglich.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Themenwechsel
avatar
OP 17
From: -
Thx

Danke sehr, jetzt funktionierts.
1 Re: Themenwechsel
avatar
Editor
0
From: -
Probiere einmal folgende Modifikation in modules/core/theme.php

Ändere:
           if( $database -> dbrows( $query ) )

{
setcookie( $preferences[ 'website_uwrapper_cookiepath' ] . "esselbachctt", $id );
}
else
{
setcookie( $preferences[ 'website_uwrapper_cookiepath' ] . "esselbachctt", 0, mktime()-3600 );
}
}
else
{
setcookie( $preferences[ 'website_uwrapper_cookiepath' ] . "esselbachctt", 0, mktime()-3600 );
};


in:
              if( $database -> dbrows( $query ) )

{
setcookie( $preferences[ 'website_uwrapper_cookieprefix' ] . "esselbachctt", $id, mktime()+31536000, $preferences[ 'website_uwrapper_cookiepath' ] );
}
else
{
setcookie( $preferences[ 'website_uwrapper_cookieprefix' ] . "esselbachctt", 0, 0, $preferences[ 'website_uwrapper_cookiepath' ] );
}
}
else
{
setcookie( $preferences[ 'website_uwrapper_cookieprefix' ] . "esselbachctt", 0, 0, $preferences[ 'website_uwrapper_cookiepath' ] );
}
1 Re: Themenwechsel
avatar
OP 17
From: -
Integration mit vB 3.7, Cookiepfad ist / (Standardeinstellung).
1 Re: Themenwechsel
avatar
Editor
0
From: -
Ist Contentteller mit vBulletin integriert? Auf welchen Wert ist der Cookie Pfad (unter Verwalte Websites) eingestellt?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.