<div dir="ltr">Hello,<br><div><div class="gmail_extra"><br></div><div class="gmail_extra">I only have partial answers; please see below. Also see <a href="https://github.com/phpmyadmin/error-reporting-server/pull/179">https://github.com/phpmyadmin/error-reporting-server/pull/179</a><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Mar 3, 2018 at 4:46 AM, Lakshay arora <span dir="ltr"><<a href="mailto:arora.lakshya123@gmail.com" target="_blank">arora.lakshya123@gmail.com</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"><div dir="ltr"><div><div><div>Hi all,<br></div>I am trying to set up the error reporting server on xampp by following the steps in the how to deploy section of the readme of <a href="https://github.com/phpmyadmin/error-reporting-server/" target="_blank">error-reporting server repo</a><br></div><br>The second and third  step say <br><br>Add a virtual hosts entry pointing at the directory where you extracted the
files in the previous step. Make sure that the installation is in the
document root.<br></div><div>and<br>Configure the web server <br></div><div><br></div><div>I've added the virtual host entry point in the httpd.conf file and enabled vhosts.conf.<br></div><div></div></div></blockquote><div><br></div><div>Yes, the way the current configuration directive is written, it will override any existing services on port 80.<br><br></div><div>I've modified it a bit for my own installation, so that my "normal" webserver process continues on port 80:<br><br>Listen 8080<br><VirtualHost *:8080><br>  DocumentRoot "/usr/local/src/error-reporting-server"<br><br>  <Directory /usr/local/src/error-reporting-server><br>    Require all granted<br>  </Directory><br></VirtualHost><br><br></div><div>Then I can access the error reporting server on port 8080<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>I've only been able to do this step properly, after this step, opening localhost opens the error reporting server and i'm unable to visit anything else.<br><br></div><div>The fourth step says<br></div><div>create the database for the server<br><br></div><div>It doesn't tell the info of the database, what to create??<br><br></div></div></blockquote><div><br></div><div>I think this just means to create a blank database, which you then tell the name of to app.php.<br><br></div><div>One problem I've found is that I have no idea how to generate an OAuth authentication attempt. I'm able to get to a page that has a link to "Login with Github" but the link takes me to  /developers/login which doesn't exist, giving a 404 error.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div></div><div>The last step says<br>Run the migrations that have been created so far to setup the database
<br>For new system: just run migration
<code>sudo bin/cake migrations migrate</code><br></div><div>Running the command gives the following error<br><br>Exception: There was a problem connecting to the database: SQLSTATE[HY000] [2002] No such file or directory in [/opt/lampp/htdocs/gsoc/error-<wbr>reporting-server/vendor/<wbr>robmorgan/phinx/src/Phinx/Db/<wbr>Adapter/MysqlAdapter.php, line 115]<br></div><div>Followed by many other errors.<br></div></div></blockquote><div> <br></div><div>Probably you didn't create and/or specify the database name as mentioned above, although I'm not sure.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div></div><div>Next section is oauth setup config.<br></div><div>what should be the developors callback? the whole path? <a href="http://localhost/error-reportong-server/developrs/callback" target="_blank">http://localhost/error-<wbr>reportong-server/developrs/<wbr>callback</a> ??<br><br><br></div><div>Next is setting up the webhook-<br></div><div>I don't understand anything in this section.<br></div><div>The target repo is the phpmadmin/phpmyadmin repo, how can I add a webhook in that repo??<br><br></div><div>Kindly help<br></div><div>Thanks<span class="gmail-HOEnZb"><font color="#888888"><br></font></span></div><span class="gmail-HOEnZb"><font color="#888888"><div>Lakshay arora<br></div><div><br></div></font></span></div>
<br>______________________________<wbr>_________________<br>
Developers mailing list<br>
<a href="mailto:Developers@phpmyadmin.net">Developers@phpmyadmin.net</a><br>
<a href="https://lists.phpmyadmin.net/mailman/listinfo/developers" rel="noreferrer" target="_blank">https://lists.phpmyadmin.net/<wbr>mailman/listinfo/developers</a><br>
<br></blockquote></div><br></div></div></div>