Welcome Guest, Not a member yet? Register   Sign In
Cache & Multi-domains
#2

[eluser]TheFuzzy0ne[/eluser]
Welcome to the CodeIgniter forums!

The '.' in your regular expressions need escaping:
Code:
if (preg_match('#my_site\.fr#i', $_SERVER['HTTP_HOST'])) {

I would suggest that you use strpos instead:
Code:
if (strpos($_SERVER['HTTP_HOST'], 'my_site.fr') !== FALSE) {

However, I'm not sure that this is your problem.

Where are you loading your language files? Have you made sure your cache directory is writable?

I would suggest you get it working correctly without caching, and then you can start caching things.


Messages In This Thread
Cache & Multi-domains - by El Forum - 03-19-2013, 04:05 AM
Cache & Multi-domains - by El Forum - 03-19-2013, 04:29 AM
Cache & Multi-domains - by El Forum - 03-19-2013, 06:41 AM
Cache & Multi-domains - by El Forum - 03-19-2013, 07:25 AM
Cache & Multi-domains - by El Forum - 03-19-2013, 07:50 AM
Cache & Multi-domains - by El Forum - 03-19-2013, 07:59 AM
Cache & Multi-domains - by El Forum - 03-20-2013, 01:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB