Just use following code in your .htaccess file or apache configration file.
AddType application/x-httpd-php .html
Or for .htm
AddType application/x-httpd-php .htm
I found following article useful.
http://php.about.com/od/advancedphp/p/html_php.htm
Just use following code in your .htaccess file or apache configration file.
AddType application/x-httpd-php .html
Or for .htm
AddType application/x-httpd-php .htm
I found following article useful.
http://php.about.com/od/advancedphp/p/html_php.htm
The apostrophe should be straight not curly in WordPress.
Just Open your functions.php file from your theme folder. If you did not created functions.php file then you can paste this code in your header.php file.
remove_filter(‘comment_text’, ‘wptexturize’);
remove_filter(‘the_title’, ‘wptexturize’);
remove_filter(‘the_content’, ‘wptexturize’);
This will solve your problem
Following script Will tested and working on following browsers.
1. Firefox 2+
2. Google chrome
3. Safari
4. IE 6, 7, 8
5. Opera
You can Use following code for Capturing the Mouse coordinates as per Document body
var isIE = document.all?true:false;
// document.onmousemove = getMousePosition;
// document.onmousemove = getscreenPosition;
function getMousePositionBrowsersizeWise(e) { // as per Document body
var _x;
var _y;
if (!isIE) {
_x = e.pageX;
_y = e.pageY;
}
if (isIE) {
_x = event.clientX + document.body.scrollLeft;
_y = event.clientY + document.body.scrollTop;
}
alert(_x);
alert(_y);
}
<div>You can Use following code for Capturing the Mouse coordinates as per Screen Resolution
function getMousePositionScreenWise() {
var ScrX = window.screenLeft != undefined ? window.screenLeft : window.screenX;
var ScrY = window.screenTop != undefined ? window.screenTop : window.screenY;
alert(ScrY);
alert(ScrX);
}Following script Will tested and working on following browsers.1. Firefox 2+2. Google chrome 3. Safari4. IE 6, 7, 85. Opera
You can Use following code for Capturing the Mouse coordinates as per Document body
<div>var isIE = document.all?true:false;// document.onmousemove = getMousePosition;// document.onmousemove = getscreenPosition;
function getMousePositionBrowsersizeWise(e) { // as per Document body var _x; var _y; if (!isIE) { _x = e.pageX; _y = e.pageY; } if (isIE) { _x = event.clientX + document.body.scrollLeft; _y = event.clientY + document.body.scrollTop; }
alert(_x);alert(_y); }
<div>You can Use following code for Capturing the Mouse coordinates as per Screen Resolution
function getMousePositionScreenWise() {var ScrX = window.screenLeft != undefined ? window.screenLeft : window.screenX;var ScrY = window.screenTop != undefined ? window.screenTop : window.screenY;
alert(ScrY);alert(ScrX);
}Following script Will tested and working on following browsers.1. Firefox 2+2. Google chrome3. Safari4. IE 6, 7, 85. Opera
You can Use following code for Capturing the Mouse coordinates as per Document body
var isIE = document.all?true:false;// document.onmousemove = getMousePosition;// document.onmousemove = getscreenPosition;function getMousePositionBrowsersizeWise(e) { // as per Document bodyvar _x;var _y;if (!isIE) {_x = e.pageX;_y = e.pageY;}if (isIE) {_x = event.clientX + document.body.scrollLeft;_y = event.clientY + document.body.scrollTop;}alert(_x);alert(_y);}
You can Use following code for Capturing the Mouse coordinates as per Screen Resolution
function getMousePositionScreenWise() {var ScrX = window.screenLeft != undefined ? window.screenLeft : window.screenX;var ScrY = window.screenTop != undefined ? window.screenTop : window.screenY;alert(ScrY);alert(ScrX);}
Following script Will tested and working on following browsers.1. Firefox 2+2. Google chrome 3. Safari4. IE 6, 7, 85. Opera
You can Use following code for Capturing the Mouse coordinates as per Document body
var isIE = document.all?true:false;// document.onmousemove = getMousePosition;// document.onmousemove = getscreenPosition;
function getMousePositionBrowsersizeWise(e) { // as per Document body var _x; var _y; if (!isIE) { _x = e.pageX; _y = e.pageY; } if (isIE) { _x = event.clientX + document.body.scrollLeft; _y = event.clientY + document.body.scrollTop; }
alert(_x);alert(_y); }
You can Use following code for Capturing the Mouse coordinates as per Screen Resolution
function getMousePositionScreenWise() {var ScrX = window.screenLeft != undefined ? window.screenLeft : window.screenX;var ScrY = window.screenTop != undefined ? window.screenTop : window.screenY;
alert(ScrY);alert(ScrX);
}
Servers should be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations may not properly support these lengths.
The spec for URL length does not dictate a minimum or maximum URL length, but implementation varies by browser. On Windows: Opera supports ~4050 characters, IE 4.0+ supports exactly 2083 characters, Netscape 3 -> 4.78 support up to 8192 characters before causing errors on shut-down, and Netscape 6 supports ~2000 before causing errors on start-up.
1. Network: Linkedin
Registered Members: LinkedIn has 30 million professional members from around the world representing 150 industries.
2. Network: Ecademy
Registered Members: Membership numbers aren’t disclosed.
3. Network: Xing
Registered Members: 6 million members, mainly Europe (Germany) and China.
4. Network: Ryze
Registered Members: 500,000 members
5. Network: Plaxo
Registered Members: 15 million members
6. Spoke
Registered Members: Over 60 million people
7. Silicon India
Registered Members: 500,000 members
8. brijj.com
Registered Members: Membership numbers aren’t disclosed.
9. facebook.com
Registered Members: 321.1 million people have a facebook by 2009.
In one of project I got requirement of to exclude images from WordPress post.
I written following code for excluding the image from Post
Above line I added in showing post without image.
<?php
$FormatedContent = content_with_formatting();
$content = the_content();
$postWithoutImage = preg_replace(‘/<img[^>]+./’,” $FormatedContent);
echo $postWithoutImage;
?>
In above code we are checking the image tag and replacing with none.
If you want to find all images from post then Use following command.
preg_match_all(‘/<img[^>]+>/i’,YOUR_text, $result);
You need to add following function in your function.php file(Theme files).
function content_with_formatting($more_link_text = ‘(more…)’, $stripteaser = 0, $more_file = ”)
{
$content = get_the_content($more_link_text, $stripteaser, $more_file);
$content = apply_filters(‘the_content’, $content);
$content = str_replace(‘]]>’, ‘]]>’, $content);
return $content;
}
If you want to Hide all images using CSS then use following code
img{
display:none;
}
Just put above code in your style.css file.
You can download Aapache activeMQ from following URL;
http://activemq.apache.org/activemq-530-release.html
Choose the your OS(Linux/Windows). After downloading apache-activemq-5.3.0-bin.zip.
Extract the ActiveMQ. Open command prompt and go to activeMQ/bin directory and run the “activemq” command.
ActiveMQ will start without configration.
If you are running ActiveMQ on local machine than you can open the ActiveMQ’s Admin from following URL;
http://0.0.0.0:8161/admin/ (8161 is default port)
If you want to run ActiveMQ with XML file. Use following command
#bin/activemq xbean:file:../config.xml
For more information Please visit the http://activemq.apache.org/
I found usefull following URL working with Javascript Array.
http://www.javascriptkit.com/jsref/arrays.shtml
Here is my code to check value from array
var MyArrayVar = new Array(1, 2, 3, 4, 5);
testVar = 2;
if(MyArrayVar.indexOf(testVar) >= 0) {
alert("We got testVar in MyArrayVar");
}else{
alert("We did not got testVar in MyArrayVar");
}
As per this condition I am chekcing the What is returned by this MyArrayVar.indexOf(testVar).
You can check this by using “alert(MyArrayVar.indexOf(testVar));” line.
You will get this number value if testVar number or value present in Array.
You that value is not present in Array you will get the -1 result always.
Note: Dont became root because these files will crash your linux.
Use following commands for installing the IE7 on your box.
#su
#ROOT_PASSWORD
#yum install wine cabextract
#exit
Here we are exiting the root user
#cd /tmp
#wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
#tar xvfz ies4linux-latest.tar.gz
#cd ies4linux-*
#./ies4linux –no-flash –install-ie7
I tried following command multiple times than I got succeed(6 or 7 times). Many times this command not executed properly.
#./ies4linux –no-flash –install-ie7
To launch IE6 Type on command prompt:
#ie6
To launch IE7 Type on command prompt:
#ie7
My comments
IE6 and 7 is running properly on my machine but some time it gives me error about IE7.
I am looking forward to solve that issue.