Hello to everyone,
I have a wordpress plugin with multiple banks. each bank has a separate folder. I am using a structure like /myplugin/lib/bankname/mycompany_bankname.php (for CitiBank -> /myplugin/lib/citibank/mycompany_citibank.php etc.) i stored lib name (bank name) in the transaction table. After the user returns to the website after the 3d payment screen, I pull the lib name from the transaction table and call the bank's file again to confirm the relevant transaction.
Some of our customers using litespeed web server are having trouble getting paid. when i inspected the problem i realized it was a database error. Because most values are NULL in the transaction table so it gets Fatal error: Uncaught Error: Class 'mycompany_' not found in /var/www/vhosts/xxx.com/httpdocs/wp-content/plugins/myplugin/myplugin.php:371
Does not correctly generate filename because it cannot find lib name in transation table.
Our customers using Apache server do not have such a problem.
I convey that they should use apache server. I haven't been able to fix this problem for a few months. can you help me ?
I have a wordpress plugin with multiple banks. each bank has a separate folder. I am using a structure like /myplugin/lib/bankname/mycompany_bankname.php (for CitiBank -> /myplugin/lib/citibank/mycompany_citibank.php etc.) i stored lib name (bank name) in the transaction table. After the user returns to the website after the 3d payment screen, I pull the lib name from the transaction table and call the bank's file again to confirm the relevant transaction.
Some of our customers using litespeed web server are having trouble getting paid. when i inspected the problem i realized it was a database error. Because most values are NULL in the transaction table so it gets Fatal error: Uncaught Error: Class 'mycompany_' not found in /var/www/vhosts/xxx.com/httpdocs/wp-content/plugins/myplugin/myplugin.php:371
Does not correctly generate filename because it cannot find lib name in transation table.
Our customers using Apache server do not have such a problem.
I convey that they should use apache server. I haven't been able to fix this problem for a few months. can you help me ?