Posts Tagged 'Joomla&'

Dec

21

Social Networking Sites powered by Joomla

Posted by admin under news, technology - No Comments

I’ve decided to use Joomla for my first social network site. I think listing the existing Joomla SN sites here will be a good starting point. They might give some ideas about the capability and design of Joomla sites.

Social networking sites powered by Joomla:

Koreatown Connectedhttp://www.ichoson.com/

Korean American Social Networking and News Portal. Entertainment, Lifestyle and Culture

MyPraize.com – Christian MySpace Alternative – Social Network – http://www.mypraize.com/

MyPraize is a Christian MySpace Alternative, based on Christian morals. Like MySpace we offer a community for Christians to unite, without immoral content, or pictures.

MommyClub - http://www.mommyclub.ca/

MommyClub.ca is one of Canada’s favourite pregnancy and parenting websites and is the perfect website for moms! It is a place for Canadian moms to connect with one another without having to go to different pregnancy websites, parenting websites and websites for moms for each phase of motherhood. We have set you up with “Everything Mom” to help you make the most of this fun, hectic mommy world. Resources, events, blogs, forums, friendship… its all here!

Golf Finder – Golf’s Interactive Search Engine – http://www.golf-finder.net/

Find Golf Courses, Golf Clubs and Golf Buddies. The only Golf resource you need!, Golf Finder’s interactive golf map is the perfect way to find golf courses, golf clubs and golf resources. The only interactive golf search engine you need.

Asian Addict – Asian Addict, write and learn culture traditions of Asia – http://www.asian-addict.com/

Your asian community, similar to myspace, hi5 or friendster where everybody can write about Asia and learn traditions, cultures and its wonders, make new friends, penpals, upload pictures and videos

Udugu! - The social networking, friendship community for 25+ – http://www.udugu.com/

Motor Sports sitehttp://csramotorsports.com/csratest/…page/Itemid,1/

miXsterhttp://www.mixster.eu/

miXster is a european web site for on-line communities and relationships.

IMNetworked.com – Where People Know People! – http://www.imnetworked.com/

The Golf Spacehttp://www.thegolfspace.com/

Golf’s premier, and original network for friends and business. (joSa)

Nov

15

Generating static HTML-Pages from Joomla/Mambo

Posted by admin under technology - No Comments

Because some seem interested, I try to explain what you have to do when you want to generate static HTML-Pages out of your Joomla/Mambo-Site using HTTrack. (This is no true tutorial though)

1. check your site
First of all you should look at your site to make sure that it would work offline.
The main reason why a site is hardly able to work offline is the present of forms (with the exception of a javascript or mailto-target). All other kind of forms will not work (e.g. login).

2. get HTTrack
Download HTTrack

3. robots.txt
The root of your web site usually contains a robots.txt, this will prevent search engines and by default also HTTrack from downloading some of the files. So you have the choice between removing all disallows or changing the option in HTTrack (in WinHTTrack you will find it under Spider, unfortunatelly this setting is not read when you redo it).

4. consider SEF (if you haven’t yet)
SEF URLs (Search Engine Friendly URLs) look much better, so I suggest you are using one (so you don’t have meaningless numerated index-files only).
I am using 404 SEF (thanks for that one), which I slightly hacked to make my “template chooser” work as a subdirectory.

5. use HTTrack
Because I use WinHTTrack I will explain what I see there, might be different on other ports.
First of all create a new project etc. (see documentation of HTTrack). Add the root URL of your site to the URL-List. If not all sub-urls are linked somehow add the others too (this is less likely actually).
Open the settings and make sure you do not exclude any file inside your domain, and review all other settings.
When you are done start the process.

6. check the result
The best is to clear the browsers cache and make sure you are not able to connect to the original site anymore (e.g. disconnect from the internet or stop Apache).
Open the index.html of your generated local copy. If there are any problems review step 5.

7. automatically updating a local copy (optional)
If you do this more often you may want to update it using a batch or shell file:
httrack –path –update
(this will use the last settings used executing WinHTTrack, using save settings only will not work though)

8. shrink the size (optional)
If you want to save space you may want to shrink the size of the generated files, this can also be used to make it less readable.
I use my own Web File Shrinker of course but there are others out there too. So I post my batch file to do this:

@ECHO OFF
set sourcedir=
set targetdir=
set options=de.prj /nocredits /sourcedir=%sourcedir% /targetdir=%targetdir% /hideskipped
echo sourcedir=%sourcedir%
echo targetdir=%targetdir%
xcopy %sourcedir%\*.* %targetdir%\ /s /D /Y /EXCLUDE:_xcopy_exclude.lst
java -jar webfileshrinker.jar %options%

I have two additional files. de.prj containing files to add, e.g.:

*.*
The other is _xcopy_exclude.lst containing files I don’t want to replace because my web file shrinker will check the date:

.html
.css
.js