Opened 11 years ago
Closed 11 years ago
#269 closed defect (fixed)
URL Unterscheidung für SSL im Backend (nicht Frontend)
Reported by: | Roger Rehnelt | Owned by: | d.schmitzer |
---|---|---|---|
Priority: | major | Milestone: | 3.4 |
Component: | Core | Version: | 3.3 |
Keywords: | Cc: |
Description
Kunde möchte zur Absicherung sein komplettes Backend per https aufrufen.
WPSG zickt hier aber rum, weil es nur eine URL für Frontend und Backend gibt.
siehe: http://forum.maennchen1.de/viewtopic.php?p=31183#p31183
Note:
See TracTickets
for help on using tickets.
define('WPSG_URL', plugins_url().'/wpshopgermany/');
define('WPSG_URL_WP', site_url().'/');
define('WPSG_URL_CONTENT', content_url().'/');
define('WPSG_PLUGIN_URL', plugins_url().'/');
statt
define('WPSG_URL', SITECOOKIEPATH.'wp-content/plugins/wpshopgermany/');
define('WPSG_URL_WP', preg_replace('/wp-content/', , WP_CONTENT_URL));
define('WPSG_PLUGIN_URL', WP_PLUGIN_URL);
define('WPSG_URL_CONTENT', WP_CONTENT_URL);