Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
Have you verified that mod_rewrite is enabled?
On Fri, Jun 13, 2014 at 12:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
[ Drupal support list | http://lists.drupal.org/ ]
if you talking about in_array('mod_rewrite', apache_get_modules()); - no I have not. I'll give it a shot. Thanks!!
On 2014-06-13 14:33, Erik Alfkin wrote:
Have you verified that mod_rewrite is enabled?
On Fri, Jun 13, 2014 at 12:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
[ Drupal support list | http://lists.drupal.org/ [1] ]
--
Erik Alfkin
Links:
Ran echo in_array('mod_rewrite', apache_get_modules()); which replies with a "1". So it must be something else in the Apache config or the .htaccess file.
I'll keep looking.
Thank you everyone for your help!!
On 2014-06-13 14:33, Erik Alfkin wrote:
Have you verified that mod_rewrite is enabled?
On Fri, Jun 13, 2014 at 12:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
[ Drupal support list | http://lists.drupal.org/ [1] ]
--
Erik Alfkin
Links:
I replaced the .htaccess with the one from my dev box just to make sure. I also moved the vhost definition from /etc/httpd/conf.d/vhosts.conf to the bottom of /etc/httpd/conf/httpd.conf
still fails.
Thank you to everyone for your suggestions!!
Keith
On 2014-06-13 16:02, techlists@phpcoderusa.com wrote:
Ran echo in_array('mod_rewrite', apache_get_modules()); which replies with a "1". So it must be something else in the Apache config or the .htaccess file.
I'll keep looking.
Thank you everyone for your help!!
On 2014-06-13 14:33, Erik Alfkin wrote:
Have you verified that mod_rewrite is enabled?
On Fri, Jun 13, 2014 at 12:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
[ Drupal support list | http://lists.drupal.org/ [1] ]
--
Erik Alfkin
Links:
On a VPS system I'll usually add
*Options FollowSymLinks** **AllowOverride All** **Order allow,deny** **allow from all*
on <Directory> instead of each individual virtual host.
The -Don-
On 6/13/2014 3:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
That allows the .htaccess file to work, but it won't load mod_rewrite. Have you run the "sudo a2enmod rewrite" command and reloaded Apache?
On Fri, Jun 13, 2014 at 2:56 PM, Don donald@fane.com wrote:
On a VPS system I'll usually add
*Options FollowSymLinks* *AllowOverride All* *Order allow,deny* *allow from all*
on <Directory> instead of each individual virtual host.
The -Don-
On 6/13/2014 3:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
-- [ Drupal support list | http://lists.drupal.org/ ]
Right, but .htaccess converts the clean urls to a "q=url" key/value $_GET query.
I think it also sets which browsers have access to the site.
-Don-
On 6/13/2014 6:07 PM, Erik Alfkin wrote:
That allows the .htaccess file to work, but it won't load mod_rewrite. Have you run the "sudo a2enmod rewrite" command and reloaded Apache?
On Fri, Jun 13, 2014 at 2:56 PM, Don <donald@fane.com mailto:donald@fane.com> wrote:
On a VPS system I'll usually add *Options FollowSymLinks** **AllowOverride All** **Order allow,deny** **allow from all* on <Directory> instead of each individual virtual host. The -Don- On 6/13/2014 3:36 PM, techlists@phpcoderusa.com <mailto:techlists@phpcoderusa.com> wrote:Hi, I've uploaded Drupal Commerce Kickstart and it is working as I would expect it to. The problem is clean URLs. This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue. I modified the Apache config changing AllowOverride to ALL. I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644. When I go into the Admin panel to check for clean URL's it fails. Any suggestions on how I can troubleshoot this issue? Thanks a bunch in advance!! Keith-- [ Drupal support list | http://lists.drupal.org/ ]--
Erik Alfkin
If in_array('mod_rewrite', apache_get_modules()); returns "1" then I do not need to "sudo a2enmod rewrite" right?
On 2014-06-13 16:41, Don wrote:
Right, but .htaccess converts the clean urls to a "q=url" key/value $_GET query.
I think it also sets which browsers have access to the site.
-Don-
On 6/13/2014 6:07 PM, Erik Alfkin wrote:
That allows the .htaccess file to work, but it won't load mod_rewrite. Have you run the "sudo a2enmod rewrite" command and reloaded Apache?
On Fri, Jun 13, 2014 at 2:56 PM, Don donald@fane.com wrote:
On a VPS system I'll usually add
OPTIONS FOLLOWSYMLINKS ALLOWOVERRIDE ALL ORDER ALLOW,DENY ALLOW FROM ALL
on <Directory> instead of each individual virtual host.
The -Don-
On 6/13/2014 3:36 PM, techlists@phpcoderusa.com wrote:
Hi,
I've uploaded Drupal Commerce Kickstart and it is working as I would
expect it to. The problem is clean URLs.
This is on a new VPS and I have no other sites on this server that use mod rewrite. As a result I do not know if this is an Apache config issue or something to do with Drupal or Kickstart. I have KickStart setup on a local dev box and clean URL's was not an issue so I assume this might be an Apache config issue.
I modified the Apache config changing AllowOverride to ALL.
I've verified the .htaccess file that came with Kickstart is in the root directory and have verified the permissions are 644.
When I go into the Admin panel to check for clean URL's it fails.
Any suggestions on how I can troubleshoot this issue?
Thanks a bunch in advance!!
Keith
-- [ Drupal support list | http://lists.drupal.org/ [1] ]
--
Erik Alfkin
Links: