<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Bookient installation</title><link>https://sourceforge.net/p/bookient/wiki/Bookient%2520installation/</link><description>Recent changes to Bookient installation</description><atom:link href="https://sourceforge.net/p/bookient/wiki/Bookient%20installation/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 22 Dec 2016 19:06:05 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/bookient/wiki/Bookient%20installation/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for Bookient installation page</title><link>https://sourceforge.net/p/bookient/wiki/Bookient%2520installation/?limit=25#791f</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;me podrias pasar tu carpeta config para ver como lo tienes configurado porfavor&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LUIS</dc:creator><pubDate>Thu, 22 Dec 2016 19:06:05 -0000</pubDate><guid>https://sourceforge.net21e26bb896b564d8a80cf250179f89785d395c6d</guid></item><item><title>Discussion for Bookient installation page</title><link>https://sourceforge.net/p/bookient/wiki/Bookient%2520installation/?limit=25#1644</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;no encuentro como instalar hago todo como esta en el manual y igual deja problemas&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LUIS</dc:creator><pubDate>Thu, 22 Dec 2016 18:59:51 -0000</pubDate><guid>https://sourceforge.neta56c75d89d9aef3b50221eaca2d9907c409afde8</guid></item><item><title>Bookient installation modified by josu</title><link>https://sourceforge.net/p/bookient/wiki/Bookient%2520installation/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">josu</dc:creator><pubDate>Thu, 11 Jun 2015 07:43:58 -0000</pubDate><guid>https://sourceforge.net08a27220b115a791f0a76c88853fa4d4549a8293</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/bookient/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;em&gt;Installation Requirements&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;-- LAMP-system --&lt;/p&gt;
&lt;h1 id="first-setup-server-environment"&gt;First setup server environment:&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;eq. Debian 8 (Jessie), Apache2, PHP 5.6, Lates MySQL/MariaDB.&lt;/em&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;Apache2:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;/&lt;em&gt; Basic installation with following modules &lt;/em&gt;/&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-&amp;gt; Install Mod-rewrite         (a2enmod rewrite)&lt;br /&gt;
-&amp;gt; Install Mod-actions      (a2enmod actions)&lt;br /&gt;
-&amp;gt; Install Mod-reqtimeout   (a2enmod reqtimeout)&lt;br /&gt;
-&amp;gt; Install Mod-dav_fs       (a2enmod dav_fs)&lt;br /&gt;
-&amp;gt; Install Mod-cgi      (a2enmod cgi)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;// Separate your www - alias in Apache config and forward * to root&lt;br /&gt;
/&lt;em&gt; Example (Docroot /var/www/html) (change yourdomain.com) &lt;/em&gt;/&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;lt;VirtualHost *:80=""&amp;gt;&lt;br /&gt;
        ServerName  www.yourdomain.com&lt;br /&gt;
        DocumentRoot /var/www/html/www&lt;br /&gt;
        &amp;lt;Directory var="" www="" html="" www=""&amp;gt;&lt;br /&gt;
                Options Indexes FollowSymLinks MultiViews&lt;br /&gt;
                AllowOverride All&lt;br /&gt;
                Order allow,deny&lt;br /&gt;
                allow from all&lt;br /&gt;
        &amp;lt;/Directory&amp;gt;&lt;br /&gt;
        ErrorLog ${APACHE_LOG_DIR}/error_www.log&lt;br /&gt;
        LogLevel warn&lt;br /&gt;
        CustomLog ${APACHE_LOG_DIR}/access.log combined&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;VirtualHost *:80=""&amp;gt;&lt;br /&gt;
        ServerName  yourdomain.com&lt;br /&gt;
        ServerAlias *.yourdomain.com&lt;br /&gt;
        DocumentRoot /var/www/html&lt;br /&gt;
        &amp;lt;Directory var="" www="" html=""/&amp;gt;&lt;br /&gt;
                Options Indexes FollowSymLinks MultiViews&lt;br /&gt;
                AllowOverride All&lt;br /&gt;
                Order allow,deny&lt;br /&gt;
                allow from all&lt;br /&gt;
        &amp;lt;/Directory&amp;gt;&lt;br /&gt;
        ErrorLog ${APACHE_LOG_DIR}/error_yourdomain.log&lt;br /&gt;
        LogLevel warn&lt;br /&gt;
        CustomLog ${APACHE_LOG_DIR}/access.log combined&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;PHP:&lt;/strong&gt;&lt;br /&gt;
/&lt;em&gt; Basic installation with following modules &lt;/em&gt;/&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-&amp;gt; Install php5-mysqlnd    (apt-get install php5-mysqlnd)&lt;br /&gt;
-&amp;gt; Install php5-intl        (apt-get install php5-intl)&lt;br /&gt;
-&amp;gt; Install php5-mcrypt      (apt-get install php5-mcrypt)&lt;br /&gt;
-&amp;gt; Install php5-recode      (apt-get install php5-recode)&lt;br /&gt;
-&amp;gt; Install php5-tidy        (apt-get install php5-tidy)&lt;br /&gt;
-&amp;gt; Install php5-pspell      (apt-get install php5-pspell)&lt;br /&gt;
-&amp;gt; Install php5-xsl         (apt-get install php5-xsl)&lt;br /&gt;
-&amp;gt; Install php5-imagick     (apt-get install php5-imagick)&lt;br /&gt;
-&amp;gt; Install php5-sqlite      (apt-get install php5-sqlite)&lt;br /&gt;
-&amp;gt; Install php5-xmlrpc      (apt-get install php5-xmlrpc)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;// enable short tags in php.ini&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;short_open_tag=On&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;===================================================================&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;MySQL:&lt;/strong&gt;&lt;br /&gt;
/&lt;em&gt; Default installation &lt;/em&gt;/&lt;br /&gt;
-&amp;gt; You must have mysql root access.&lt;br /&gt;
===================================================================&lt;br /&gt;
Other:&lt;br /&gt;
/&lt;em&gt; Make sure that PHP can send emails &lt;/em&gt;/&lt;br /&gt;
===================================================================&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;---------------------------------------- NOTICE ----------------------------------------&lt;br /&gt;
You need to have root domain (yourdomain.com) to enable automated alias creation.&lt;br /&gt;
-&amp;gt; Forward in your DNS-settings all your aliases to your server (*.yourdomain.com)&lt;br /&gt;
---------------------------------------- NOTICE ----------------------------------------&lt;/p&gt;
&lt;h2 id="then-bookient-installation"&gt;&lt;em&gt;Then Bookient - installation:&lt;/em&gt;&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;1. Extract files and set your environment variables to following files:&lt;/strong&gt;&lt;br /&gt;
(change yourdomain.com)&lt;/p&gt;
&lt;p&gt;In application/config/config.php&lt;br /&gt;
edit following:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;$config&lt;span&gt;['base_url']&lt;/span&gt;             = $urm.$HostName.'/';&lt;br /&gt;
$config&lt;span&gt;['super_base_url_back']&lt;/span&gt;  = $urm.'yourdomain.com/superadmin/dashboard';&lt;br /&gt;
$config&lt;span&gt;['super_base_url']&lt;/span&gt;       = $urm.'admin.yourdomain.com/superadmin/dashboard';&lt;br /&gt;
$config&lt;span&gt;['admin_base_url']&lt;/span&gt;       = $urm.$HostName.'/admin/calender';&lt;br /&gt;
$config&lt;span&gt;['protocol']&lt;/span&gt;             = $urm;&lt;br /&gt;
$config&lt;span&gt;['base_host']&lt;/span&gt;            = 'yourdomain.com';&lt;br /&gt;
$config&lt;span&gt;['admin_host']&lt;/span&gt;           = 'admin.yourdomain.com';&lt;br /&gt;
$config&lt;span&gt;['base_domain']&lt;/span&gt;          = 'yourdomain';&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;===================================================================&lt;br /&gt;
In application/config/routes.php&lt;br /&gt;
edit following:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;$HostNameFrRouter != "yourdomain.com" &amp;amp;&amp;amp;  $HostNameFrRouter != "www.yourdomain.com" &amp;amp;&amp;amp; $HostNameFrRouter != "register.yourdomain.com" &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;===================================================================&lt;/p&gt;
&lt;p&gt;In application/config/database.php&lt;br /&gt;
edit following:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;$db&lt;span&gt;['default']&lt;/span&gt;&lt;span&gt;['hostname']&lt;/span&gt; = 'localhost';&lt;br /&gt;
$db&lt;span&gt;['default']&lt;/span&gt;&lt;span&gt;['username']&lt;/span&gt; = 'bookient';&lt;br /&gt;
$db&lt;span&gt;['default']&lt;/span&gt;&lt;span&gt;['password']&lt;/span&gt; = 'bookientpass';&lt;br /&gt;
$db&lt;span&gt;['default']&lt;/span&gt;&lt;span&gt;['database']&lt;/span&gt; = 'bookient';&lt;br /&gt;
$db&lt;span&gt;['stored_procedure']&lt;/span&gt;&lt;span&gt;['hostname']&lt;/span&gt; = 'localhost';&lt;br /&gt;
$db&lt;span&gt;['stored_procedure']&lt;/span&gt;&lt;span&gt;['username']&lt;/span&gt; = 'bookient';&lt;br /&gt;
$db&lt;span&gt;['stored_procedure']&lt;/span&gt;&lt;span&gt;['password']&lt;/span&gt; = 'bookientpass';&lt;br /&gt;
$db&lt;span&gt;['stored_procedure']&lt;/span&gt;&lt;span&gt;['database']&lt;/span&gt; = 'bookient';&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;===================================================================&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;2. Set up DB&lt;/strong&gt;&lt;br /&gt;
/&lt;em&gt; Insert MySQL - database&lt;/em&gt;/&lt;/p&gt;
&lt;p&gt;// create db (eq. bookient)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;mysqladmin -u root -p create bookient&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;// From /SQL/ - folder insert bookient.sql (as root)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;mysql -u root -p bookient &amp;lt; bookient.sql&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;// add user bookient@localhost (pass: bookientpass) with following rights:&lt;br /&gt;
// In sql-console:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;CREATE USER 'bookient'@'localhost' IDENTIFIED BY 'bookientpass';GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, CREATE TEMPORARY TABLES, CREATE VIEW, EVENT, TRIGGER, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EXECUTE ON &lt;em&gt;.&lt;/em&gt; TO 'bookient'@'localhost' IDENTIFIED BY 'bookientpass' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;3. Login to superadmin with superadmin-credentials&lt;/strong&gt;&lt;br /&gt;
Open browser &lt;a href="http://admin.yourdomain.com/superadmin/dashboard" rel="nofollow"&gt;http://admin.yourdomain.com/superadmin/dashboard&lt;/a&gt;&lt;br /&gt;
Login: notreal@bookient.com&lt;br /&gt;
Pass: superbookient&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;4. You can create your www-page into /www/&lt;/strong&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;5. for Google &amp;amp; Facebook-login you have to set your keys...&lt;/strong&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;6. As your customers enter yourdomain.com (without www) or register.yourdomain.com &lt;br /&gt;
registration form is showed for new customer creation.&lt;/strong&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;That's all&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">josu</dc:creator><pubDate>Thu, 11 Jun 2015 06:03:49 -0000</pubDate><guid>https://sourceforge.net9e793d3c74b81d9cfea82706b2725d5c4d75dd78</guid></item><item><title>Home modified by Pardco</title><link>https://sourceforge.net/p/bookient/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/bookient/wiki/markdown_syntax"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/pardco"&gt;Pardco&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-5418467c04161f7b483cdf18" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pardco</dc:creator><pubDate>Tue, 16 Sep 2014 14:17:33 -0000</pubDate><guid>https://sourceforge.net9d2e72b8a5089b395cdbf23e80db3e4d7316e7d4</guid></item></channel></rss>