Skip to content

Ximdex CMS API: FAQs

Javi Carretero edited this page Feb 19, 2015 · 4 revisions

Returning a 404 error

That's because your Apache2 web server is not properly configured. You should edit your sites-enabled configuration (usually 000-default.conf) and create an new directive for your Ximdex CMS instance.

Here is an example:

<Directory /var/www/**myximdex**>
  Options Indexes FollowSymLinks MultiViews
  AllowOverride All
  Order allow,deny
  Allow from all
</Directory>

Perhaps your Apache Server doesn't have enabled the mod rewrite module. To enable it, run this command (in Debian/Ubuntu):

$> sudo a2enmod rewrite

After that, restart your web server and try again!

Topics

  • Home
  • How do I start?
  • Easy Recipes
Clone this wiki locally