Tag Archive for 'fusion'

Google XML Sitemap For PHP Fusion

Google XML Sitemap Infusion
For PHP Fusion 7.x
Version: 2.01
Author: Arda (SoulSmasher)
Web: http://www.soulsmasher.net
 
Within this infusion, you can generate Google XML sitemaps instantly for your PHP-Fusion based website
 
Features:
---------------------
1-Generating a sitemap within one click
2-If the panel is activated, the sitemap.xml file is generated automatically each 24 hours
3-Force Generating option for admins
4-Because sitemap.xml will be a static content, when google pings your sitemap, it won't exhaust your sql
5-Submitting your sitemap instantly with one click to popular search engines
6-Quick navigation on sitemapxml_panel for admins
 
Current Translations:
--------------------
Danish (Thanks, Helmuth)
English
Turkish
 
Installation:
--------------------
1-Upload everything under the folder "files" to your PHP-Fusion's base folder
2-After the upload, chmod the sitemap.xml file to 777
3-Go to admin panel/system administration/infusions and activate "Google Sitemap"
4-Go to admin panel/system administration/panels and activate and enable "sitemapxml_panel"
 
From the admin interface, you can see the last time that sitemap is generated, and re-generate instantly anytime you want. You can also submit your sitemap to popular search engines via one click
 
Tip: if you disabled your left or right panels on your website, for sitemap xml recreating cronjob, i suggest you to add the sitemapxml_panel as l-ctr and make it show on all pages
 
Update:
--------------------
From 2.0x:
Just upload new files and re-infuse the infusion, version will be updated
 
From 1.0x:
Firstly defuse the old infusion, then upload new files and infuse again
 
Version History:
--------------------
2.01 - Threads limiter fixed
	   Downloads xml parsing fixed
2.00 - Fixed Date Issue on old PHP versions
	   Dropped Weblinks And Forum Cats (i think weblinks are bad for seo, also forum cats are not required when they're forums)
	   Added News Cats
	   All Priorpty and Frequency Values Can Be Set Via Admin Panel
	   Added Dynamic Version Of Sitemap (sitemap.php at root folder)
1.05 - output handling issue fixed at admin panel for adding text to title
	   XML sitemap now has a better interface
1.04 - file generation date showing fixed
1.03 - Weblick cat bug fixed
1.02 - Threads bug fixed
1.01 - Weblink bug fixed
 
Enjoy ;)

sample admin panel screenshot:

Download Link: Here

Share/Save

PHP Fusion İçin İncelemelerden Alıntı Blok Kodu

bu kodu PHP Fusion Mod Sitesinde bir üye için kodladım. kendisi rastgele seçilen bir incelemeden rastgele bir kısmı alıntı olarak göstertip oradan o incelemeye link veriyor.

kod da şu şekilde, sadece blok kodu ya da özel sayfa olarak eklemeleniz yeterli (blok kodunda taglarını silin tabi :) )

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
//Random Article Quotes 1.0
//by SoulSmasher
//http://www.soulsmasher.net
//this php file gets random content from article and shows as quote on a text which refers to URL of an article
$char=50; //how many minimum chars will be shown
$result = dbquery(
   "SELECT ta.article_id, ta.article_subject, ta.article_article, tac.article_cat_id, tac.article_cat_access FROM ".DB_ARTICLES." ta
   INNER JOIN ".DB_ARTICLE_CATS." tac ON ta.article_cat=tac.article_cat_id
   ".(iSUPERADMIN ? "" : "WHERE ".groupaccess('article_cat_access'))." AND article_draft='0' ORDER BY rand() DESC LIMIT 1"
);
 
if(!dbrows($result)) {
openside("article not found");
echo "no article found";
closeside();
} else {
$data=dbarray($result);
$thearticle=stripslashes($data['article_article']);
$length=strlen(strip_tags($thearticle));
do {
$start=rand(0,$length);
} while(($start+$char)>$length);//we set our proper rand value here
$text=substr(strip_tags($thearticle),$start,$char); //html tags should be cleaned
openside("Random Article Quote");
echo "<a href='".BASEDIR."articles.php?article_id=".$data['article_id']."' title='".$data['article_subject']."' class='side'>$text</a>";
closeside();
}
?>

afiyet olsun :)

Share/Save

Son Tema Çalışmam: Smart Blue Tema

uzun zamandır php fusion için tema tasarlamıyordum, malum üniversite ve kodlamaya daldık, insan bir işi yapmadığı zaman köreliyor bir süre sonra :)

tema ile ilgili bilgiler şunlar: Continue reading ‘Son Tema Çalışmam: Smart Blue Tema’

Share/Save

Emule Linklerini Fusionda Algılama - Parsing ed2k (emule) Links In PHP Fusion

arkadaşlar burada vereceğim yazmış olduğum döküman sayesinde php fusionda emule (ed2k) linklerini algılatabilirsiniz…
within the document i’ll give here, you can parse ed2k links in fusion
Continue reading ‘Emule Linklerini Fusionda Algılama - Parsing ed2k (emule) Links In PHP Fusion’

Share/Save

Be Mine

Arkadaşlar, bu da benim son php fusion tema çalışmam
yaklaşık arada uyuşarak da olsa 14 saatimi verdim, cidden değerli bir zaman dilimi benim için..
pher-d de css düzenleme ve bazı grafiklerde yardım etti

buyrun:
önizlemesi:
be mine theme

temaya canlı örnek:
buradan bakabilirsiniz

indirme linki:
Continue reading ‘Be Mine’

Share/Save