Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Hi,
The latest versions of Firefox and Chrome browsers do not have the feature to print "Each frame seperately" , how do we resolve this to batch print forms generated by "Super Orders" ?
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
For now, my clients have reverted to an older version of Firefox, but that's far from ideal.
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Quote:
Originally Posted by
harry2cool
Hi,
The latest versions of Firefox and Chrome browsers do not have the feature to print "Each frame seperately" , how do we resolve this to batch print forms generated by "Super Orders" ?
I have put it on the todo list for Super Orders 5 see for the issue : https://github.com/Zen4All/Zen-Cart_...rders/issues/8
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Hi all
Firstly, really excited to see a new version of Super Orders. Excited to try it out. I'm running 1.5.6c and have just tried to install on my store (cloned test site).
I logged into the admin, uploaded the modded files and clicked a link in the admin. I get the following error:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE configuration_group_id =' at line 3
in:
[UPDATE configuration_group SET sort_order = WHERE configuration_group_id = ;]
Any ideas?
Thanks
Dene
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Once again, I'm wondering the unwonderable. With ZC 1.5.6 it makes little sense to modify core admin files, and I see that six months ago, the use of modifiers was added to the list for release 5.1.0 of Super Orders. But there is no visibility of whether or not there has been any progress towards that milestone.
Now I know that the people developing this are not getting paid for it, that they are busy, they have other committments. I don't need telling that again.
It would be a huge help to know whether there is any chance of v5.0.0 or 5.1.0 of Super Orders emerging in the next few weeks or months.
The last commits on github were months ago, but the next one might be later today, or not for another year or two: there's no way to tell from github.
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Still on the to-do list, moving up slowly. :cool: No dates set, an at the moment I have no idea when I can/will continue.
Quote:
Originally Posted by
hairydog
Once again, I'm wondering the unwonderable. With ZC 1.5.6 it makes little sense to modify core admin files, and I see that six months ago, the use of modifiers was added to the list for release 5.1.0 of Super Orders. But there is no visibility of whether or not there has been any progress towards that milestone.
Now I know that the people developing this are not getting paid for it, that they are busy, they have other committments. I don't need telling that again.
It would be a huge help to know whether there is any chance of v5.0.0 or 5.1.0 of Super Orders emerging in the next few weeks or months.
The last commits on github were months ago, but the next one might be later today, or not for another year or two: there's no way to tell from github.
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Quote:
Originally Posted by
Design75
Still on the to-do list, moving up slowly. :cool: No dates set, an at the moment I have no idea when I can/will continue.
Would this be something that could be moved up the list were enough contributors willing to contribute?
Re: Super Orders v4.0 Support Thread
init_so_config.php not working in php 7 /zencart 5.6 duw to this code
if( mysql_num_rows( mysql_query("SHOW TABLES LIKE '".DB_PREFIX."so_payment_types'"))){
$sql = "TRUNCATE TABLE ".DB_PREFIX."so_payment_types";
$db->Execute($sql);
}
Kindly help
Re: Super Orders v4.0 Support Thread
Quote:
Originally Posted by
diptimoy
init_so_config.php not working in php 7 /zencart 5.6 duw to this code
if( mysql_num_rows( mysql_query("SHOW TABLES LIKE '".DB_PREFIX."so_payment_types'"))){
$sql = "TRUNCATE TABLE ".DB_PREFIX."so_payment_types";
$db->Execute($sql);
}
Kindly help
Change that section to use the Zen Cart $sniffer to see if the table exists:
Code:
if ($sniffer->table_exists(DB_PREFIX . 'so_payment_types')) {
$db->Execute("TRUNCATE TABLE " . DB_PREFIX . "so_payment_types");
}
Better yet, there should be a constant
Code:
define('TABLE_SO_PAYMENT_TYPES', DB_PREFIX . 'so_payment_types');
that's used when referencing that table.
Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)
Quote:
Originally Posted by
Deno
Hi all
Firstly, really excited to see a new version of Super Orders. Excited to try it out. I'm running 1.5.6c and have just tried to install on my store (cloned test site).
I logged into the admin, uploaded the modded files and clicked a link in the admin. I get the following error:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE configuration_group_id =' at line 3
in:
[UPDATE configuration_group SET sort_order = WHERE configuration_group_id = ;]
Any ideas?
Thanks
Dene
Were you able to solve this issue? I am having the same problem.