*

Recent

Author Topic: Update  (Read 7084 times)

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Update
« on: May 02, 2009, 03:31:07 PM »
I had some people notice that I had left some things undone in the 1.2 release. I was not planning on polishing them off till the next release, but because there was some that wanted it, I went ahead and finished them off, and fixed a bug nobody, including myself, had caught. The files affected were

1) /.htaccess
2) /pages/memberslist.php
3) /pages/admin/managemembers.php
4) /pages/admin/newsletter.php

I have updated the zip file and uploaded it to the server for downloading. These are the only 4 files that need to be replaced, and they are not critical fixes, just some polish on the new features as asked for, and a minor bug fix.

Sorry I did not do it previously, but if you've ever had a migrane, you will understand.

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #1 on: May 03, 2009, 10:50:20 PM »
There is a bug in the install.php file. The download link is back to pointing to the version 1.1 zip file till I fix it. Sorry about this.

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #2 on: May 04, 2009, 12:22:23 AM »
OK, the bug is gone and I tested it out. Download link points to the install zip again.

Sorry about this folks, I dropped the ball on it. It's my fault, and I do appologize. This goes to show you how much we do need your help in beta testing though.

Lets try it again though. If you find another bug, let me know.

Thanks, and sorry again.

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #3 on: May 04, 2009, 03:17:25 PM »
OK, another bug in the install.php file. It should be fixed. Srry bout this peeps.

kpranjan1

  • Newbie
  • *
  • Posts: 7
  • Force: +0/-0
Re: Installation Problem
« Reply #4 on: May 10, 2009, 02:03:14 PM »
Hi , today i just seen this project . it looked very fine  , but when i install it , its only homepage is coming . not a single link is working . so i am soo upset , Can you please tell me where is fault actually ? what to do with .htaccess file .

Error is coming -----

Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.

If you think this is a server error, please contact the webmaster.

Error 404
localhost
05/11/09 00:32:15
Apache/2.2.9 (Win32) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8h mod_autoindex_color PHP/5.2.6


Thanks


kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #5 on: May 10, 2009, 02:29:15 PM »
What is the URL of your site so we can take a look at it?

.htaccess file is supposed to be placed in public_html folder. Is that where it is?

If the script is installed on a subfolder rather than the public_html folder, the .htaccess file needs to be edited acordingly.

Without knowing more details I can't tell you exactly what is the matter. Post a link to your site so we can see what's going on.

kpranjan1

  • Newbie
  • *
  • Posts: 7
  • Force: +0/-0
Re: Update
« Reply #6 on: May 10, 2009, 02:39:02 PM »
Thanks for your Reply

No actually i am trying it to my local system . i have installed apache friends that comes with apache,mysql,and php .. and my directory is like this

http://localhost/xampp/arcade

Thanks and Regards

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #7 on: May 10, 2009, 03:08:33 PM »
If it is installed on the subdirectory /xampp/arcade under the root of the webserver files folder so that it is indeed accessed by the link http://localhost/xampp/arcade then you will need to edit the .htaccess file by adding /xampp/arcade to the front of the rewrites like this

Code: [Select]

RewriteEngine On
RewriteRule ^([^/]*)\/$ /xampp/arcade/index.php?action=$1 [L]
RewriteRule ^showprofile/([^/]*)\.html$ /xampp/arcade/index.php?action=showprofile&profile=$1 [L]
RewriteRule ^([^/]*)/([^/]*)\/$ /xampp/arcade/index.php?action=$1&cmd=$2 [L]
RewriteRule ^browse/([^/]*)-([^/]*)\.html$ /xampp/arcade/index.php?action=browse&ID=$1&name=$2 [L]
RewriteRule ^newest/page([^/]*)\.html$ /xampp/arcade/index.php?action=newest&page=$2 [L]
RewriteRule ^showcomments/([^/]*)/([^/]*)/([^/]*)\.html$ /xampp/arcade/index.php?action=showcomments&name=$1&ID=$2&page=$3 [L]
RewriteRule ^mostplayed/page([^/]*)\.html$ /xampp/arcade/index.php?action=newest&page=$2 [L]
RewriteRule ^browse/([^-]*)-([^-]*)/page([^-]*)\.html$ /xampp/arcade/index.php?action=browse&ID=$1&name=$2&page=$3 [L]
RewriteRule ^play/([^/]*)-([^/]*)\.html$ /xampp/arcade/index.php?action=play&ID=$1&name=$2 [L]



If it is accessed by http://localhost/arcade then substitute /arcade.

Assuming that you have it configured to rewrite URLs, that should do it. Let me know as now I'm curious. Been a few years since I used Apache installed on something other than Linux.

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #8 on: May 10, 2009, 03:12:07 PM »
Almost forgot, in such cases the .htaccess file is not uploaded to the root of the webserver, but to the root of the arcade installation. Simply meaning that it stays in the arcade script folder.

kpranjan1

  • Newbie
  • *
  • Posts: 7
  • Force: +0/-0
Re: Update
« Reply #9 on: May 10, 2009, 03:17:22 PM »
Thanks a lot for your reply and such a good work . 

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Update
« Reply #10 on: May 10, 2009, 03:19:55 PM »
Is ok. Just rememer to let us know how it goes either way. We like loads of feedback, good or bad.