luarb
Forum Replies Created
-
Forum: Hacks
In reply to: Allow HTTP_USER_AGENT to collect data from users.@bcworkz thank you so much my friend .
It worked π !Forum: Hacks
In reply to: Allow HTTP_USER_AGENT to collect data from users.I found a very useful function for detecting user os and browser ,
it works very well , but when i put it inside wordpress
it doenst work .`<?php
$user_agent = $_SERVER[‘HTTP_USER_AGENT’];
function getOS() {
global $user_agent;
$os_platform = “Unknown OS Platform”;
$os_array = array(
‘/windows nt 10/i’ => ‘Windows 10’,
‘/windows nt 6.3/i’ => ‘Windows 8.1’,
‘/windows nt 6.2/i’ => ‘Windows 8’,
‘/windows nt 6.1/i’ => ‘Windows 7’,
‘/windows nt 6.0/i’ => ‘Windows Vista’,
‘/windows nt 5.2/i’ => ‘Windows Server 2003/XP x64’,
‘/windows nt 5.1/i’ => ‘Windows XP’,
‘/windows xp/i’ => ‘Windows XP’,
‘/windows nt 5.0/i’ => ‘Windows 2000’,
‘/windows me/i’ => ‘Windows ME’,
‘/win98/i’ => ‘Windows 98’,
‘/win95/i’ => ‘Windows 95’,
‘/win16/i’ => ‘Windows 3.11’,
‘/macintosh|mac os x/i’ => ‘Mac OS X’,
‘/mac_powerpc/i’ => ‘Mac OS 9’,
‘/linux/i’ => ‘Linux’,
‘/ubuntu/i’ => ‘Ubuntu’,
‘/iphone/i’ => ‘iPhone’,
‘/ipod/i’ => ‘iPod’,
‘/ipad/i’ => ‘iPad’,
‘/android/i’ => ‘Android’,
‘/blackberry/i’ => ‘BlackBerry’,
‘/webos/i’ => ‘Mobile’
);foreach ($os_array as $regex => $value) {
if (preg_match($regex, $user_agent)) {
$os_platform = $value;
}
}
return $os_platform;}
function getBrowser() {
global $user_agent;
$browser = “Unknown Browser”;
$browser_array = array(
‘/msie/i’ => ‘Internet Explorer’,
‘/firefox/i’ => ‘Firefox’,
‘/safari/i’ => ‘Safari’,
‘/chrome/i’ => ‘Chrome’,
‘/opera/i’ => ‘Opera’,
‘/netscape/i’ => ‘Netscape’,
‘/maxthon/i’ => ‘Maxthon’,
‘/konqueror/i’ => ‘Konqueror’,
‘/mobile/i’ => ‘Handheld Browser’
);
foreach ($browser_array as $regex => $value) {
if (preg_match($regex, $user_agent)) {
$browser = $value;
}
}
return $browser;}
$user_os = getOS();
$user_browser= getBrowser();
$device_details = “<strong>Browser: </strong>”.$user_browser.”
<strong>Operating System: </strong>”.$user_os.””;
print_r($device_details);
?>`Link where the code is inside wordpress.
http://photolicious.website/5-photo-tutorial-to-make-your-smile-perfect/Link where the code is outside wordpress.
http://photolicious.website/os/user-os.phpCan someone help me please ? It is very important.
Thank you!
Forum: Hacks
In reply to: Embed Site URL and Home inside the code.I found something that worked like a charm,
i added this lines on wp-config.php :
$homewp=’http://www.site.com’;
$locationwp=’http://www.site.com’;
define(‘WP_HOME’,$homewp);
define(‘WP_SITEURL’,$locationwp);Forum: Hacks
In reply to: Embed Site URL and Home inside the code.lol! no problem man im the admin and thanks for the advice .
Would you please show me an example where can
i do this ?Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?Thanks mate.
Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?That is an awesome solution my friend.
I’m going to use php , ssh and bash to do this .
What is needed to use ssh in php ?
So i can use bash scripts to do what i am trying to.Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?Problem is ,
this is not an optimal solution .
This is what i am using but its not what i want to do
for the rest of my “posting”.Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?Yes 2 wordpress same host ,
I know that i can have them share same database but different prefix,
What i want to achieve is both sites have the same content .
I am trying to define table wp_option to be different on those wordpress and all the other tables to be the same .
So when i have 2 installations
sharing the same tables but only option table to be different
they will have different url and home links.
The content will be the same and the url different.Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?Than how can i make it possible for them to share the content ?