AlexxBlog.com


Colţul meu pe Internet

Author Archive

Online Users Panel pentru motoarele de căutare - PHP-Fusion V7

without comments

Panou realizat de look care afişează boţii motoarelor de căutare atunci când acestea îţi vizitează saitul.

Download | Topic PHP-Fusion România

panou Online Users Panel pentru motoarele de căutare - PHP-Fusion V7

Written by Alex

October 13th, 2008 at 12:27 pm

Posted in PHP-Fusion

Tagged with , , , ,

Funcţiile din PHP-Fusion V7

without comments

Direct de pe saitul www.phpfusion-mods.com încă o nouă secţiune: Functions.

Ce face? Simplu, afişează toate funcţiile prezente în , grupate pe categorii. Alegând categoria şi dând click pe numele unei funcţii vom intra pe pagina unei funcţii ce conţine rolul funcţiei, forma generală şi o mică descriere.

Acum nu mai trebuie să citim fişierul maincore. pentru a descoperi funcţiile incluse. :P

Legătură

Written by Alex

October 13th, 2008 at 11:34 am

Posted in PHP-Fusion

Tagged with , , , , ,

User Info Panel pentru PHP-Fusion V7

without comments

Un panou realizat de Falcon pentru a da panoului din un nou aspect. User Info Panel pentru PHP-Fusion V7

Download | Topic PHP-Fusion România

Written by Alex

October 12th, 2008 at 10:20 am

Posted in PHP-Fusion

Tagged with , , , ,

Iconiţe în panoul Navigare - PHP-Fusion V6

without comments

 Iconiţe în panoul Navigare - PHP-Fusion V6Această infuzie adaugă în Panoul de Navigare, lângă legături, iconiţe ca în imaginea alăturată.

Download | Topic PHP-Fusion România

Written by Alex

October 12th, 2008 at 12:16 am

Posted in PHP-Fusion

Tagged with , , , ,

Yahoo! ID Panel 0.3 Beta pentru PHP-Fusion V7

without comments

Cu puţine întârzieri…dar am reuşit să termin infuzia Yahoo! ID Panel pentru .goofy-yahoo-logo Yahoo! ID Panel 0.3 Beta pentru PHP-Fusion V7

Am transformat şi toate panourile (yahoo_id_panel, yahoo_id_latest_panel si yahoo_id_random_panel) pentru .

Zilele următoare voi publica o versiune corectată pentru pentru că am găsit câteva greşeli.

Dacă găsiţi buguri sau aveţi idei pentru versiunile următoare aştept răspunsuri.

Download | Topic PHP-Fusion România

Written by Alex

October 11th, 2008 at 11:53 pm

Posted in PHP-Fusion

Tagged with , , , , ,

Infuzia Yahoo! ID pentru PHP-Fusion V7

without comments

Având în vedere că a ieşit de ceva timp şi mulţi membrii cer infuzia pentru , am decis să fac modificările necesare pentru a putea rula şi pe noua versiune de .

Acum mă apuc de lucru, când voi termina (probabil în seara aceasta) o voi posta aici şi pe România.

Written by Alex

October 10th, 2008 at 6:10 pm

Posted in PHP-Fusion

Tagged with , , , ,

Cum creez o tematică pentru PHP-Fusion V7?

with 2 comments

Direct de pe saitul http://wiki.php-fusion.co.uk un tutorial foarte util despre cum să creezi o tematică pentru .

Când o să am timp o să-l traduc în limba română până atunci…use the english version :D

Written by Alex

October 6th, 2008 at 3:21 pm

Posted in PHP-Fusion

Tagged with , , , , , ,

Forum Extension Panel 1.8 - PHP-Fusion V6

with one comment

Acest panou apare sub . Aveti si locale in romana.forum-ex Forum Extension Panel 1.8 - PHP-Fusion V6

Download | Topic PHP-Fusion România

Written by Alex

October 6th, 2008 at 10:11 am

Posted in PHP-Fusion

Tagged with , , , , , ,

Drivere pentru Windows XP - Fujitsu-Amilo Pi 2540

without comments

Având în vedere că mai mulţi oameni au cerut driverele pentru Fujitsu-Amilo Pi 2540 pentru XP am căutat mai cu atenţie pe Internet şi am găsit această imagine .iso cu aproape toate driverele. Succes!

Descarcă drivere

Written by Alex

October 5th, 2008 at 10:11 pm

Posted in Diverse

Tagged with , ,

Script înregistrări lunare

without comments

<?
/* Configure start/stop times */
$start = (time()-(3600*24*7*4));
$stop = time();
/* Output the times */
echo strftime("%m/%d/%y", $start)." to ".strftime("%m/%d/%y", $stop)."<br /><br />\n";
/* Set up the days */
$days = array();
$result = dbquery("select * from ".DB_USERS." where user_joined > {$start} and user_joined < {$stop} order by user_joined asc");
while($data = dbarray($result)){
$date = strftime("%m/%d/%y", $data['user_joined']);
if(!isset($days[$date])){
$days[$date] = 0;
}
$days[$date]++;
}
$total = dbrows($result);
/* Now output the table/bars */
echo “<table width=’100%’ cellspacing=’0′ cellpadding=’1′>\n”;
foreach($days as $day=>$count){
echo “<tr>\n<td width=’1%’ nowrap=’nowrap’>”.$day.”</td>\n<td>”.statBar($count, $total).”</td>\n<td align=’center’ width=’5%’ nowrap=’nowrap’>”.$count.”</td></tr>\n”;
}
echo “</table>\n”;
/* function for showing the bars */
function statBar($count, $total, $width=”200″){
$width_percent = ceil((($count/$total)*100)).”%”;
return “<div style=’width:100%;border:1px solid #696969;padding:1px;height:12px;’><div style=’background-color:#ccc;height:12px;width:”.$width_percent.”;’>&nbsp;</div></div>”;
}
?>

Topic PHP-Fusion România

Written by Alex

October 3rd, 2008 at 10:39 am

Posted in PHP-Fusion

Tagged with , , , ,