Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I assume you are using windows. Open the command prompt and type <code>ipconfig</code> and find out your local address (on your pc) it should look something like <code>192.168.1.13</code> or <code>192.168.0.5</code> where the end digit is the one that changes. It should be next to IPv4 Address.</p> <p>If your WAMP does not use virtual hosts the next step is to enter that IP address on your phones browser ie <code>http://192.168.1.13</code> If you have a virtual host then you will need root to edit the hosts file.</p> <p>If you want to test the responsiveness / mobile design of your website you can change your user agent in chrome or other browsers to mimic a mobile.</p> <p>See <a href="http://googlesystem.blogspot.co.uk/2011/12/changing-user-agent-new-google-chrome.html" rel="nofollow noreferrer">http://googlesystem.blogspot.co.uk/2011/12/changing-user-agent-new-google-chrome.html</a>.</p> <p>Edit: Chrome dev tools now has a mobile debug tool where you can change the size of the viewport, spoof user agents, connections (4G, 3G etc).</p> <p>If you get forbidden access then see this question <a href="https://stackoverflow.com/questions/8366976/wamp-error-forbidden-you-dont-have-permission-to-access-phpmyadmin-on-this-s">WAMP error: Forbidden You don&#39;t have permission to access /phpmyadmin/ on this server</a>. Basically, change the occurrances of <code>deny,allow</code> to <code>allow,deny</code> in the <code>httpd.conf</code> file. You can access this by the WAMP menu.</p> <p>To eliminate possible causes of the issue for now set your config file to</p> <pre><code>&lt;Directory /&gt; Options FollowSymLinks AllowOverride All Order allow,deny Allow from all &lt;RequireAll&gt; Require all granted &lt;/RequireAll&gt; &lt;/Directory&gt; </code></pre> <p>As thatis working for my windows PC, if you have the directory config block as well change that also to allow all.</p> <p>Config file that fixed the problem:</p> <p><a href="https://gist.github.com/samvaughton/6790739" rel="nofollow noreferrer">https://gist.github.com/samvaughton/6790739</a></p> <p>Problem was that the /www apache directory config block still had deny set as default and only allowed from localhost.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload