
Originally Posted by
madfastride
Betty,
Sorry no finger stomping here! This sounds like it could be a little bit more complicated of a problem... What version of ZC are you running? What version of PHP (you might not know this)? Have you made any other changes? What files were changed that both mods effect? Can you post the code in the file that the error is referring to? Maybe a few lines before and after also.
Thanks,
Zencart is version 1.38a, Php is version 4.4.8
Here are lines 576-616 of the file:
Code:
function ep_chmod_check($tempdir)
{
global $epMsgStack, $config_fail;
if (!file_exists($tempdir . ".") || !ep_is_writable($tempdir))
{
@chmod($tempdir, 0700);
if (!ep_is_writable($tempdir))
{
@chmod($tempdir, 0777);
if (!ep_is_writable($tempdir))
{
if (strstr(php_uname(), 'Windows'))
{
$epMsgStack->add(EASYPOPULATE_MSGSTACK_TEMP_FOLDER_MISSING, 'warning');
$config_fail[] = 'EASYPOPULATE_FAIL_CONFIG_TEMPDIR_MISSING_WIN';
}
else
{
$epMsgStack->add(EASYPOPULATE_MSGSTACK_TEMP_FOLDER_MISSING, 'warning');
$config_fail[] = 'EASYPOPULATE_FAIL_CONFIG_TEMPDIR_MISSING';
}
$chmod_check = false;
}
else
{
$epMsgStack->add(EASYPOPULATE_MSGSTACK_TEMP_FOLDER_PERMISSIONS_SUCCESS, 'success');
$chmod_check = true;
}
}
else
{
$epMsgStack->add(EASYPOPULATE_MSGSTACK_TEMP_FOLDER_PERMISSIONS_SUCCESS, 'success');
$chmod_check = true;
}
}
else
{
$chmod_check = true;
}
return $chmod_check;
}
I'm actually thinking of removing easy populate since this particular store doesn't need it. It's just a part of the install package I use. Problem is I don't know how to remove it from the db, unless it's just a matter of getting rid of some tables.
I do have other mods installed as well that I got an error message from, one being fckeditor v2.5. So I turned it off. I have image handler, quick updates, google base, google sitemaps, google analytics, ty package tracker, recently viewed, and I can't remember right now if there are any more.
thank you,
betty
Bookmarks