Total Pageviews

Sunday, October 3, 2010

php graphy GALLERY

phpgraphy installation and configuration

http://phpgraphy.sourceforge.net/download.php

Installation tutorial

http://phpgraphy.sourceforge.net/manual/latest/ch02s03.html

cd /home/user/public_html

wget http://prdownloads.sourceforge.net/phpgraphy/phpgraphy-0.9.13b.zip?download
tar -xvzf phpgraphy version

stop old httpd and start new oneby

/usr/local/apache/bin/apachectl start

 Create one MySQL database
>create database database-name
>create user user-name@your-IP identified by 'your-password';
>grant all privileges on database.* to user@your-IP identified by 'password';
>flush privileges;



#/etc/init.d/mysqld restart

In URL take http://<IP>/phpgraphy-version/install.php


Step 1:Select English

Step 2: cp config.ini.php.sample config.ini.php

In  config.ini.php file give the IP displayed in the page.
copy the config.ini.php to /usr/local/apache/conf/config.ini.php

Step 3:cd /home/user/public_html/

chmod -R 777 phpgraphy-version

chown -R username phpgraphy-version
  Step 5:select MySQL
Give your IP for server host name.
Step 6:follow steps
Login to the site
Upload picture


/usr/local/apache/bin/apachectl restart


 tutorial

http://phpgraphy.sourceforge.net/manual/latest/ch02s03.html

1 comment:

  1. To install GD

    http://www.php.net/manual/en/image.installation.php

    yum install gd*
    ./configure --with-gd

    For source installation


    http://www.google.ca/search?q=gd+module&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

    http://www.libgd.org/releases/oldreleases/gd-2.0.35RC4.tar.bz2
    wget the link


    untar it
    enter inside the untar directory
    ./configure
    make
    make install
    the actual link is http://www.libgd.org/releases/

    ReplyDelete