Daniel Kerr

Results 110 comments of Daniel Kerr

i can not see any issue. can u do a recording of what is happening.

it works by being redirected from the admin upgrade button. ``` if (isset($this->request->get['admin'])) { $admin = basename($this->request->get['admin']); } else { $admin = 'admin'; } ```

ok just tested and it does work. ill post some example code.

``` $url = 'http://localhost/opencart-master/upload/index.php?route=api/account/login&language=en-gb&store_id=0'; $request_data = [ 'username' => 'Default', 'key' => '' ]; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curl,...

then ``` $url = 'http://localhost/opencart-master/upload/index.php?route=api/sale/order.load&language=en-gb&store_id=0&order_id=1'; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 30); curl_setopt($curl, CURLOPT_TIMEOUT, 30); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl,...

@AJenbo im getting a bit worried about some of ur commits now.