All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Author Topic: 404 error  (Read 3133 times)

0 Members and 1 Guest are viewing this topic.

Offline ajanini

  • Newbie
  • *
  • Posts: 6
    • View Profile
404 error
« on: 18 August 2009, 11:20 »
   1.  WordPress Version: 2.8.4
   2. Theme Name: Rufai (custom theme)
   3. Blog URL: http://www.asterisko.com.br/
   4. Problem Plugin Name And Version: WP-UserOnline 2.50
   5. PHP Version: 5.2.10
   6. MYSQL Version: 4.1.22-standard

Hi Lester,

I am getting a 404 error quite often (checking my server stats, over 9k last month, and 12k this month!). The error refers to http://www.asterisko.com.br/wp-content/plugins/wp-useronline/wp-useronline.php, but I know that file is there.

So, looking into it further I found that on my UserOnline page (http://www.asterisko.com.br/estatisticas/useronline/) quite often there's a Guest ("Convidado") online and he seems to be at the 404 page. The page he seems to be viewing is always something like below:

http://www.asterisko.com.br/wp-content/plugins/wp-useronline/wp-useronline.php?_=1250594106459&useronline_mode=useronline_count

or

http://www.asterisko.com.br/wp-content/plugins/wp-useronline/wp-useronline.php?_=1250593506631&useronline_mode=useronline_browsingpage

The number seems to be random, and the parameters beeing passed look like they could mean something to the plugin, but I'm not sure. Anyway, I couldn't find anywhere else on my site where the above URLs could have been generated, except on the UserOnline page showing the Guest is visiting the 404 page.

The referrer matches the referrer in my CPanel's 404 log, and it seems to be from http://www.asterisko.com.br/vista-speedy-e-mtu/ this month. Last month, it was from the home page.

Could this be some sort of attack, or exploit attempt? Is there anything I can do to fix it?

I'd really appreciate some help here! Thanks!

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: 404 error
« Reply #1 on: 18 August 2009, 11:35 »
That is the AJAX request to update the useronline count. Check your permission for /wp-content/ Ensure that folders are chmod to 755 and files are 644. http://www.asterisko.com.br/wp-content/plugins/wp-useronline/wp-useronline.php?_=1250593506631&useronline_mode=useronline_browsingpage should return a blank page.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline ajanini

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: 404 error
« Reply #2 on: 18 August 2009, 11:46 »
I double checked file permissions and they are as you said, 755 for folders and 644 for files.
Still getting 404 when trying to access http://www.asterisko.com.br/wp-content/plugins/wp-useronline/wp-useronline.php?_=1250595906506&useronline_mode=useronline_count

Any more ideas?

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: 404 error
« Reply #3 on: 18 August 2009, 13:24 »
I am sure it is your permission issue based on my experience and from the posts in the forum. Double and triple check every folders and files in /wp-content/

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline ajanini

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: 404 error
« Reply #4 on: 18 August 2009, 20:20 »
Yeah, that's not it... All files are 644 (or higher) and all folders, 755 (or higher).
Could it be anything else?

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: 404 error
« Reply #5 on: 19 August 2009, 05:45 »
You got some extra .htaccess blocking the AJAX request somewhere in your folders? I can't think of anything else already.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline ajanini

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: 404 error
« Reply #6 on: 19 August 2009, 13:27 »
Here's my .htaccess (attached - I saved it as .txt). I don't know a lot about it, but I don't think that's the problem. It's in the root folder where WP is installed.

[attachment deleted by admin]

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: 404 error
« Reply #7 on: 19 August 2009, 13:56 »
wow lots of stuff, it maybe the problem, try creating a new .htaccess and just put in:
Code: [Select]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline ajanini

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: 404 error
« Reply #8 on: 19 August 2009, 19:34 »
Well, I give up. That did not work either... Still getting 404 error.  :-\