Description: upgrade older version to joomla 3.9.x -> missing install tab item (folder, upload, url)
Solution: Administrator-> Menu Extension -> Update -> tab Discover -> choose type Install -> Re-install
Description: upgrade older version to joomla 3.9.x -> missing install tab item (folder, upload, url)
Solution: Administrator-> Menu Extension -> Update -> tab Discover -> choose type Install -> Re-install
NOTE: REQUIRE BACKUP BEFORE CONTINUE
Step 1: upgrade 3.5.1 to 3.6.5
1.1: Upgrade direct from administator
1.2: Or download Joomla_3.6.5-Stable-Update_Package.zip then extract
Result require: version 3.6.5: DONE
Step 2: upgade joomla 3.6.5 to joomla 3.9.x
Upgrade direct at administrator
Result require: run 100%
Step 3: 1054 Unknown column a.client_id - Fix error from phpmyadmin
Replace # by database prefer
ALTER TABLE `#_menu_types` ADD COLUMN `client_id` int(11) NOT NULL DEFAULT 0;
UPDATE `#_menu` SET `published` = 1 WHERE `menutype` = 'main' OR `menutype` = 'menu';
Result require: Run site normal
Step4: Database error
Run database fix
Require required: articles, category, modules good work
Description: load feed from blogspot.com image reduce 300px, 400px. Need upto 1024px
File edit: com_newsfeeds\views\newsfeed\tmpl\default.php
Line 133:
<?php echo str_replace(''', "'", $text); ?>
Change to:
<?php
$text = str_replace('/s320/', '/s1024/', $text);
$text = str_replace('/s400/', '/s1024/', $text);
echo str_replace(''', "'", $text); ?>
Image result
<?php
// PHP code to obtain country, city,
// continent, etc using IP Address
//$ip = '52.25.109.230';
$ip= $_SERVER [ "REMOTE_ADDR" ];
// Use JSON encoded string and converts
// it into a PHP variable
$ipdat = @json_decode(file_get_contents(
"http://www.geoplugin.net/json.gp?ip=" . $ip));
//print_r($ipdat);
echo 'Your IP: ' . $ip . "<br/>";
echo 'Country Name: ' . $ipdat->geoplugin_countryName . "<br/>";
echo 'Country code: ' . $ipdat->geoplugin_countryCode . "<br/>";
echo 'City Name: ' . $ipdat->geoplugin_city . "<br/>";
echo 'Continent Name: ' . $ipdat->geoplugin_continentName . "<br/>";
echo 'Latitude: ' . $ipdat->geoplugin_latitude . "<br/>";
echo 'Longitude: ' . $ipdat->geoplugin_longitude . "<br/>";
echo 'Currency Symbol: ' . $ipdat->geoplugin_currencySymbol . "<br/>";
echo 'Currency Code: ' . $ipdat->geoplugin_currencyCode . "<br/>";
echo 'Timezone: ' . $ipdat->geoplugin_timezone;
?>


