Doesn't work on IE
#1
Posted 05 December 2009 - 06:56 PM
#2
Posted 05 December 2009 - 06:59 PM
DiViN3, on 05 December 2009 - 06:56 PM, said:
<base href="">The configure file is incorrect.
FF is smart enough to overcome this.
IE isn't.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#3
Posted 05 December 2009 - 07:15 PM
where ist this file located?
#4
Posted 05 December 2009 - 07:17 PM
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#5 ONLINE
Posted 05 December 2009 - 07:28 PM
germ, on 05 December 2009 - 07:17 PM, said:
The important bits to your problem are ..
define('HTTP_SERVER', 'http://www.mysite.com');
define('HTTPS_SERVER', 'http://www.mysite.com');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', 'www.mysite.com');
define('HTTPS_COOKIE_DOMAIN', 'www.mysite.com');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
define('DIR_WS_HTTP_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
the last four enties with / will be different dependent on where your site is located e.g.
If you access your site as ..
http:www.mysite.com/ the setting is /
http:www.mysite.com/catalog/ the setting is /catalog/
http:www.mysite.com/catalog/shop/ the setting is /catalog/shop/
Edited by FWR Media, 05 December 2009 - 07:32 PM.
KissMT Dynamic SEO Meta & Canonical Header Tags
KissER Error Handling and Debugging
KissIT Image Thumbnailer
Security Pro - Querystring protection against hackers ( a KISS contribution )
If you found my post useful please click the "Like This" button to the right.
Please only PM me for paid work.
#6
Posted 05 December 2009 - 07:28 PM
Edited by DiViN3, 05 December 2009 - 07:32 PM.
#7
Posted 05 December 2009 - 07:34 PM
DiViN3, on 05 December 2009 - 07:28 PM, said:
A Guide to the configure files
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#8
Posted 05 December 2009 - 07:55 PM
I tried some things and read the other post. I also made some changes, but it won't work.
The last try lookd like this:
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTP_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTPS_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
I thinik I'll make a try later on. I worked 2 much today....
Now I know why I just use FF and not IE
#9
Posted 05 December 2009 - 07:59 PM
DiViN3, on 05 December 2009 - 07:55 PM, said:
I tried some things and read the other post. I also made some changes, but it won't work.
The last try lookd like this:
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTP_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTPS_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
I thinik I'll make a try later on. I worked 2 much today....
Now I know why I just use FF and not IE
Also be aware of this:
In the includes FOLDER (catalog and admin) where the normal configure.php files are there is a FOLDER named local
On some installs there may be a configure.php inside the local FOLDER (catalog and admin)
If there is, anything in it overrides anything in the normal configure.php files.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#10 ONLINE
Posted 05 December 2009 - 08:12 PM
DiViN3, on 05 December 2009 - 07:55 PM, said:
I tried some things and read the other post. I also made some changes, but it won't work.
The last try lookd like this:
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTP_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTPS_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
I thinik I'll make a try later on. I worked 2 much today....
Now I know why I just use FF and not IE
Well as Jim stated not only have you not implemented the changes but you seemed to have ignored the advice.
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTP_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTPS_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
Is nothing like I suggested .. perhaps based on what you have there ..
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch');
define('HTTP_COOKIE_PATH', '/shop/salviadivinorum/');
define('HTTPS_COOKIE_PATH', '/shop/salviadivinorum/');
define('DIR_WS_HTTP_CATALOG', '/shop/salviadivinorum/');
define('DIR_WS_HTTPS_CATALOG', '/shop/salviadivinorum/');
Edited by FWR Media, 05 December 2009 - 08:16 PM.
KissMT Dynamic SEO Meta & Canonical Header Tags
KissER Error Handling and Debugging
KissIT Image Thumbnailer
Security Pro - Querystring protection against hackers ( a KISS contribution )
If you found my post useful please click the "Like This" button to the right.
Please only PM me for paid work.
#11
Posted 05 December 2009 - 10:04 PM
Bad news: The rest of the page is not visible (FF and IE).
As you perhaps know, the link is incorrect :/
http://www.salvia-flash.ch/shop/salviadivinorum/salvia-flash.ch/shop/salviadivinorum/privacy.php
http://www.salvia-flash.ch/shop/salviadivinorum/
The file looks bow like this:
define('HTTP_COOKIE_DOMAIN', '/');
define('HTTPS_COOKIE_DOMAIN', '/');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
define('DIR_WS_HTTP_CATALOG', 'salvia-flash.ch/shop/salviadivinorum/');
define('DIR_WS_HTTPS_CATALOG', 'salvia-flash.ch/shop/salviadivinorum/');
I think I tried every cominiation, still won't work.
@ FWR Media:
Ist this really correct? Do I have to define this tiwce?
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch');
define('HTTP_COOKIE_PATH', '/shop/salviadivinorum/');
define('HTTPS_COOKIE_PATH', '/shop/salviadivinorum/'); This didn't work for me:
define('DIR_WS_HTTP_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTPS_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
It worked without the www infront.Hmmm...
#12 ONLINE
Posted 05 December 2009 - 10:42 PM
DiViN3, on 05 December 2009 - 10:04 PM, said:
Bad news: The rest of the page is not visible (FF and IE).
As you perhaps know, the link is incorrect :/
http://www.salvia-flash.ch/shop/salviadivinorum/salvia-flash.ch/shop/salviadivinorum/privacy.php
http://www.salvia-flash.ch/shop/salviadivinorum/
The file looks bow like this:
define('HTTP_COOKIE_DOMAIN', '/');
define('HTTPS_COOKIE_DOMAIN', '/');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
define('DIR_WS_HTTP_CATALOG', 'salvia-flash.ch/shop/salviadivinorum/');
define('DIR_WS_HTTPS_CATALOG', 'salvia-flash.ch/shop/salviadivinorum/');
I think I tried every cominiation, still won't work.
@ FWR Media:
Ist this really correct? Do I have to define this tiwce?
define('HTTP_COOKIE_PATH', 'www.salvia-flash.ch');
define('HTTPS_COOKIE_PATH', 'www.salvia-flash.ch');
define('HTTP_COOKIE_PATH', '/shop/salviadivinorum/');
define('HTTPS_COOKIE_PATH', '/shop/salviadivinorum/'); This didn't work for me:
define('DIR_WS_HTTP_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
define('DIR_WS_HTTPS_CATALOG', 'www.salvia-flash.ch/shop/salviadivinorum');
It worked without the www infront.Hmmm...
No I'm just getting tired of writing the same things and made an error.
define('HTTP_SERVER', 'http://www.salvia-flash.ch');
define('HTTPS_SERVER', 'http://www.salvia-flash.ch');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', 'www.salvia-flash.ch');
define('HTTPS_COOKIE_DOMAIN', 'www.salvia-flash.ch');
define('HTTP_COOKIE_PATH', '/shop/salviadivinorum/');
define('HTTPS_COOKIE_PATH', '/shop/salviadivinorum/');
define('DIR_WS_HTTP_CATALOG', '/shop/salviadivinorum/');
define('DIR_WS_HTTPS_CATALOG', '/shop/salviadivinorum/');
KissMT Dynamic SEO Meta & Canonical Header Tags
KissER Error Handling and Debugging
KissIT Image Thumbnailer
Security Pro - Querystring protection against hackers ( a KISS contribution )
If you found my post useful please click the "Like This" button to the right.
Please only PM me for paid work.
#13
Posted 05 December 2009 - 10:58 PM
Sorry for the cirumstances....
#14
Posted 14 May 2012 - 05:19 PM
Works in IE with both cookies paths set to www.myserver
but not in chrome.
In chrome it works only as '' (with nothing specified.
This is what I have:
define('HTTP_SERVER', 'http://www.edilaudere.com');
define('HTTPS_SERVER', 'http://www.edilaudere.com');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '/grassfed/catalog/');
define('HTTPS_COOKIE_PATH', '/grassfed/catalog/');
define('DIR_WS_HTTP_CATALOG', '/grassfed/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/grassfed/catalog/');
Can anyone tell me what I am missing. I tried all kinds of things on the cookie path, since that seems to be the problem. There is nothing in my local folder.
#15
Posted 14 May 2012 - 08:31 PM
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
Need to be this:
define('HTTP_COOKIE_DOMAIN', 'www.edilaudere.com');
define('HTTPS_COOKIE_DOMAIN', 'www.edilaudere.com');
Or this:
define('HTTP_COOKIE_DOMAIN', '.edilaudere.com');
define('HTTPS_COOKIE_DOMAIN', '.edilaudere.com');
The path is OK.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#16
Posted 16 May 2012 - 06:33 PM
the only thing that works in ie is' www.edilaudere'
I cannot find anything that works in both. I've tried the slash before, slash after, with http........nothing.
What can it be?









