Posts filed under 'Web-development'

AtMail é uma aplicação web open source escrita em PHP. A implementação com auxilio a Ajax oferece uma interface intuitiva e bastante simples para o utilizador. Sem duvida uma opção bastante válida relativamente ao RoundCube.
Features of AtMail Open include:
- Lightweight Ajax Webmail Interface
- Video Mail
- PHP source code
- IMAP support
- Live Spell Check
- Address Book
- Apache 2.0 Open Source license
- Easy upgrade path to our commercial offering
Site / Demo
June 4th, 2008

Uma aplicação web (js+php) que permite o streaming de ficheiros audio (mp3/wav) que está em determinado directório web. Pode-se ainda utilizar o iRadeo de forma embedded em outros sites através de javascript.
Features:
* Streams - Supports both MP3 and WAV file formats
* Auto-Detects - Auto detect MP3 file information through the ID tags (both ID3v1 and ID3v2) and will display in the player
* Customization - Easy to customize through a single CSS file
* Embed - Easly allow listeners to embed your player on their site with just few lines of code
* Shuffle - Option to allow files to stream randomly (no file from same single artist or album will be played twice in a row)
* Limit Skips - Option to limit number of skips allowed per session.
* Auto-Play - Option automatically start streaming once page is loaden
Site
June 4th, 2008
O site askApache tem um artigo bastante completo sobre .htaccess e vai directo para os resources dos meus favoritos.
Uma boa quantidade de tutoriais e exemplos dividida nas seguintes secções:
- For Webmasters
- Custom HTTP Headers
- PHP htaccess tips
- 301 Redirects without mod_rewrite
- mod_rewrite tips and tricks
- Speed with .htaccess Caching
- htaccess Password Protection
- Security with Apache htaccess
- SSL encryption in htaccess, HTTPS
- Apache Variable fun mod_env
- Elite .htaccess Security with MOD_SECURITY
- SetEnvIf and SetEnvIfNoCase Examples
Link
June 4th, 2008
Hoje precisei de aceder a uma base de dados MySQL para efectuar um backup de uma tabela com bastantes registos. O servidor não me possibilitava acesso ao phpMyAdmin e o backup efectuado pelo cpanel retornava um ficheiro .sql vazio. Depois de várias tentativas e sem tempo para criar um script para fazer um dump à respectiva tabela encontrei on-line o PHP MySQL Smart.
O PHP MySQL Smart é um minúsculo mas funcional script em PHP que permite efectuar uma série de acções numa DB MySQL.

Principais Features: Login, Little Help, Database/Table/Filed browsing (NEW!), Field description, All kind of queries, Select * works also, Error messages, Number of affected rows, Multible statements (seperated with ; ), Database/Table backup via dump download, View table structure, Detail Table information, Detail Database Informatio.
Site: PowerWeb99
March 3rd, 2008
function cortaString($string, $maximo)
{
if (strlen($string) > $maximo)
{
$string = substr($string, 0, $maximo);
}
return $string;
}
$frase = “bla bla bla bla bla bla bla bla bla”;
echo cortaString($frase, 10);
February 9th, 2008
Shadowbox is a cross-browser, cross-platform, cleanly-coded and fully-documented media viewer application written entirely in JavaScript. Using Shadowbox, website authors can display pictures and movies in all major browsers without navigating away from the linking page. The default distribution of Shadowbox includes the full source code and a sample gallery (this file) that demonstrates how it is to be used.
Site
Demo
February 2nd, 2008

PHPmotion is a free video sharing software application that will allow you to create and run your very own video sharing website. With very little knowledge required you can now have website just like youtube.com and dailymotion.com and best of all, its 100% free to download and use.
Site

PrestaShop™ is a free, open-source e-Commerce solution that allows you to open your own Internet business in just a few clicks!
Site
January 20th, 2008
Epá estava cansado de inventar passwords para as contas de e-mail que estava a criar no cpanel por isso recorri a um script que já tinha no meu localhost há anos.
<?
$chars = “123456789abcdefghijklmnpqrstuvwxyz”;
$totalC = 6;
srand((double)microtime()*100000);
for ($i=0; $i<$totalC; $i++) {
$password = $password . substr ($chars, rand() % strlen($chars), 1);
}
echo “Password: <br />”;
echo “<strong>” . $password . “</strong>”;
?>
Aqui fica pode ser útil a alguém.
December 21st, 2007
Tenho um site em Joomla com mais de 2000 artigos, milhares de visitantes e dados perdidos nos registos da base de dados e neste momento estou a fazer um refresh ao design e aos conteudos, ou seja, não quero na reabertura do site continuar as estatísticas que a base de dados tem.
Por isso a melhor forma que arranjei para limpar essas estatísticas foi com o Joomla! StatsCleaner
Basta:
- Enviar o ficheiro JoomlaStatsCleaner.php para a raiz do site
- Efectuar login na área de administrador
- Aceder a http://<url-do-site>/JoomlaStatsCleaner.php
- Escolher as estatísticas que desejamos apagar
- Reset Statistics
Joomla! Stats Cleaner
December 6th, 2007
Intro
Prototip allows you to easily create both simple and complex tooltips using the Prototype javascript framework.
If you also use Scriptaculous you can even add some nice effects to them.
Encontrei uma rápida e bonita forma de fazer Tooltips. No site oficial tem diversos exemplos para vermos do que este pequeno resource é capaz.
Site Oficial
November 10th, 2007
Next Posts
Previous Posts