Menu  Language: it
Phone numbers

Phone : +39 0924 507600 pbx

Fax: +39 0924 507607

Poll
What's your opinion about GuppY?
 
Great !
Good
Average
Bad
I'll get another tool
Please... no comment
Results
News of Friends
Introduction

Close GuppY

Close GuppY community

Technical

Close Insert an external page

Close Setup YOUR GuppY

Webmaster - Infos
gyslogo.gifGuppY - Install

I. First install (demo)


This first install paragraph explains how to set up a GuppY web site with some demo content, so that you can play with it.

  • Download the guppy.zip file (http://www.freeguppy.org) on your PC.

  • Unzip this guppy.zip file in a directory of your PC with your favorite unzipping tool (7zip, WinZip, Winrar...).

  • EXCELLENT! GuppY is ready to run !

  • If you wish to play with GuppY on your PC before putting it on the Internet, install a webserver and PHP (you may also rather install a package like EasyPHP - http://www.easyphp.org) on your PC and copy the content of the directory where you unzipped guppy.zip in the www sub directory of EasyPHP, then launch EasyPHP... and your site will be running locally on your PC. It's just as easy as that !

  • If you wish to install your web site directly on the Internet, then copy all unzipped files via FTP to your site with a simple FTP client software (FileZilla, FireFTP, CuteFTP, etc.). And that's all, you now just need to input the URL of your site in your browser to find yourself on your web site.

  • Wonderful, you've just installed GuppY successfully!


IMPORTANT NOTICE

- If you do not plan to prepare a new clean database, delete the install/ directory now. Otherwise anybody could run it on yourweb site and delete all the content on your web site!

 

ALTERNATIVE

Youcan also download miniGuppY on the GuppY site. miniGuppY is a package made of a light web server, PHP and GuppY, all packaged with an automated install program for a PC with Windows. You just cannot do easier than that !

 

.CHMOD

Here is how to set upfiles rights for web servers that require it (not all of them requireit).
1. Directory admin
- File admin/mdp.php : rights = 666. UNIX command = chmod 666 admin/mdp.php
+ Directory admin/redac : rights = 777. UNIX command = chmod 777 admin/redac
- Files admin/redac/* : rights = 666. UNIX command = chmod 666 admin/redac/*
2. Directory data : rights = 777. UNIX command = chmod 777 data
- Files data/* : rights = 666. UNIX command = chmod 666 data/*
+ Directory data/archive : rights = 777. UNIX command = chmod 777 data/archive
- Files data/archive/* : rights = 666. UNIX command = chmod 666 data/archive/*
+ Directory data/cache : rights = 777. UNIX command = chmod 777 data/cache
- Files data/cache/* : rights = 666. UNIX command = chmod 666 data/cache/*
+ Directory data/countmsg : rights = 777. UNIX command = chmod 777 data/countmsg
- Files data/countmsg/* : rights = 666. UNIX command = chmod 666 data/countmsg/*
+ Directory data/usermsg : rights = 777. UNIX command = chmod 777 data/usermsg
- Files data/usermsg/* : rights = 666. UNIX command = chmod 666 data/usermsg/*
+ Directory data/error : rights = 777. UNIX command = chmod 777 data/error
- Files data/error/* : rights = 666. UNIX command = chmod 666 data/error/*
3. Directory file : rights = 777. UNIX command = chmod 777 file
- Files file/* : rights = 666. UNIX command = chmod 666 file/*
4. Directory img : rights = 777. UNIX command = chmod 777 img
- Files img/* : rights = 666. UNIX command = chmod 666 img/*
5. Directory pages : rights = 777. UNIX command = chmod 777 pages
- Files pages/* : rights = 666. UNIX command = chmod 666 pages/*
6. Directory photo : rights = 777. UNIX command = chmod 777 photo
- Files photo/* : rights = 666. UNIX command = chmod 666 photo/*

7. For all skins directories, it should be necessary to chmod the skin configuration files:
- skin/your_skin/confskin.inc : rights = 666. UNIX command = chmod 666 skin/your_skin/confskin.inc
- skin/your_skin/style.css : rights = 666. UNIX command = chmod 666 skin/your_skin/style.css


How can you detect that you should execute these "CHMOD" ?Well, it is pretty easy to know, it is in the case you get many errormessages of this kind :

Warning: fopen("data/logh.dtb","w")- Permission denied in http://www.mysite.com/inc/functions.php online 198
Warning: Supplied argument is not a valid File-Handleresource in http://www.mysite.com/inc/ functions.php on line206
Warning: fopen("../data/logh.dtb", "w") -Read-only file system in functions.php on line 198
Warning:fputs(): supplied argument is not a valid File-Handle resource infunctions.php on line


.htaccess notice

GuppY is shipped with a.htaccess file in the root directory. This file is only usefulif your web site runs with an Apache server (this is the case most ofthe time). Here is itsstructure:
--------------------------------------
<files>
Order allow,deny
Deny from all
Satisfy All
</files>
<files>
Order allow,deny
Deny from all
Satisfy All
</files>
ErrorDocument 400 /error.php?err=400
ErrorDocument 403 /error.php?err=403
ErrorDocument 404 /error.php?err=404
ErrorDocument 500 /error.php?err=500
--------------------------------------
The first 10 lines are used to protect the content of your database from hackers and other bad people (and there are some !). Otherwise, files like the data/frth.dtb file for example which hold all e-mail addresses of the people who posted a message in the forum can be read and even help to enrich a Spam file (ugly !). These 10 lines are not to be modified.

The 4 following lines are used to direct users to the error page when ask for a non existing page or other possible errors. These lines might require to be adapted (with a simple text editor like Notepad or Wordpad for example) according to where you have put your GuppY.

If you've installed GuppY at the root of your site (URL = http://www.yoursite.com/) then you have nothing to do. But if you installed it in a directory of your site (URL =http://www.yoursite.com/here/ for example) then you will have to modify these 4 lines:
-------------------------------------------
ErrorDocument 400/here/error.php?err=400
ErrorDocument 403/here/error.php?err=403
ErrorDocument 404/here/error.php?err=404
ErrorDocument 500/here/error.php?err=500
-------------------------------------------

In some cases, you might need to modify these 4 lines as follows (for a website having a URL like http://www.yoursite.com/) :
-------------------------------------------------------------
ErrorDocument 400 http://www.yoursite.com/error.php?err=400
ErrorDocument 403http://www.yoursite.com/error.php?err=403
ErrorDocument 404http://www.yoursite.com/error.php?err=404
ErrorDocument 500http://www.yoursite.com/error.php?err=500
-------------------------------------------------------------

Or,if installed in the here/ subdir:
------------------------------------------------------------------
ErrorDocument 400 http://www.yoursite.com/here/error.php?err=400
ErrorDocument 403 http://www.yoursite.com/here/error.php?err=403
ErrorDocument 404 http://www.yoursite.com/here/error.php?err=404
ErrorDocument 500 http://www.yoursite.com/here/error.php?err=500
------------------------------------------------------------------

It would also be wise to protect your directory by a user name and password within the .htaccess file. As the way of doing it is usually specific to your web host, please refer to its documentation for this topic.
For further information on how to protect your website with a .htaccess file, please refer to the official Apachedocumentation.

II. Clean install

The clean install is meant for when you want to erase the demo content and start with a brand new empty GuppY site.

The starting point for this clean install is anywhere between the first install and anything you did with the demo content. It will erase all of the content but keep the current parameters set up in the different Config and Admin areas.
 

  • If your web site URL is http://www.mysite.com/ input the following URL in your browser : http://www.mysite.com/install/

  • Follow instructions for a "Clean install".

  • Great! Your web site is ready to run with your content !

III. Migrate from previous versions of Miniportail 1.7 or GuppY 2.4

  • Back up whole web site before going ahead.
     

  • Run a "DB integrity check". Make sure it finds no error or run it again.

  • To Config site to activate the skin "no_skin".

  • Go to the management pages of your plugins to take their icons off from the top menu bar.

  • Preciously keep the five directories data, file, img, pages and photo.
  • Copy the new directories and files from the latest version of GuppY (that is / ; admin/ ; flash/ ; inc/ ; install/ and mobile/ ; plugins/ et skins/ . ) as well as install/ and its content.

  • Check if the "CHMOD" notice (from paragraph #2) is required for your installation. This will be the case if you had to apply it for your previous miniPortail / GuppY installs/migrations.

  • If your web site URL is http://www.mysite.com/ input the following URL in your browser : http://www.mysite.com/install/

  • Follow instructions for a "Migration".

  • Greta! You have just migrated to the latest version of GuppY.

  • Some modifications in the GuppY parameters require you to check for "General Config", "Site Config", "Home Config", "Sections Config", "Services Config" and "Boxes Config". You will also have to run a "DB integrity check" for updating the GuppY database indexes.

IV. Migrate from latest versions than Miniportail 1.7 or GuppY 2.4

IMPORTANT : the migration script isfor web sites running with miniPortail version 1.8 or later / GuppYversion 2.4 or later.

  • Back up all of your web site before going ahead.
     

  • Run a "DB integrity check". Make sure it finds no error or run it again.

  • Deactivate the plugins you are using

  • To Config site activate the skin "no_skin".

  • Go to the management pages of your plugins to take their icons off from the heigher menu bar.

  • Preciously keep the five directories data, file, img, pages and photo
  • Copy the new directories and files from the latest version of GuppY (that is / ; admin/ ; flash/ ; inc/ ; install/ ; mobile/ ; plugins/ and skins/ . ) as well as install/ and its content.

  • Check if the "CHMOD" notice (from paragraph #2) is required for your installation. This will be the case if you had to apply it for your previous miniPortail / GuppY installs/migrations.

  • If your web site URL is http://www.mysite.com/ input the following URL in your browser : http://www.mysite.com/install/

  • Follow instructions for a "Migration".

  • Great! You have just migrated to the latest version of GuppY.

  • Some modifications in the GuppY parameters require you to check for "General Config", "Themes config", "Home Config", "Sections Config", "Services Config", and for all skins "Look config", "Generate CSS" and "Boxes Config". You will also have to run a "DB integrity check" for updating the GuppY database indexes.

  • You need now to install your skin and compatible plugins

 

V. IMPORTANT NOTICES

  • Once you have finished install or migrating, make sure that all the files in the install/ directory were deleted. Otherwise anybody could run it on your web site and delete all the contents of your web site !

  • If you cannot see the install/ directory anymore, then it means that everything is fine. The same conclusion applies if the install/ directory still exists but is empty (you should the delete it by FTP, as your webhoster does not allow its deletion with PHP).

  • After the migration, the admin password is reset to "pass".

  • Don't forget to validate all admin pages to prevent from errors (even after an update).

 


Creation date : 06/12/2004 @ 04:00
Last update : 23/03/2012 @ 18:21
Category : GuppY
Page read 1179 times


Print the article Print the article

 
Reactions to this article


Reaction #398 

by asd 26/04/2022 @ 12:48

Awesome blog! Is your theme custom made or did you download it from somewhere? A theme like yours with a few simple adjustements would really make my blog stand out. Please let me know where you got your design. Thanks a lot make money Flipkart in hindi

Reaction #397 

by Yuyun 06/12/2020 @ 09:12

kalung kesehatan. aqiqah jakarta. Kampus tepat untuk lanjut studi. DISTRIBUTOR HANDUK. partisi geser jakarta. download mod bussid terbaru. jersey gaming. jersey sepeda printing. bikin jersey futsal,. pembuatan jersey di klaten. Jasa Review produk. tas motor. partisi movable wall. aged domain. Materi ajar format PowerPoint. meja sekolah SD. Lyndon navapark. cluster lumihous harga murah. Reseller Ms Glow. urutan chipset mediatek. Rumah bsd. Tabebuya bsd city. Tabebuya business home. Jatiasih central city bekasi. jatiasih cluster anabuki. Industri alat kesehatan. ms glow acne series. company profile berkualitas. villa di ciater yang ada kolam renang pribadi. harga sewa villa di ciater. villa murah di sari ater subang. Bali Wedding Photographer. hp oppo terbaru dan harganya. equipments charger. Lumihous kota wisata. Lumihous. harga forklift toyota bekas terbaru. harga kambing aqiqah jakarta timur.

Reaction #396 

by Yiyin 06/12/2020 @ 09:09

jasa backlink. jasa backlink PBN permanen dan aman. aswindra jaya. Klik Di Sini. pijat panggilan surabaya. booth pameran. sandiegohills. update algoritma Google Terbaru. Cara melakukan SEO copywriting. tempat wisata di Jogja. Tips memilih jasa penulis. cara memilih jasa backlink yang tepat. Manfaat menggunakan jasa backlink. tips berwisata di Bali. Paket wisata terbaik untuk anda di Bali. Download game GTA V. Grosir jilbab murah berkualitas. Roof tank Fiberglass. stafaband mp3. toko herbal di solo. KUR BRI. harga pembuatan kolam renang. Supplier alat kesehatan. Tips optimasi SEO on-page dan off-page. Paket wisata Bali yang populer. among us apk download. paket internet murah. distributor ms glow. jasa desain interior tegal. Jual Mesin Fotocopy Warna. Jual Fuji Xerox DC IV 5070. cara menghilangkan uban secara permanen. ptk sd smp sma kurikulum 2013. Pijat panggilan semarang. jasa SEO. apn telkomsel. Layanan travel Jogja dan Jakarta. pkvgames. daftarqq. dominoqq. Obat Cepat Hamil. Jasa AdWords. Jasa Pembuatan Website. Auto Like ig. tas motor. https://www.dailyinfo.id/. Toko laptop palembang. harga hp vivo terbaru. British Propolis.

Reaction #395 

by Yayan 06/12/2020 @ 09:07

jasa backlink adalah jenis jasa yang menbantu anda melakukan pemsangan backlink untuk website anda. Backlink merupakan bagian yang sangat penting dalam optimasi website. Hal ini sangat dibutuhkan untuk mendorong peringkat website anda pada halaman mesin pencari. Dengan menggunakan jasa backlink anda tidak perlu lagi repot-repot melakukan pemasangan backlink untuk website anda.jasa backlink . jasa backlink PBN permanen dan aman adalah jasa yang membantu agar website anda mendapatkan backlink dari blog atau artikel yang terkait dengan kata kunci yang anda targetkan. Tidak seperti backlink biasa, backlink PBN merupakan jenis backlink yang dapat memberikan dorongan peringkat yang cepat, permanen dan aman untuk website anda.jasa backlink PBN permanen dan aman . aswindra jaya merupakan agen tour wisata di Bali yang menawarkan berbagai paker wisata Bali terbaik. Anda dapat memilih paket wisata ini sesuai dengan dana dan kebutuhan anda. Nikmati perjalanan wisata menyenangkan di Bali bersama aswindrajaya. Anda akan ditemani supir yang berpengalaman dan profesional dalam melayani perjalanan wisata di Bali.aswindra jaya . Klik Di Sini adalah kalimat yang sering kali kita lihat saat mengunjungi suatu blog. Susunan kata klik di sini biasanya dijadikan sebagai bentuk ajakan yang sangat umum digunakan untuk mengajak seseorang untuk membuka suatu link. Jika anda tidak percaya, anda dapat mencoba membuktikannya sendiri dengan cara klik di sini.Klik Di Sini . pijat panggilan Surabaya merupakan jasa pijat profesional yang dapat anda panggil sehingga anda tidak perlu lagi repot-repot mengunjungi spa untuk mendapatkan layanan pijat yang professional. Pijat pangggilan Surabaya melayani ragam jenis pijat dengan menggunakan terapis pijat yang profesional dan berpengalaman.pijat panggilan surabaya . booth pameran yang didesain dan dibuat dengan baik sangatlah penting untuk menjamin hasil pameran yang optimal. Dengan menggunakan booth pameran yang berkualitas baik dari segi visual maupun kualitas bahannya, maka tentu saja anda akan lebih mudah menarik perhatian konsumen yang merupakan tujuan utama dari pameran tersebut.booth pameran . Sandiegohills merupakan kompleks pemakaman mewah yang dilengkapi dengan berbagai fasilitas untuk memudahkan dan memberi kenyamanan bagi keluarga yang berduka. Sandiegohills memang merupakan pemakaman dengan lingkungan yang tertata rapi bahkan dapat dikatakan sebagai kompleks pemakaman terindah di Indonesia.sandiegohills . update algoritma Google Terbaru adalah pengetahuan wajib bagi anda yang ingin secara serius bergelut di dunia bisnis online. Google secara berkala melakukan update algoritma minor dan major. Update minor biasanya dilakukan dalam hitungan bulan sedangkan update major biasanya dilakukan dalam hitungan tahun. Jadi anda perlu mengetahui update terbaru untuk mengikuti perkembangan.update algoritma Google Terbaru . Cara melakukan SEO copywriting sangat penting untuk dipahamio oleh para marketing online. SEO copywriting adalah teknik menyusun rangkaian kata yang dapat mengajak orang-oarang untuk melakukan sesuai dengan apa yang anda harapkan. Cara melakukan SEO copywriting ini biasa dilakukan untuk mengajak orang-orang untuk mendaftar, membeli atau bahkan berlangganan.Cara melakukan SEO copywriting . tempat wisata di Jogja sangatlah saying jika anda lewatkan. Ada berbagai tempat wisata di jogja dengan berbagai tema yang sesuai dengan selera anda. Anda dapat memilih wisata alam jogja yang indah atau wisata malam jogja yang eksotis serta berbagai jenis pilihan tema wisata lainnya yang disediakan oleh wisata jogja.tempat wisata di Jogja . Tips memilih jasa penulis pertama-tama yang perlu anda lakukan adalah memastikan lama pembuatan artikel, apakah jasa penulis tersebut sanggup memenuhi jadwal yang anda tetapkan. Tips lain dalam memilih jasa penulis adalah memastikan kualitas artikel dari penulis artikel tersebut. Terakhir adalah cara pemesanan jasa yang mudah.Tips memilih

Reaction #394 

by Yiyin 03/08/2020 @ 16:41

PTK Bahasa Indonesia dan Bahasa Inggris SD, SMP, SMA. RPP 1 Lembar. tips bermanfaat sehari-hari. kaos olahraga lengan panjang. aptoide.co.id. cara bikin kartu kredit. Gramcaster. Pemasangan fire alarm. localization strategy. Prediksi hk. Prediksi Hk. Bocoran Sgp. Keluaran Togel Jitu. Bocoran Togel Jitu. Berita Maluku. contoh surat pengunduran diri kerja. http://204.152.217.69/. http://198.96.92.120/. http://204.152.217.77/. http://204.152.217.76/masterpoker88/. Setelan Kaos Olahraga Terbaik. Rumah Yatim. Undangan pernikahan online. IDNLIVE Casino. Jasa desain. Rental Mobil Banyuwangi. aswindra jaya. https://en.aswindrajaya.com/mount-batur-sunrise-trekking/. Grosir baju muslim tanah Abang. foto katalog. rekomendasi drakor. Jasa Web. Cara mengatur ukuran kertas di Word. One more International Indonesia. aki innova reborn diesel. Jasa Pengaspalan. print kain murah. jam sholat digital. desain kemeja. jasa kontraktor jogja. harga dr laser. konveksi solo surakarta. Marmer Murah. https://www.balloon-corner.com/. beli followers instagram. jasa backlink. jasa backlink PBN permanen dan aman. aswindra jaya. Klik Di Sini.
StartPrevious [ 1 2 3 4 5 6 7 8 9 10 ] 10 next pagesNextEnd
 
Search




Newsletter
To receive news about this website, consider subscribing to our Newsletter.
Subscribe
Unsubscribe
51 Subscribers
Visits

   visitors

   visitors online

Calendar
Preferences

Connect again
---

Your user name :

Your secret code


 Count of members 493 members


Connected :

(nobody)