How to remove controller and action from realurl + typo3 extbase


This is very important part for SEO Base URL. So we must need to short URL.

We can remove the controller or the action in the RealURL config.

Following should do the trick, which will removes both action and controller from a detail-link.

'faq' => array(
    array(
        'GETvar' => 'tx_jsfaq_faq[action]',
        'valueMap' => array(
            'detail' => '',
        ),
        'noMatch' => 'bypass'
    ),
    array(
        'GETvar' => 'tx_jsfaq_faq[controller]',
        'valueMap' => array(
            'detail' => '',
        ),
        'noMatch' => 'bypass'
    ),
    array(
        'GETvar' => 'tx_jsfaq_faq[faq]',
        'lookUpTable' => array(
            'table' => 'tx_jsfaq_domain_model_faq',
            'id_field' => 'uid',
            'alias_field' => 'question',
            'addWhereClause' => ' AND NOT deleted',
            'useUniqueCache' => 1,
            'useUniqueCache_conf' => array(
                'strtolower' => 1,
                'spaceCharacter' => '-',
                ),
            'autoUpdate' => 1,
        ),
    ),
),	

I hope this will help you more. nojy 😉

If you have any queries, please do not hesitate to contact me at Jainish Senjaliya

How to Get county name from latitude and longitude Using PHP


 
For get county name from latitude and longitude Using PHP

$geocode_stats = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?latlng=23.0333,72.6167&sensor=false");
$output_deals = json_decode($geocode_stats);
$country = $output_deals->results[2]->address_components[4]->long_name;

If you have any queries, please do not hesitate to contact me at Jainish Senjaliya

How to Get Current country name and latitude and longitude using Javascript


Get Current country name and latitude and longitude using Javascript

$.getJSON('http://smart-ip.net/geoip-json/?callback=?', function (data) {
    $("#hello").html('Latitude: ' + data.latitude +
        '<br /> Longitude: ' + data.longitude +
        '<br /> Country: ' + data.countryName);
});

<div id="hello"></div>

If you have any queries, please do not hesitate to contact me at Jainish Senjaliya

How do i get User IP Address, Latitude, Longitude, Country, City, State Details


 


 
To get current user location details

Please copy below code.

<script src="http://code.jquery.com/jquery-1.8.2.js" type="text/javascript"></script>
<script type="text/javascript">
var strip, strcountry, strcity, strregion, strlatitude, strlongitude, strtimezone

function GetUserInfo(data) {
	strip = data.host; strcountry = data.countryName; strcity = data.city;
	strregion = data.region; strlatitude = data.latitude; strlongitude = data.longitude;
	strtimezone = data.timezone;
}
$(function () {
	BindUserInfo();
})
function BindUserInfo() {
	document.getElementById('lblIP').innerHTML = strip;
	document.getElementById('lblCountry').innerHTML = strcountry;
	document.getElementById('lblCity').innerHTML = strcity;
	document.getElementById('lblregion').innerHTML = strregion;
	document.getElementById('lbllatitude').innerHTML = strlatitude;
	document.getElementById('lbllongitude').innerHTML = strlongitude;
	document.getElementById('lbltimezone').innerHTML = strtimezone;
}
</script>
<script type="text/javascript" src="http://smart-ip.net/geoip-json?callback=GetUserInfo"></script>

Below is a HTML

<table id="tbDetails" cellpadding="2" cellspacing="2" style=" border:1px solid #000; font-family:Verdana;" >
	<tr style="background-color:#C; color:White; font-weight:bold">
		<td colspan="2" align="center">User Information</td>
	</tr>
	<tr style="border:solid 1px #000000">
		<td align="right">IP:</td>
		<td><label id="lblIP"/></td>
	</tr>
	<tr>
		<td align="right">Country:</td>
		<td><label id="lblCountry"/></td>
	</tr>
	<tr>
		<td align="right">City:</td>
		<td><label id="lblCity"/></td>
	</tr>
	<tr>
		<td align="right">Region:</td>
		<td><label id="lblregion"/></td>
	</tr>
	<tr>
		<td align="right">latitude:</td>
		<td><label id="lbllatitude"/></td>
	</tr>
	<tr>
		<td align="right">Longitude:</td>
		<td><label id="lbllongitude"/></td>
	</tr>
	<tr>
		<td align="right">Time Zone:</td>
		<td><label id="lbltimezone"/></td>
	</tr>
</table>

If you have any queries, please do not hesitate to contact me at Jainish Senjaliya