Sunday, June 23, 2013

Best Free PHP Image Gallery Scripts

from http://www.codefear.com/scripts/php-image-gallery-scripts/

5 Best Free Image Gallery Scripts

1. Gallery – Gallery is another very popular Free PHP Image Gallery Scripts. It is a web based open source image or photo organizer. Gallery provides an easy and quick solution. It seamlessly integrates photo management in your website. Gallery is equipped to handle a small personal website and as well as a large community website.
5 Best Free PHP Image Gallery Scripts scripts

2. Coppermine
– Coppermine is a free PHP based photo gallery script. It is a fully featured and multipurpose image gallery script which uses ImageMagick or GD as image library and MySQL as backend. Coppermine can be downloaded and installed easily on your webspace. It supports an extensive list of features such as extensive multimedia support, user management, picture management, etc.
5 Best Free PHP Image Gallery Scripts scripts
3. ZenPhoto: ZenPhoto is a powerful and free to use CMS for building multimedia websites. ZenPhoto Free PHP Image Gallery Script supports images, audio and video files. You can include custom pages, and even set up a blog section in ZenPhoto. It is an ideal resource for creating and managing image gallery websites. Thus, ZenPhoto serves as an ideal platform for building portfolio websites of artists, musicians, designers, photographers, film makers, illustrators, etc.
5 Best Free PHP Image Gallery Scripts scripts
4. Piwigo: Piwigo is free and powerful open source image gallery software. It is easily customizable. It comes with themes and plugins so that you can easily change its appearance and also can enhance its features. Thus with Piwigo you can give a personal touch to your online photo gallery website. You can organize the photos easily using Piwigo image gallery script and provides many other features too.
5 Best Free PHP Image Gallery Scripts scripts

5. TinyWebGallery
– TinyWebGallery is another very powerful php based photo gallery script. Moreover, TinyWebGallery is available absolutely free. It is easy to install, easy to use and does not even require a database (employs xml files). It is loaded with features that can be enabled, disabled and can be even be configured. It has an advanced administrative panel which manages users, images and configuration settings.
5 Best Free PHP Image Gallery Scripts scripts
We hope you would have liked the above presentation on 5 Best Free PHP Image Gallery Scripts and look forward to your feedback, comments or suggestions.

Best Free Buliten Board 1

From  http://www.codefear.com/scripts/5-best-php-forum-bulletin-board-script/

1. vBulletin – Undoubted vBulletin is the best forum software. With its years of experience and great support has made it the best forum software. vBulletin is paid forum script but it is worth to its value. You can find lot of vBulletin templates by third party and lot of support from vBulletin and other places. Most of the successful form use vBulletin.
5 Best PHP Forum / Bulletin Board Script scripts
 
2. Invision Power Board – Another popular paid forum software. When ever vBulletin is compared it is compared to Invision Power Board. It also comes with lot of features, good support and great resources. There is self hosted and hosted version of IPB.
There is a free hosted version of IPB. You do not get script instant of that you can start your own forum on there domain.
5 Best PHP Forum / Bulletin Board Script scripts
 
3. phpBB – If you are looking for free forum script then you may end your search at phpBB. phpBB is one of the most popular free forum script. There are plenty of phpBB lover’s community which can provide you lot of help, resources, mod, templates etc.
5 Best PHP Forum / Bulletin Board Script scripts
 
4. Simple Machines Forum (SMF) – Another popular free forum script. SMF great feature is its integration with other popular script. It is also widely used forum script with lots of support and resources.
5 Best PHP Forum / Bulletin Board Script scripts

5. bbPress – If you are known to WordPress then you must know bbPress by creator of WordPress. Backed by powerful development team and good support can make anyone to choose bbPress. If you are looking to integrate WordPress and forum software then these can be your first choice. It is a powerful forum script which must be conceder while choosing forum software.
5 Best PHP Forum / Bulletin Board Script scripts
So those are the popular form scripts but the question is which one to choose. When you will check those scripts you will find they look similar to each other. All of them come with powerful admin interface. All are theme based so easy to change themes and lot of supports is there for all those script.
If you are planning to build professional forum with thousands of member and post then go for paid scripts like vBulletin or Invision Power Board.
If you are not thinking of a very big forum then go for free scripts. There is always option with paid forum software to upgrade from other scripts. So you don’t have to worry if your members are increasing they will help you to upgrade your forum.

Tuesday, June 11, 2013

Add New user to samba

Add New user to samba :
1. 1. add linux user :
- add to existing group
# useradd -g account ammar
# passwd ammar
or
 -add user anf create new group
# useradd ammar
# passwd ammar
# 


2. modify user home dir,shell, group
# usermod -d /home/users ammar
# usermod -s /sbin/nologin ammar
- set user primary group
# usermod -g account ammar
- add groups to use
# usermod -G users,account ammar 

3. check uid status
# id ammar

4. remove user & his home dir
userdel -r ammar

5. add / remove group
groupadd anis
groupdel ammar

6. add sambar user
# smbpasswd -a ammar 

7. add user to samba config :
# vi /etc/samba/smb.conf

[planner]
        comment = Planner
        path = /home/planner
        writeable = yes
        create mask = 0775
        directory mask = 0775
        force user = root
        force group = planner
        valid users = fatin, ammar, syakir, luqman, anis
;       browseable = yes


8. restart samba :

# service smb restart
or 
# /etc/init.d/smb reload





Automount samba whe boot up :

1. edit fstab file :
# vi /etc/fstab

proc            /proc           proc    defaults        0       0
/dev/hdb1       /               ext3    defaults,errors=remount-ro 0       1
/dev/hdb2       none            swap    sw              0       0
/dev/hdc        /media/cdrom0   iso9660 ro,user,noauto  0       0
//ntserver/docs /mnt/samba      smbfs   username=docsadm,password=D1Y4x9sw 0 0

samba : error : mount error(13): Permission denied


server site error :
/var/log/samba/log.131.107.2.222

smbd/sesssetup.c:1343(reply_sesssetup_and_X)
  reply_sesssetup_and_X:  Rejecting attempt at SPNEGO session setup when it was not negotiated.



client site error :

mount -t cifs //111.107.2.2/sales  /media/sales -o username=aku,password=kawe
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)


Please check the /etc/samba/smb.conf