Configurando SSL no MAMP 3.02

Acesse o terminal, digite SU para obter permissão de root…

Gerando o certificado local…

cd /Applications/MAMP/conf/apache

# generate a private key (will request a password twice)
openssl genrsa -des3 -out server.key 1024

# generate certificate signing request (same password as above)
openssl req -new -key server.key -out server.csr

# Answer the questions
Country Name (2 letter code) [AU]: BR
State or Province Name (full name) [Some-State]: Rio Grande do Sul
Locality Name (eg, city) []: Pelotas
Organization Name (eg, company) [Internet Widgits Pty Ltd]: 2WAY DIGITAL SOLUTIONS
Organizational Unit Name (eg, section) []: # leave this empty
Common Name (eg, YOUR name) []: # leave this empty
Email Address []: # leave this empty
A challenge password []: # leave this empty
An optional company name []: # leave this empty

# generate the certificate
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt

# remove the password from the server key
cp server.key server.tmp
openssl rsa -in server.tmp -out server.key

Editando as configurações do apache

Edite o arquivo de configuração do apache (/Applications/MAMP/conf/apache/httpd.conf), e remova o comentário da seguinte linha (próximo a linha 537).

# Secure (SSL/TLS) connections
# Include /Applications/MAMP/conf/apache/extra/httpd-ssl.conf

Habilitando as configurações HTTPS..

Edite as configurações do httpd-ssl.conf (/Applications/MAMP/conf/apache/extra/httpd-vhosts.conf) para habilitar a porta 443 para localhost, deve ficar semelhante a isto:

DocumentRoot "/Users/Nataniel/Sites/"
ServerName localhost:443
ServerAdmin webmaster@localhost
ErrorLog "/Applications/MAMP/Library/logs/error_log"
TransferLog "/Applications/MAMP/Library/logs/access_log" 

Telefone do BCash

O telefone de atendimento do BCash está escondido no site, e somente aparece após o contato:

3004-1533 (Capitais e Regiões Metropolitanas)

(11)3075-7520 (Demais Localidades)

Horário de Atendimento:
Segunda a Sexta 7h as 22h – Sábados 9h as 15h

BOA SORTE!

foto (4)

Como alterar sua senha no PagSeguro

Para alterar a senha no PagSeguro UOL:

 

1) Entre no site com seu e-mail e senha.

 

pagseguro-1

 

 

 

2) Clique em Preferências -> E-mails

 

 

pagseguro-2

 

 

 

 

3) Clique em alterar senha, selecione o e-mail que deseja alterar a senha.

 

 

pagseguro-3

 

4)  Digite sua senha antiga e sua nova senha, confirmando-a em seguida.

 

 

 

pagseguro-4

 

That’s all folks! 😉

Windows Live Messenger – Não recebe convites (não aparece quem te adiciona no MSN)

A solução é simples, segue:

  • Abra o Windows Live Messenger
  • Clique em “Caixa de entrada” (Inbox)
  • No canto inferior esquerdo clique em “Contatos” (Contacts)
  • Clique em “Exibir convites” (View Invitations)
  • Clique em “Alterar configurações de convite” (Change your invitation settings)
  • Selecione “Limitado” (Limited)
  • Clique em “Salvar” (Save)
Espero ter ajudado.. a partir de agora você passará a receber os convites no Windows Live Messenger..

jQuery – Buscando um objeto IFRAME a partir de seu conteúdo

Crie uma iframe…

<iframe src="teste.php"></iframe>

No HTML da iframe crie um campo de ID único…

....
<body>
<input type="hidden" id="iframe_unid" value="<? echo md5(microtime()); ?>" />
....

Lá vai o script para capturar o objeto iframe

$(document).ready(function() {

//find this iframe object
window.parent.$("iframe").each(function() {
if ($(this).contents().find("#iframe_unid").val() == $("#iframe_unid").val()) {
alert("Hello from "+$(this).attr("src"));
}
});

});

Buscando posts do Facebook

Desenvolvi este script para o site www.adcw.com.br, ele busca os posts na fan-page da agência no facebook e retorna em um ajax, aqui simplifiquei um pouco, utilizando “echo” mesmo…

 

<?

//@include("config.php");
define("CFG_FACEBOOK_FPID", "157126511023182");

//verifica o arquivo de cache
$CACHEFILE = "fbcache.tmp";
if ((!file_exists($CACHEFILE)) || ((time() - filemtime($CACHEFILE)) > 1800)) {

$targetdomain = 'www.facebook.com';
$hostIP = gethostbyname($targetdomain);
$fp = fsockopen($hostIP, 80, $errno, $errstr, 10);

$getString = "GET /feeds/page.php?id=".CFG_FACEBOOK_FPID."&amp;amp;amp;amp;    format=rss20 HTTP/1.1\r\nHost: $targetdomain\r\nConnection: close\r\n";
$getString .= "User-agent: Mozilla\r\nAccept: text/plain,text/html\r\n";
$getString .= "\r\n";

$feed_contents = "";
fputs($fp,$getString);
while ( (!feof($fp))  &&  ($line = fread( $fp, 8192 )) ) {
$feed_contents.=$line;
}

$fp = @fopen($CACHEFILE, 'w+');
fwrite($fp, $feed_contents);
fclose($fp);
$xml = $feed_contents;

}
else {
//se não puxou um novo arquivo do facebook faz a leitura da cache
$fp = fopen($CACHEFILE, 'r');
$xml = fread($fp, filesize($CACHEFILE));
fclose($fp);
}

//interpreta o XML
$i=0;
$items=array();

$xml = explode("\n",$xml);
for ($x=0; $x <= count($xml); $x++) {
$line = trim($xml&#91;$x&#93;);
if ($line == "<item>") { $i++; }
if ($i > 0) {
if (substr($line,0,7) == "<title>") { $items[$i]["title"] = htmlentities(trim(strip_tags($line)),  ENT_QUOTES|ENT_IGNORE,"UTF-8"); }
if (substr($line,0,6) == "<link>") { $items[$i]["link"] = htmlentities(trim(strip_tags($line)), ENT_QUOTES|ENT_IGNORE,"UTF-8"); }
if (substr($line,0,8) == "<author>") { $items[$i]["author"] = htmlentities(trim(strip_tags($line)), ENT_QUOTES|ENT_IGNORE,"UTF-8"); }

//-------------------------------
// pubDate
//-------------------------------

if (substr($line,0,9) == "<pubDate>") {
//formata a data para o formato da ADCW (Original: Wed, 06 Jul 2011 17:14:41)
//Thu, 14 Jul 2011 20:45:19 +0100
$data = htmlentities(strip_tags($line), ENT_QUOTES|ENT_IGNORE,"UTF-8");

$data = explode(" ",$data);
$items[$i]["pubDate"] = $data[1]." ".strtoupper($data[2])."<br>".$data[3];
}

//-------------------------------
// Links
//-------------------------------
$items[$i]["link"] = str_replace("&amp;amp;amp;amp;amp;","&amp;amp;amp;amp;",$items[$i]["link"]);

//-------------------------------
// description
//-------------------------------
if (substr($line,0,13) == "<description>") {

$data = htmlentities(trim(strip_tags(html_entity_decode($line),"<br>")),ENT_QUOTES|ENT_IGNORE,"UTF-8");

//titulo
if (substr($data,0,strlen($items[$i]["title"])) == $items[$i]["title"]) {
$data = trim(substr($data,strlen($items[$i]["title"])));
}
//autor
if (trim(substr($data,0,strlen($items[$i]["author"]))) == $items[$i]["author"]) {
$data = trim(substr($data,strlen($items[$i]["author"])));
}
//vimeo (retira url do inicio)
if (trim(substr($data,0,18)) == "vimeo.comvimeo.com") {
$data = trim(substr($data,18,(strlen($data)-18)));
}
//youtube (retira url do inicio)
if (trim(substr($data,0,30)) == "www.youtube.comwww.youtube.com") {
$data = trim(substr($data,30,(strlen($data)-30)));
}

//tira as quebras de linha do inicio do texto
if (substr($data,0,12) == "&amp;amp;amp;amp;lt;br /&amp;amp;amp;amp;gt;") { $data = trim(substr($data,12)); }
if (substr($data,0,12) == "&amp;amp;amp;amp;lt;br /&amp;amp;amp;amp;gt;") { $data = trim(substr($data,12)); }
//tira a mensagem FOTOS DO MURAL
if (substr($data,-14) == "Fotos do mural") {
$data = substr($data,0,(strlen($data)-14));
}
//--
$items[$i]["description"] = $data;
}

//-------------------------------
// image -> este campo ?xtraido do rss/description do fb
//-------------------------------
if (substr($line,0,13) == "<description>") {

$data = trim(strip_tags(html_entity_decode($line),"<img>"));
$data = explode(chr(34),$data);
for ($y=0; $y <= count($data); $y++) {
if ((substr($data&#91;$y&#93;,0,7) == "http://") &amp;amp;amp;amp;&amp;amp;amp;amp; (substr($data&#91;$y&#93;,-4) == ".jpg")) {
$data&#91;$y&#93; = str_replace("_s.jpg","_n.jpg",$data&#91;$y&#93;); //troca imagem pequena do RSS pela imagem tamanho normal
$items&#91;$i&#93;&#91;"image"&#93; = $data&#91;$y&#93;;
}
}
}
//-------------------------------

//-------------------------------
// video(vimeo) -> este campo extraido do rss/description do fb
//-------------------------------
if (substr($line,0,13) == "<description>") {
$data = trim(strip_tags(html_entity_decode($line),"<a>"));
$data = explode(chr(34),$data);
for ($y=0; $y <= count($data); $y++) {
if (substr($data&#91;$y&#93;,0,17) == "http://vimeo.com/") {
$items&#91;$i&#93;&#91;"video"&#93; = $data&#91;$y&#93;;
}
}
}
//-------------------------------

//-------------------------------
// video(youtube) -> este campo extraido do rss/description do fb
//-------------------------------
if (substr($line,0,13) == "<description>") {
$data = trim(strip_tags(html_entity_decode($line),"<a>"));
$data = explode(chr(34),$data);
for ($y=0; $y <= count($data); $y++) {
if (substr($data&#91;$y&#93;,0,31) == "http://www.youtube.com/watch?v=") {
$items&#91;$i&#93;&#91;"video"&#93; = $data&#91;$y&#93;;
}
}
}
//-------------------------------

}
}

//injeta o item mais recente no site usando jquery e eval
if (count($items) > 0) {

//echo $items[1]["description"];

echo "<h2>".$items[1]["pubDate"]."</h2>\n";
echo "<h1><a href=\"".$items&#91;1&#93;&#91;"link"&#93;."\">".$items[1]["title"]."</a></h1>\n";

if ($items[1]["video"] != "") {
if (substr($items[1]["video"],0,17) == "http://vimeo.com/") {
echo "<iframe id=\"facebook_image\" src=\"http://player.vimeo.com/video/".substr($items&#91;1&#93;&#91;"video"&#93;,17,(strlen($items&#91;1&#93;&#91;"video"&#93;)-17))."\" width=\"530\" height=\"310\" frameborder=\"0\" allowfullscreen></iframe>";
}
elseif (substr($items[1]["video"],0,31) == "http://www.youtube.com/watch?v=") {
echo "<iframe id=\"facebook_image\" width=\"530\" height=\"310\" src=\"http://www.youtube.com/embed/".substr($items&#91;1&#93;&#91;"video"&#93;,31,(strlen($items&#91;1&#93;&#91;"video"&#93;)-31))."\" frameborder=\"0\" allowfullscreen></iframe>";
}
else {
echo "<img id=\"facebook_image\" src=\"".$items&#91;1&#93;&#91;"image"&#93;."\" />\n";
}
}
else {
echo "<img id=\"facebook_image\" src=\"".$items&#91;1&#93;&#91;"image"&#93;."\" />\n";
}

}
else {
echo "Não foi possível buscar os dados...\n";
}

?>