<div dir="ltr">So I made corrections within config.yml so now they are hardcoded as the same values as in parameter.yml.<div>Now I get the Date.Time error when running doctrine:database:create. This is despite having that defined in php.ini</div><div>code as written: </div><div><br></div><div><div>[Date]</div><div>; Defines the default timezone used by the date functions</div><div>; <a href="http://php.net/date.timezone">http://php.net/date.timezone</a></div><div>date.timezone = "America/Vancouver"</div></div><div><br></div><div><br></div><div><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Aug 4, 2017 at 12:00 PM,  <span dir="ltr"><<a href="mailto:mapbender_users-request@lists.osgeo.org" target="_blank">mapbender_users-request@lists.osgeo.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Send Mapbender_users mailing list submissions to<br>
        <a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.<wbr>org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://lists.osgeo.org/mailman/listinfo/mapbender_users" rel="noreferrer" target="_blank">https://lists.osgeo.org/<wbr>mailman/listinfo/mapbender_<wbr>users</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:mapbender_users-request@lists.osgeo.org">mapbender_users-request@lists.<wbr>osgeo.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:mapbender_users-owner@lists.osgeo.org">mapbender_users-owner@lists.<wbr>osgeo.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Mapbender_users digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Installation issue Mapbender 3 (Nelson Lovestrom)<br>
   2. Re: Installation issue Mapbender 3 (Charlotte Toma)<br>
<br>
<br>
------------------------------<wbr>------------------------------<wbr>----------<br>
<br>
Message: 1<br>
Date: Thu, 3 Aug 2017 13:20:14 -0700<br>
From: Nelson Lovestrom <<a href="mailto:nelson@auracleremotesensing.com">nelson@auracleremotesensing.<wbr>com</a>><br>
To: <a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.<wbr>org</a><br>
Subject: [Mapbender-users] Installation issue Mapbender 3<br>
Message-ID:<br>
        <<a href="mailto:CAFT3dytPVF95Q7uJkrkXfK4xKqHwg8vdNY9H34PQApVty8LrfQ@mail.gmail.com">CAFT3dytPVF95Q7uJkrkXfK4xKqHw<wbr>g8vdNY9H34PQApVty8LrfQ@mail.<wbr>gmail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
Having an issue with getting mapbender 3 up and running.<br>
<br>
I have Apache24 64 bit. and PHP 5.6 64 bit.<br>
I've configured both of those correctly to talk to each other.<br>
I've went through the steps to install mapbender3 as found here.<br>
<a href="https://doc.mapbender3.org/en/book/installation/installation_windows.html" rel="noreferrer" target="_blank">https://doc.mapbender3.org/en/<wbr>book/installation/<wbr>installation_windows.html</a><br>
<br>
When I get to this part<br>
<br>
c:<br>
cd mapbender3<br>
php.exe app/console doctrine:database:create<br>
php.exe app/console doctrine:schema:create<br>
php.exe app/console assets:install web<br>
php.exe app/console fom:user:resetroot<br>
php.exe app/console doctrine:fixtures:load<br>
--fixtures=./mapbender/src/<wbr>Mapbender/CoreBundle/<wbr>DataFixtures/ORM/Epsg/<br>
--append<br>
php.exe app/console doctrine:fixtures:load<br>
--fixtures=./mapbender/src/<wbr>Mapbender/CoreBundle/<wbr>DataFixtures/ORM/Application/<br>
--append<br>
<br>
the first php.exe line throws a fatal error with the message 'You have<br>
requested a non-existent parameter "database_host".<br>
<br>
How do I fix this and get Mapbender running?<br>
<br>
<br>
--<br>
Nelson Lovestrom<br>
B.A., P.G. Dip.<br>
GIS Technician<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://lists.osgeo.org/pipermail/mapbender_users/attachments/20170803/83a527af/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.osgeo.org/<wbr>pipermail/mapbender_users/<wbr>attachments/20170803/83a527af/<wbr>attachment-0001.html</a>><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Fri, 4 Aug 2017 09:50:37 +0200<br>
From: Charlotte Toma <<a href="mailto:charlotte.toma@wheregroup.com">charlotte.toma@wheregroup.com</a><wbr>><br>
To: <a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.<wbr>org</a><br>
Subject: Re: [Mapbender-users] Installation issue Mapbender 3<br>
Message-ID: <<a href="mailto:5d112440-79cc-d142-d10d-d21baf401c7b@wheregroup.com">5d112440-79cc-d142-d10d-<wbr>d21baf401c7b@wheregroup.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
Good morning,<br>
<br>
the "non-existent parameter" database_host is from the database<br>
definition in the parameters.yml (app/config). You propably defined a<br>
false value in the database connection in the config.yml<br>
<br>
parameters:<br>
    # database-connection "default"<br>
    database_driver:   pdo_pgsql<br>
    database_host:     localhost<br>
    database_port:     5432<br>
    database_name:     mapbender3<br>
    database_path:     ~<br>
    database_user:     postgres<br>
    database_password: postgres<br>
<br>
Documentation is here: <a href="https://doc.mapbender3.org/en/book/database.html" rel="noreferrer" target="_blank">https://doc.mapbender3.org/en/<wbr>book/database.html</a><br>
<br>
--<br>
Mit freundlichen Grüßen<br>
<br>
Charlotte Toma<br>
GIS-Consultant<br>
<br>
******************************<wbr>*****************************<br>
FOSS Academy Sommerschule 2017<br>
Aufbau von Geodateninfrastrukturen mit Open-Source-Software<br>
11.-15. September 2017<br>
<a href="http://www.foss-academy.com/sommerschule" rel="noreferrer" target="_blank">www.foss-academy.com/<wbr>sommerschule</a><br>
******************************<wbr>*****************************<br>
<br>
<br>
 Charlotte Toma<br>
 WhereGroup GmbH & Co.KG<br>
 Eifelstraße 7<br>
 53119 Bonn<br>
 Germany<br>
<br>
 Fon: <a href="tel:%2B49%280%29228%2090%2090%2038%20-%2024" value="+4922890903824">+49(0)228 90 90 38 - 24</a><br>
 Fax: <a href="tel:%2B49%280%29228%2090%2090%2038%20-%2011" value="+4922890903811">+49(0)228 90 90 38 - 11</a><br>
<br>
 <a href="mailto:charlotte.toma@wheregroup.com">charlotte.toma@wheregroup.com</a><br>
 <a href="http://www.wheregroup.com" rel="noreferrer" target="_blank">www.wheregroup.com</a><br>
<br>
 Folgen Sie der WhereGroup auf twitter: <a href="http://twitter.com/WhereGroup_com" rel="noreferrer" target="_blank">http://twitter.com/WhereGroup_<wbr>com</a><br>
<br>
Amtsgericht Bonn, HRA 6788<br>
------------------------------<wbr>-<br>
Komplementärin:<br>
WhereGroup Verwaltungs GmbH<br>
vertreten durch:<br>
Olaf Knopp, Peter Stamm<br>
------------------------------<wbr>-<br>
<br>
Am 03.08.2017 um 22:20 schrieb Nelson Lovestrom:<br>
> Having an issue with getting mapbender 3 up and running.<br>
><br>
> I have Apache24 64 bit. and PHP 5.6 64 bit.<br>
> I've configured both of those correctly to talk to each other.<br>
> I've went through the steps to install mapbender3 as found<br>
> here. <a href="https://doc.mapbender3.org/en/book/installation/installation_windows.html" rel="noreferrer" target="_blank">https://doc.mapbender3.org/en/<wbr>book/installation/<wbr>installation_windows.html</a><br>
><br>
> When I get to this part<br>
> c:<br>
> cd mapbender3<br>
> php.exe app/console doctrine:database:create<br>
> php.exe app/console doctrine:schema:create<br>
> php.exe app/console assets:install web<br>
> php.exe app/console fom:user:resetroot<br>
> php.exe app/console doctrine:fixtures:load --fixtures=./mapbender/src/<wbr>Mapbender/CoreBundle/<wbr>DataFixtures/ORM/Epsg/ --append<br>
> php.exe app/console doctrine:fixtures:load --fixtures=./mapbender/src/<wbr>Mapbender/CoreBundle/<wbr>DataFixtures/ORM/Application/ --append<br>
> the first php.exe line throws a fatal error with the message 'You have<br>
> requested a non-existent parameter "database_host".<br>
><br>
> How do I fix this and get Mapbender running?<br>
><br>
><br>
> --<br>
> Nelson Lovestrom<br>
> B.A., P.G. Dip.<br>
> GIS Technician<br>
><br>
><br>
><br>
> ______________________________<wbr>_________________<br>
> Mapbender_users mailing list<br>
> <a href="mailto:Mapbender_users@lists.osgeo.org">Mapbender_users@lists.osgeo.<wbr>org</a><br>
> <a href="https://lists.osgeo.org/mailman/listinfo/mapbender_users" rel="noreferrer" target="_blank">https://lists.osgeo.org/<wbr>mailman/listinfo/mapbender_<wbr>users</a><br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://lists.osgeo.org/pipermail/mapbender_users/attachments/20170804/2e526c82/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.osgeo.org/<wbr>pipermail/mapbender_users/<wbr>attachments/20170804/2e526c82/<wbr>attachment-0001.html</a>><br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
______________________________<wbr>_________________<br>
Mapbender_users mailing list<br>
<a href="mailto:Mapbender_users@lists.osgeo.org">Mapbender_users@lists.osgeo.<wbr>org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/mapbender_users" rel="noreferrer" target="_blank">https://lists.osgeo.org/<wbr>mailman/listinfo/mapbender_<wbr>users</a><br>
<br>
------------------------------<br>
<br>
End of Mapbender_users Digest, Vol 129, Issue 1<br>
******************************<wbr>*****************<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div><font size="4" face="garamond, serif">Nelson Lovestrom</font></div><div><font face="garamond, serif" size="4">B.A., P.G. Dip.</font></div><div><font face="garamond, serif" size="4">GIS Technician</font></div><div></div></div></div></div></div></div></div></div>
</div></div></div>