thanks for the fix ace. :)
Im not sure about the edit on the go problem, mine works fine, and I re-installed it twice using the instructions and couldnt replicate the problem. Has anyone else had it?
The IE7 thing - I dont have access to IE7, or to a PC to install it on. It could possibly be due to IE7 not yet supporting opacity properly, as its only in beta2. Its works fine on all Mac browsers, and IE6 and FF on Windows.. Dont worry about it for the moment, as IE7 is having loads of bug problems displaying loads of big sites, and only a tiny percentage of skilled internet warriors (!) are using it ;D
Ben,
I think I have narrowed the problem down to a path issue. My site is on a shared hosting account, so I had to install it in a sub domain. The only way I was able to get the site to function was to make this modification to the functions.php:
[code]
/
if (strstr(basename(dirname($_SERVER['SCRIPT_NAME'])), "zen")) {
define('WEBPATH', dirname(dirname($_SERVER['SCRIPT_NAME'])));
} else {
define('WEBPATH', dirname($_SERVER['SCRIPT_NAME']));
}
/
define('SERVERPATH', dirname(dirname(FILE)));
define('SERVERCACHE', SERVERPATH . "/cache");
define('WEBCACHE', WEBPATH . "/cache");
define('WEBPATH', '');
[/code]
When I log in, im redirect to the full subdomain path, /username/www.domainname.com. I have to go back and refresh admin.php in order to access admin. And also, the admin link never shows up on the front page - im pretty sure zenphoto doesn't know I am logged in.
Any ideas?
Installed the theme within zenphoto 0.9 . Result:
"Fatal error: Call to a member function on a non-object in /homepages/30/d27367848/htdocs/nickman/wordpress/zenphoto/zen/template-functions.php on line 400"
shows up...?!?! When i change to the default theme, it´s all the same. Could anybody help me, if possible?
The issue seems to be with the cookie. When it is generated, its including the wrong path in the cookie information. I change /zen/ to / in the cookie and saved it, and that was it. Now I can see the admin link, and the ajax edit on the go stuff is working.
Again, this issue is with being on a subdomain, not the theme itself.