Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

edit button for prodct. categories stopped working


zpupster

Recommended Posts

hello,

 

i can not edit any products, all buttons in the section admin>catalog> categories and products have

stopped working

 

thinking about the last thing i did was mod to seo urls,

i changed the categories.php from this:

 

$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

 

to this:

 

 // Ultimate SEO URLs v2.2d
// If the action will affect the cache entries
  if ( preg_match("/(insert|update|setflag)/i", $action) ) include_once('includes/reset_seo_cache.php');

 

 

does anyone see anything wrong with this??

 

 

craig

Link to comment
Share on other sites

Read the directions again.

 

That can't be what they want you to do.

:blush:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Hi, your error was that you replaced the code whereas you were to plae it AFTER so that it would look like this:

************************************************************************************

$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

 

// Ultimate SEO URLs v2.2d

// If the action will affect the cache entries

if ( preg_match("/(insert|update|setflag)/i", $action) ) include_once('includes/reset_seo_cache.php');

***************************************************************************************

 

In essence you edited out the actions!

 

Barbara

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...