Re: FEEDBACK ON BETA of v1.5.5
There is a mistyping in the preceding message.
Below how it had to be.
Quote:
Originally Posted by
enzo-ita
There is a small bug in /admin/includes/init_includes/init_errors.php
line 165 is
PHP Code:
if (file_exists($check_path) && is__writeable($check_path)) {
and should be
PHP Code:
if (file_exists($check_path) && is_writeable($check_path)) {
ciao from Italy
enzo
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
enzo-ita
There is a mistyping in the preceding message.
Below how it had to be.
Also, the line number is off... On github this is currently line 52 not 165 for ZC 1.5.5.
Also there is a ZC function with that name in the filesystem so not necessarily an error.
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
mc12345678
Also, the line number is off... On github this is currently line 52 not 165 for ZC 1.5.5.
Also there is a ZC function with that name in the filesystem so not necessarily an error.
Okay.. Sorry, I looked at several wrong versions of the file... Anyways, there is a function is__writeable that has been added at least to the admin side in includes/functions/general.php which means that the code should work. Not sure how/when line 165 existed to have that content (personally not going to search for that), but the current version does have the function (two underscores) as well as that usage in that file.
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
enzo-ita
There is a small bug in /admin/includes/init_includes/init_errors.php
line 165 is
PHP Code:
if (file_exists($check_path) && is__[/COLOR]writeable($check_path)) {
and should be
PHP Code:
if (file_exists($check_path) && is_writeable($check_path)) {
ciao from Italy
enzo
Thanks. Good eye to spot that. However, it is intentional.
We might rename it to zen_is_writable in 2.0 or something, but for now the double-underscore is intentional.
Re: FEEDBACK ON BETA of v1.5.5
Fresh new install on a Wamp server. localhost/morrisgiftshop/zc_install/index.php is this an upgrade or new install?
ERROR:
500
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
DrByte
Thanks. Good eye to spot that. However, it is intentional.
We might rename it to zen_is_writable in 2.0 or something, but for now the double-underscore is intentional.
Well, it is not a matter of good eye. I do not remember what caused it and I can not reproduce this but I got an log file saying that a call was made to a non exsisting function is_writable and I found that that function was written is__writable.
Now you tell me that i__writable is intentional so I think I need to correct that back. Right?
Ciao from Italy
enzo
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
mc12345678
Okay.. Sorry, I looked at several wrong versions of the file... Anyways, there is a function is__writeable that has been added at least to the admin side in includes/functions/general.php which means that the code should work. Not sure how/when line 165 existed to have that content (personally not going to search for that), but the current version does have the function (two underscores) as well as that usage in that file.
About the line number, I noticed that a weird problem happens to me. I use notepad++ for editing files. Some files when dwld with livezilla for editing gets added empty lines. If I delete the empty lines then the file becomes unusable. Probably I indicated line 165 becaus of that reason.
ciao from Italy
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
mtechama
Fresh new install on a Wamp server. localhost/morrisgiftshop/zc_install/index.php is this an upgrade or new install?
ERROR:
500
A 500 error is often hard to track down, and typically means a security problem has happened on the server, or PHP has encountered a fatal error.
If it's a PHP problem, you may find it explained in the /logs/ folder. The logs for zc_install are named zcInstall_xxxxxxxxx.log and if they're reporting a PHP error, they're zcInstall-DEBUG-xxxxxx.log
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
lat9
The language-changer in the header's upper-left corner. It's only visible when multiple languages are defined in the store/admin.
Found and fixed the CSS for this.
Re: FEEDBACK ON BETA of v1.5.5
Quote:
Originally Posted by
lat9
I can't replicate the Products Expected issue on a fresh install of the 155 branch contents downloaded a couple of minutes ago.
Thanks for the update.