CrossDomain Flash

Your crossdomain file must be in: https//another_server:4443/crossdomain.xml

and must have:

<?xml version=”1.0″?>
<cross-domain-policy>
<allow-access-from domain=”baddy” />
</cross-domain-policy>

I have a flash swf in one http server : http://server1/……
And I want to use LoadVars.sendAndLoad to one script in one https server: https://server2/script.php

I have created a cross domain file accesible in:
https://server2/crossdomain.xml

with the following:
<?xml version=”1.0″?>
<cross-domain-policy>
<allow-access-from domain=”server1″ secure=”false” />
</cross-domain-policy>

but it doesnt work in IE. It seems like a bug. Because when I put the swf in the https sever (Server2) It doesn’t work neither. but I have tested in FireFox and it works. It is very extrange I dont know what to do. I cant Use XML method because the script wich I call have certains call and return standarts that are not XML. (its interface doesnt deppend of me so It have a established way of calling (POST variables))

Do you have any idea???

PHP Script Echo New Symbol From New articles

<?php
$last1 = strtotime("-2 months");
$last = date("Y-m-d", $last1);
//echo $last;
if($row_articles['date']>$last)
echo "<img src=\"images/new.gif\" width=\"30\" height=\"28\" hspace=\"1\" align=\"absmiddle\"  border=\"0\" />";
else
echo "<img src=\"images/image9.png\" width=\"16\" height=\"16\" hspace=\"3\" border=\"0\" align=\"texttop\" />"; ?>
<?php echo $row_articles['title'];  ?>

Add this page to Favorites

Add this page to Favorites

<span style='cursor:hand;text-decoration:underline;'onclick='window.external.AddFavorite(location.href,document.title);'>
Click here to add this page to your favorites</span>

Add another page to Favorites

<a href="javascript:window.external.addFavorite('http://www.prosoxi.gr','Prosoxi');">
Click here to add the homepage to your favorites!</a>

554 This server requires PTR for unauthenticated

Hi. This is the qmail-send program at ns1.###.##.
> I’m afraid I wasn’t able to deliver your message to the following
> addresses.
> This is a permanent error; I’ve given up. Sorry it didn’t work out.
>
> <@@@@@@@.@@>:
> ##.##.213.98 does not like recipient.
> Remote host said: 554 This server requires PTR for unauthenticated
> connections.
> Giving up on ##.##.213.98.

Continue reading “554 This server requires PTR for unauthenticated”

Make a Div Into a Link

It’s easy to make any div into a link by using a bit of javascript. You can use this technique to make any div “clickable”. For example, you might want your “header” div to link to your home page. Here’s how it’s done.

<div onclick="location.href='http://www.example.com';" style="cursor:pointer;"></div>

you can make your header div clickable by using this code:

<div id="header" onclick="location.href='<?php bloginfo('url');?>';" style="cursor:pointer;"></div>