Phpizabi: Difference between revisions

From Alpine Linux
m (update to use lighttpd template)
(replace /etc/init.d with rc-service)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== What is phpizabi? ==
{{Delete|PHPizabi is not packaged in Alpine, and the main upstream source has been taken over by domain squatters. Their github has not been updated since ~2007.}}


PHPizabi is one of the most powerful social networking platforms on the planet. With literally thousands of websites powered by PHPizabi including everything from simple friends sites to the most complex networking super sites out there. Easy to install, use, and raising the bar on what it is to provide a reliable, fast, social networking package to raise your business to the next level.
[https://github.com/PHPizabi/phpizabi-core PHPizabi] is <small>(was?)</small> a social networking platform.  
 
== Set up phpizabi on Alpine Linux ==
 
This document will be a quick c/p guide to setup phpizabi on Alpine linux. What we will setup is the following:
 
* Lighttpd with PHP
* Mysql
* phpizabi


== Install lighttpd, PHP and MySql ==
== Install lighttpd, PHP and MySql ==
Line 15: Line 7:


Install extra packages:
Install extra packages:
apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql
{{Cmd|apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql}}


== Configuring MySql ==
== Configuring MySql ==


/usr/bin/mysql_install_db --user=mysql
{{Cmd|<nowiki>/usr/bin/mysql_install_db --user=mysql
/etc/init.d/mysql start && rc-update add mysql default
rc-service mysql start && rc-update add mysql default
/usr/bin/mysqladmin -u root password 'password'
/usr/bin/mysqladmin -u root password 'password'</nowiki>}}


'''Create the phpizabi database'''
'''Create the phpizabi database'''


mysql -u root -p
{{Cmd|mysql -u root -p}}


CREATE DATABASE phpizabi;
{{Cmd|CREATE DATABASE phpizabi;
GRANT ALL PRIVILEGES ON phpizabi.* TO "root";
GRANT ALL PRIVILEGES ON phpizabi.* TO "root";
FLUSH PRIVILEGES;
FLUSH PRIVILEGES;
EXIT
EXIT}}


== Installing and configuring phpizabi ==
== Installing and configuring phpizabi ==


'''Install phpizabi'''
Create a directory named {{Path|webapps}}
 
Make webapps folder


mkdir /usr/share/webapps/ -p
{{Cmd|mkdir -p /usr/share/webapps/}}


Download  
Download the latest source code archive


cd /usr/share/webapps/
{{Cmd|cd /usr/share/webapps/
wget http://www.phpizabi.net/actual_package/PHPizabi_0.848b_C1_HFP1.zip
wget https://github.com/PHPizabi/phpizabi-core/archive/refs/tags/v0.848.zip}}


Unpack and delete tar file
Unpack the archive and delete it afterwards


unzip PHPizabi_0.848b_C1_HFP1.zip
{{Cmd|unzip v0.848.zip
rm PHPizabi_0.848b_C1_HFP1.zip
rm v0.848.zip}}


Change Folder
Change folder


mv PHPizabi_0.848b_C1\ HFP1/ phpizabi
{{Cmd|mv PHPizabi_0.848b_C1\ HFP1/ phpizabi
mv phpizabi/PHPizabi\ 0.848b\ C1/* phpizabi/
mv phpizabi/PHPizabi\ 0.848b\ C1/* phpizabi/
rm -R phpizabi/PHPizabi\ 0.848b\ C1
rm -R phpizabi/PHPizabi\ 0.848b\ C1}}


Change Folder Persmissions
Change the folder persmissions


  chmod -R 777 /usr/share/webapps/phpizabi/
{{Cmd|chown -R lighttpd /usr/share/webapps/}}


Make Symlink to the phpizabi folder
Create a symlink to the {{Path|phpizabi}} folder


  ln -s /usr/share/webapps/phpizabi/ /var/www/localhost/htdocs/phpizabi
{{Cmd|ln -s /usr/share/webapps/phpizabi/ /var/www/localhost/htdocs/phpizabi}}


== Configuring phpizabi ==
== Configuring phpizabi ==
 
Browse to: <nowiki>http://WEBSERVER_IP_ADDRESS/phpizabi</nowiki> and Install phpizabi completing the information as appropriate from the web browser.
Browse to: http://WEBSERVER_IP_ADDRESS/phpizabi and Install phpizabi completing the information as appropriate from the web browser.


phpizabi Installation steps:
phpizabi Installation steps:
Line 74: Line 63:
Review License Agreement
Review License Agreement


* Please review the license agreement before you install the software.
::I have read and I agree to the PHPizabi end user license agreement


1 - Please review the license agreement before you install the software.
* System Integrity Check  
 
* Database Information
I have read and I agree to the PHPizabi end user license agreement
* Set up database
 
2 - System Integrity Check  
 
3 - Database Information
 
4 - Set up database


Please fill in the form below  
Please fill in the form below  


Database Information
* Database Information
 
* Please fill in the form below
* Please fill in the form below


MySQL Database Information
::MySQL Database Information
Tables prefix: '''dontchange'''
::Tables prefix: '''dontchange'''
Database Username: '''root'''
::Database Username: '''root'''
Database Password: '''password'''
::Database Password: '''password'''
Hostname: '''localhost'''
::Hostname: '''localhost'''
Database name: '''phpizabi'''
::Database name: '''phpizabi'''
  Attempt to create the database if it doesn't exist
:::Attempt to create the database if it doesn't exist


5 - Database Structure Creation
* Database Structure Creation


This step will create your database structure. Please stand by while in the creation process.  
This step will create your database structure. Please stand by while in the creation process.  
Continue
Continue


6 - Admin Account Creation
* Admin Account Creation


Please fill in the form below to create your administrative account
:Please fill in the form below to create your administrative account
Administrator information
::Administrator information
Username:
::Username:
Email Address:
::Email Address:
Password:
::Password:


Submit, Continue, Finish.
Submit, Continue, Finish.


Review the messages above before visiting your new site.
Review the messages above before visiting your new site.
You have '''phpizabi''' social networking platform installed, to access go to http://WEBSERVER_IP_ADDRESS/phpizabi and enjoy!
You have '''phpizabi''' social networking platform installed, to access go to <nowiki>http://WEBSERVER_IP_ADDRESS/phpizabi</nowiki> and enjoy!
 
[[Category:PHP]]
[[Category:SQL]]

Latest revision as of 10:08, 17 November 2023

This material is proposed for deletion ...

PHPizabi is not packaged in Alpine, and the main upstream source has been taken over by domain squatters. Their github has not been updated since ~2007. (Discuss)
Make sure no other pages link here and check the page's history before deleting.

PHPizabi is (was?) a social networking platform.

Install lighttpd, PHP and MySql

Basic Installation

For installing the additional packages first activate community packages and update the package index

Install the required packages:

# apk add lighttpd php82 fcgi php82-cgi

Configure Lighttpd

Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:

Contents of /etc/lighttpd/lighttpd.conf

... include "mod_fastcgi.conf" ...

Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.

Contents of /etc/lighttpd/mod_fastcgi.conf

... "bin-path" => "/usr/bin/php-cgi82" # php-cgi ...

Start lighttpd service and add it to default runlevel

# rc-service lighttpd start # rc-update add lighttpd default

Install extra packages:

apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql

Configuring MySql

/usr/bin/mysql_install_db --user=mysql rc-service mysql start && rc-update add mysql default /usr/bin/mysqladmin -u root password 'password'

Create the phpizabi database

mysql -u root -p

CREATE DATABASE phpizabi; GRANT ALL PRIVILEGES ON phpizabi.* TO "root"; FLUSH PRIVILEGES; EXIT

Installing and configuring phpizabi

Create a directory named webapps

mkdir -p /usr/share/webapps/

Download the latest source code archive

cd /usr/share/webapps/ wget https://github.com/PHPizabi/phpizabi-core/archive/refs/tags/v0.848.zip

Unpack the archive and delete it afterwards

unzip v0.848.zip rm v0.848.zip

Change folder

mv PHPizabi_0.848b_C1\ HFP1/ phpizabi mv phpizabi/PHPizabi\ 0.848b\ C1/* phpizabi/ rm -R phpizabi/PHPizabi\ 0.848b\ C1

Change the folder persmissions

chown -R lighttpd /usr/share/webapps/

Create a symlink to the phpizabi folder

ln -s /usr/share/webapps/phpizabi/ /var/www/localhost/htdocs/phpizabi

Configuring phpizabi

Browse to: http://WEBSERVER_IP_ADDRESS/phpizabi and Install phpizabi completing the information as appropriate from the web browser.

phpizabi Installation steps:

Welcome!

Review License Agreement

  • Please review the license agreement before you install the software.
I have read and I agree to the PHPizabi end user license agreement
  • System Integrity Check
  • Database Information
  • Set up database

Please fill in the form below

  • Database Information
  • Please fill in the form below
MySQL Database Information
Tables prefix: dontchange
Database Username: root
Database Password: password
Hostname: localhost
Database name: phpizabi
Attempt to create the database if it doesn't exist
  • Database Structure Creation

This step will create your database structure. Please stand by while in the creation process. Continue

  • Admin Account Creation
Please fill in the form below to create your administrative account
Administrator information
Username:
Email Address:
Password:

Submit, Continue, Finish.

Review the messages above before visiting your new site. You have phpizabi social networking platform installed, to access go to http://WEBSERVER_IP_ADDRESS/phpizabi and enjoy!