Topic: Import Transactions not working
I'm on the latest version (oct 2023). I'm trying to use the import transactions feature. I have about 5 sales transactions to import. I've formatted my data like the example. However after I select the file and click process transactions (with or without the trial run selected) the spinner comes up on the screen and nothing happens.
I am getting some warnings in the log but I don't think they are fatal. I also tried uploading a document, so I don't think it's a permission problem for upload (BTW where do these files upload to?)
Can anyone help or give me ideas what to try next. I'm trying to move stuff over from QB and this is my first hurdle!
[30-Oct-2023 00:10:27 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_repgen::$path is deprecated
[30-Oct-2023 00:10:27 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_items::$path is deprecated
[30-Oct-2023 00:10:27 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_multijournalentries::$path is deprecated
[30-Oct-2023 00:11:36 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_transactions::$path is deprecated
[30-Oct-2023 00:11:36 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_repgen::$path is deprecated
[30-Oct-2023 00:11:36 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_items::$path is deprecated
[30-Oct-2023 00:11:36 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_multijournalentries::$path is deprecated
[30-Oct-2023 00:11:37 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_transactions::$path is deprecated
[30-Oct-2023 00:11:37 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_repgen::$path is deprecated
[30-Oct-2023 00:11:37 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_items::$path is deprecated
[30-Oct-2023 00:11:37 Asia/Taipei] 1::hooks.inc:245:[before upgrade] Creation of dynamic property hooks_import_multijournalentries::$path is deprecated
[30-Oct-2023 00:14:51 Asia/Taipei] 1:admin:frontaccounting.php:66: Creation of dynamic property front_accounting::$renderer is deprecated
This is the relevant function: (line 245 is the last nine before the first closing bracket.
// install hooks provided by active extensions
if (isset($installed_extensions) && !empty($installed_extensions)) {
foreach($installed_extensions as $ext) {
$hook_class = 'hooks_'.$ext['package'];
if ($ext['active'] && class_exists($hook_class)) {
$Hooks[$ext['package']] = new $hook_class;
$Hooks[$ext['package']]->path = $ext['path'];
}
}
}
}