[RC1] Geocator's Feedback Ratings MOD (eBay Style)

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment! No new topics are allowed in this forum.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: MOD Development Forum rules

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.

Postby Garfield312 » Fri Sep 15, 2006 8:16 am

Sorry, but that seems to be a quite difficult project for a beginner in modding phpBB forums :D

But that classified ads mod is nice - I think, I will try it out, but not next time.
Garfield312
Registered User
 
Posts: 11
Joined: Mon Oct 31, 2005 1:13 pm

Postby samureye » Fri Sep 15, 2006 2:38 pm

AH well, it would be nice though!
samureye
Registered User
 
Posts: 48
Joined: Sun Sep 10, 2006 6:27 pm

Postby PT-NGS- » Sun Sep 17, 2006 3:26 am

hi..

Reiji Kurosaky wrote:Hello,

I´ve installed this mod and it shows this:

Forum wrote:Script or Action Blocked

The requested URL /forums/feedback.php?mode=modcp contains a script or action that has has been deteremined unsafe. It has been disabled to prevent abuse.

This server protected by: SecurePHPx
Apache/1.3.34 Server at www.mydomain.com Port 80


What can I do to solve it?

Also in the install instructions, it says to OPEN memberlist_body.php and the real file is called memberlist.php


here it is a great problem!
visite-> www.google.com/(...)
This has solution?
pleass..
PT-NGS-
Registered User
 
Posts: 10
Joined: Sun Jun 12, 2005 1:12 pm

Postby PT-NGS- » Mon Sep 18, 2006 1:40 pm

Please.. help

tanks...
PT-NGS-
Registered User
 
Posts: 10
Joined: Sun Jun 12, 2005 1:12 pm

Postby PT-NGS- » Thu Sep 21, 2006 8:02 am

somebody pless?....
PT-NGS-
Registered User
 
Posts: 10
Joined: Sun Jun 12, 2005 1:12 pm

Postby Hire » Wed Sep 27, 2006 8:38 pm

Hello guys,
I have an inquiry. Can thread starters conclude a negotiation and also give themselves feedback(s) with the default script? I don't like that, how can I edit the script so that thread starters can't give themselves any feedback?

Thank you
Hire
Registered User
 
Posts: 7
Joined: Wed Sep 20, 2006 9:19 pm

Postby Hire » Thu Sep 28, 2006 7:12 pm

Up for my request :(
Hire
Registered User
 
Posts: 7
Joined: Wed Sep 20, 2006 9:19 pm

Postby jvini » Fri Sep 29, 2006 1:42 am

Hire wrote:Hello guys,
I have an inquiry. Can thread starters conclude a negotiation and also give themselves feedback(s) with the default script? I don't like that, how can I edit the script so that thread starters can't give themselves any feedback?

Thank you

I did a re-write of some of the script but the easiest fix is this:
Code: Select all
#-----[ OPEN ]---------------------------------------------------
#
    feedback_post.php

#
#-----[ FIND ]---------------------------------------------------
#
   {
            $trans_type = SELLER;
         }
         else
         {
            $trans_type = BUYER;
         }
         if($transaction_data['seller_id'] == $userdata['user_id'])
         {
            $other_id = $transaction_data['buyer_id'];
         }
         else
         {
            $other_id = $transaction_data['seller_id'];
         }
         $other_data = get_userdata($other_id);

#
#-----[ AFTER, ADD ]--------------------------------------------
#

if($transaction_data['seller_id'] == $transaction_data['buyer_id'])
         {
            message_die(GENERAL_ERROR, 'You cannot leave feedback for yourself.');
         }

They will still be able to finalize but won't be able to insert feedback for themselves.


PT-NGS-, I don't understand your problem..if you can clarify I can try to help.
User avatar
jvini
Registered User
 
Posts: 300
Joined: Tue Sep 24, 2002 11:20 pm

Postby PT-NGS- » Sat Sep 30, 2006 9:35 am

hi..

im used phpbb2 plus..
PT-NGS-
Registered User
 
Posts: 10
Joined: Sun Jun 12, 2005 1:12 pm

Postby jvini » Sat Sep 30, 2006 9:15 pm

PT-NGS- wrote:hi..

im used phpbb2 plus..

That's not a question or a problem...again, if you tell me what the problem is, I can try to help.
User avatar
jvini
Registered User
 
Posts: 300
Joined: Tue Sep 24, 2002 11:20 pm

Postby PT-NGS- » Sat Sep 30, 2006 10:19 pm

hi..

jvini, I have installed this mod, but when I see the feedback it appears a page whit the following:
Script or Action Blocked

The requested URL /forums/feedback.php?mode=modcp contains a script or action that has has been deteremined unsafe. It has been disabled to prevent abuse.

This server protected by: SecurePHPx
Apache/1.3.34 Server at www.mydomain.com Port 80



I do not know why this appears, I said that I was use phpbb2 plus, because it has many mods, and one of them that it can cause this is the Cback.
PT-NGS-
Registered User
 
Posts: 10
Joined: Sun Jun 12, 2005 1:12 pm

Postby jvini » Sat Sep 30, 2006 11:34 pm

Well that is a server specific problem - I am not familar with "SecurePHPx" but you should contact the tech support for your server and ask them to disable that script. Or you can just not use the mod_cp for this mod.
User avatar
jvini
Registered User
 
Posts: 300
Joined: Tue Sep 24, 2002 11:20 pm

Postby maxxo » Sun Oct 08, 2006 9:46 am

Hi,
I am german, but I try to write in english.
there is a problem: Every auction can be closed earlier as it is allowed.
So the auction would be canceled by the topicstartet. But thats not allowed.

How can I resolve the problem?

I suggest, that the poster fill in the starttime and the end by opening the thread and the script allows a close of the thread only if the time is over.

Is it understandable ?
maxxo
Registered User
 
Posts: 8
Joined: Thu Sep 14, 2006 9:31 am

Postby maxxo » Wed Oct 11, 2006 3:49 pm

Is anybody out there?
maxxo
Registered User
 
Posts: 8
Joined: Thu Sep 14, 2006 9:31 am

Postby jvini » Wed Oct 11, 2006 4:22 pm

maxxo wrote:Hi,
I am german, but I try to write in english.
there is a problem: Every auction can be closed earlier as it is allowed.
So the auction would be canceled by the topicstartet. But thats not allowed.

How can I resolve the problem?

I suggest, that the poster fill in the starttime and the end by opening the thread and the script allows a close of the thread only if the time is over.

Is it understandable ?

Well this is not really an auction script, more for classifieds/listings. An auction script would function differently and would need many more functions.

Any topic can be closed at any time, but neither party would give each other feedback for a deal that did not happen.
User avatar
jvini
Registered User
 
Posts: 300
Joined: Tue Sep 24, 2002 11:20 pm

PreviousNext

Return to [2.0.x] MODs in Development

Who is online

Users browsing this forum: BloodAngel and 4 guests