• I’ve used jQuery.post in several jQuery scripts now, and it all works fine. But after upgrading to WordPress 3.0, it stoped working.

    I’m working on a plugin where I hve the following jQuery code:

    //Delete event and remove from UI
    jQuery("#eventList .cancelEvent").live('click', function() {
      jQuery.post("/wp-content/plugins/wp-eventcal/myfile.php", { instance: 'cancelEvent' },
      function(data)
      {
        alert('test');  // Never fires because 404 File Not Found
      });
    });

    Firebug reports a ‘404 File not found’ error. This is the link:
    https://mysite.com/wp-content/plugins/wp-myplugin/myfile.php

    If I copy the link and paste it into my browser, the page opens just fine. No ‘404 File not found’ error.

    Looking at my Apache error log, I see the following error:

    Cannot map GET
    /wp-content/plugins/I:/Development/wamp/www/norwegianfashion/wp-content/themes/norwegianfashion/images/icon.png HTTP/1.1 to file,
    referer: https://norwegianfashion.com/wp-admin/admin.php?page=wp-eventcal/eventcal-manager.php

    This is my Apache config:

    NameVirtualHost localhost
    
    <VirtualHost localhost>
        ServerName localhost
        DocumentRoot "I:/Development/wamp/www/"
    </VirtualHost>
    
    <VirtualHost localhost>
        ServerName mysite.com
        DocumentRoot I:\Development\wamp\www\mysite
    </VirtualHost>

    Could this have something to do with my Rewrite rule in my .htaccess file?

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
Viewing 1 replies (of 1 total)
  • Thread Starter Steven

    (@spstieng)

    Ok, I have narrowed it down to this.

    I only get the problem when I turn on custom Permalink using /%category%/%postname%.

    If I use default permalink, all works fine.

    I’ve made sure to have the following in my Apache config file:

    LoadModule rewrite_module modules/mod_rewrite.so
    
    <Directory />
        Options FollowSymLinks
        AllowOverride All
    </Directory>

    So again, could it be my .htaccess file?

Viewing 1 replies (of 1 total)
  • The topic ‘Problems after upgrade – Cannot map GET’ is closed to new replies.