Viewing 9 replies - 1 through 9 (of 9 total)
  • I have the same issue and was wondering if there is a resolution for this.
    Thanks.

    That looks like a script that is only used by Gold Cart if your WP-eCommerce version is before 3.8?

    if ( ( get_option( 'show_search' ) == 1 ) && ( get_option( 'show_live_search' ) == 1 ) ) {
    		if ( (float)WPSC_VERSION < 3.8 ) {
    			$siteurl = get_option( 'siteurl' );
    			if ( is_ssl() ) {
    				$siteurl = str_replace("https://", "https://", $siteurl);
    			}
    			$deps[] = 'wpsc-iautocompleter';
    			wp_enqueue_script( 'wpsc-iautocompleter', "{$site_url}/wp-content/plugins/" . WPSC_DIR_NAME . '/js/iautocompleter.js', array( 'jquery' ) );
    		}
    	}

    If you are using a version that old you might want to consider upgrading?

    Looking at the code you could also make the error go away if you turn off live search or show search in the settings.

    Try replacing

    if ( (float)WPSC_VERSION < 3.8 ) {

    with

    if ( version_compare( get_option ( 'wpsc_version' ), 3.8, '<' ) ) {

    Thread Starter doinastanciu

    (@doinastanciu)

    What file do I find this script in? Also, I would like to upgrade my Gold Cart, but I get so frustrated every time I try because it says I have to log in and when I try it says my log in is incorrect. Any suggestions on upgrading? I’d rather do that.

    Thread Starter doinastanciu

    (@doinastanciu)

    My gold cart is version 2.9.7.8 and Wp e-commerce version is 3.11.2 Do I need to keep both?

    If you apply the change that @mihai suggested the code to load the script will not be inserted and your 404 will go away.

    Thread Starter doinastanciu

    (@doinastanciu)

    Okay, I will apply the change that @mihai suggested. Where do I find that script, in which file? I am not a programmer and have limited knowledge, so please explain it to me as if I’m 7 years old.

    @doinastanciu you need to edit the main gold-cart file. Open up your hosting using FTP where you WordPress installation files are and then go in wp-content\plugins\gold-cart and then edit gold-cart.php.

    P.S.: un mail la [email protected] cu datele FTP si linkul catre site si te pot ajuta.

    Thread Starter doinastanciu

    (@doinastanciu)

    @mihai multam

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘404 error’ is closed to new replies.