Welcome Guest, Not a member yet? Register   Sign In
can't get link to work
#31

My .htaccess file looks like this:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

# Prevent file browsing
Options -Indexes

Let me know what happens if you replace your .htaccess file with this one (after making a back-up of your own version).
Reply
#32

(03-26-2016, 08:01 AM)Wouter60 Wrote: My .htaccess file looks like this:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

# Prevent file browsing
Options -Indexes

Let me know what happens if you replace your .htaccess file with this one (after making a back-up of your own version).

just tried it and it has made no difference. the details page will still not load
Reply
#33

Has anyone found a solution for this?
Reply
#34

I'm experiencing a similar problem with this same project but with the add to cart function.
Reply
#35

Your links should be like this:

PHP Code:
<a href="<?php echo base_url('products/details/' . $product->id); ?>">
 
   <img src="<?php echo base_url('assets/images/productscat/' . $product->image); ?>" />
</
a
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#36

Give me a link to these videos...
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB