What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
inGallery
I have version 3.7.3

3.7.3 Released: 17 February 2026
  • Small fixes
3.7.2 Released: 30 January 2026
  • Fixed installation on J6
3.7.1 Released: 30 January 2026
  • Fixed installation
3.7.0 Released: 30 January 2026
  • Added Joomla 6.x support without compatibility plugin
3.6.2 Released: 26 January 2026
  • Maintenance Update
3.6.1 Released: 02 December 2025
  • Fixed error message upon installation on Joomla 5 and 6
3.6.0 Released: 17 November 2025
  • Added Call to Action buttons
unfortunately it is not working with the latest version of joomla
You need Joomla! 6.0.999 or earlier to install this component
Error installing package

we need

InGallery

  • Version:3.8.0
  • Last update:22 april 2026
 
Reacted by:
Partially nulled, bypassing the request and making a coding update

Own last version for last joomla.

This partially works, but... testing at production site, when making a call, gives an aswer:
Unfortunately, an error occurred
API {UserData:XxXX} error: Invalid License Key.

So it is almost working, but needs a finish line of code to null it.

Only problem when making a call, asks website before giving api answer from instagram.

purchase_code
ingallery.php
$config = JComponentHelper::getParams('com_ingallery');
$URI = JUri::getInstance();
$protocol = 'http' . ((int) $config->get('api_ssl_use', 1) == 1 ? 's' : '');
if ($type == 'UserData') {
$apiURL = $protocol . '://api.example.com/ingallery/getUser/?user=' . $_data;
} else if ($type == 'HashtagData') {
$apiURL = $protocol . '://api.example.com/ingallery/getHashtag/?hashtag=' . $_data;
} else if ($type == 'ItemData') {
$apiURL = $protocol . '://api.example.com/ingallery/getItem/?code=' . $_data;
} else if ($type == 'LocationData') {
$apiURL = $protocol . '://api.example.com/ingallery/getLocation/?location=' . $_data;
} else if ($type == 'Picture') {
$apiURL = $protocol . '://api.example.com/ingallery/getPicture/?url=' . urlencode(base64_encode($_data));
}else {
$apiURL = $protocol . '://api.example.com/ingallery/getUrl/?scope=' . $_data;
}
$responce = self::request($apiURL, array(
'domain' => $URI->getHost(),
'license_key' => $config->get('purchase_code', ''),
), null, 30, true);

Doing my best, maybe somebody can help me with it? thanks @everyone
 

Attachments

  • ingallery-installation-package-3.8.0.zip
    683.7 KB · Views: 3
Reacted by:
Top