This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

[ANY] Super Paypal Donation


Post New Thread Reply   
 
Thread Tools Display Modes
Lief
Junior Member
Join Date: Apr 2018
Location: LA
Old 04-14-2023 , 23:07   Re: [ANY] Super Paypal Donation
Reply With Quote #71

Quote:
Originally Posted by acipisi1991 View Post
Hello, thanks for answer. Why are you posting this to everyone that you need to download everything? How it's possible that Github may make a mistake without downloading the entire file? I was manually creating PHP files it's still didn't work, about 10 people did full download and someone with manually, everyone was getting same error. Finally, we examined prepare_payment.php and there are missing some libaries, we fixed it with adding 3 lines of it and started working, but still a lot of bug like when you cancel the order and return to website, you still "Purchase" a packet and get flags in server.
What did you do exactly to fix it?
Lief is offline
Arkarr
Veteran Member
Join Date: Sep 2012
Location: Just behind my PC screen
Old 04-26-2023 , 06:46   Re: [ANY] Super Paypal Donation
Reply With Quote #72

Still not fixed ? Herm.. My bad. Someone make a PR or you will have to wait. I don't have a computer access for the following weeks.

Edit: nevermind should be working, redownload from github repo.
__________________
Want to check my plugins ?

Last edited by Arkarr; 04-26-2023 at 06:49.
Arkarr is offline
SaulBadman
New Member
Join Date: Jun 2024
Old 06-15-2024 , 05:57   Re: [ANY] Super Paypal Donation
Reply With Quote #73

Has anyone else had the issue where the plugin would just not find the database config name in databases.cfg?
Code:
L 06/15/2024 - 09:28:21: [SM] Exception reported: Could not find database config "super-paypal-donation"
L 06/15/2024 - 09:28:21: [SM] Blaming: super-paypal-donation.smx
L 06/15/2024 - 09:28:21: [SM] Call stack trace:
L 06/15/2024 - 09:28:21: [SM]   [0] SetFailState
L 06/15/2024 - 09:28:21: [SM]   [1] Line 150, C:\Users\Arkarr\Documents\GitHub\SM-Super-Paypal-Donation\sourcemod\scripting\super-paypal-donation.sp::DBConnectionResult
My databases.cfg:
Code:
"Databases"
{
	"driver_default"		"mysql"
	
	// When specifying "host", you may use an IP address, a hostname, or a socket file path
	
	"default"
	{
		"driver"			"default"
		"host"				"localhost"
		"database"			"sourcemod"
		"user"				"root"
		"pass"				""
		//"timeout"			"0"
		//"port"			"0"
	}
	
	"storage-local"
	{
		"driver"			"sqlite"
		"database"			"sourcemod-local"
	}

	"clientprefs"
	{
		"driver"			"sqlite"
		"host"				"localhost"
		"database"			"clientprefs-sqlite"
		"user"				"root"
		"pass"				""
		//"timeout"			"0"
		//"port"			"0"
	}
}
  
	    "tf2stats_redux"
    {
        "driver"            "mysql"
        "host"                "192.168.100.100"
        "database"            "tf2stats_redux"
        "user"                "x"
        "pass"                "x"
        "port"            "3306"
    }
	  
	"super-paypal-donation"
	{
		"driver"			"mysql"
		"host"				"192.168.100.100"
		"database"			"webstore_vip"
		"user"				"x"
		"pass"				"x"
		"timeout"			"0"
		"port"			"3306"
	}
SaulBadman is offline
DNA.styx
Member
Join Date: Dec 2023
Old 06-15-2024 , 14:27   Re: [ANY] Super Paypal Donation
Reply With Quote #74

The last two databases 'tf2stats_redux' & 'super-paypal-donation' are outside of the closing }

Change to
Code:
"Databases"
{
	"driver_default"		"mysql"
	
	// When specifying "host", you may use an IP address, a hostname, or a socket file path
	
	"default"
	{
		"driver"			"default"
		"host"				"localhost"
		"database"			"sourcemod"
		"user"				"root"
		"pass"				""
		//"timeout"			"0"
		//"port"			"0"
	}
	
	"storage-local"
	{
		"driver"			"sqlite"
		"database"			"sourcemod-local"
	}

	"clientprefs"
	{
		"driver"			"sqlite"
		"host"				"localhost"
		"database"			"clientprefs-sqlite"
		"user"				"root"
		"pass"				""
		//"timeout"			"0"
		//"port"			"0"
	}

  
	"tf2stats_redux"
	{
		"driver"            "mysql"
		"host"                "192.168.100.100"
		"database"            "tf2stats_redux"
		"user"                "x"
		"pass"                "x"
		"port"            "3306"
	}
	  
	"super-paypal-donation"
	{
		"driver"			"mysql"
		"host"				"192.168.100.100"
		"database"			"webstore_vip"
		"user"				"x"
		"pass"				"x"
		"timeout"			"0"
		"port"			"3306"
	}

}
__________________
DNA.styx is offline
SaulBadman
New Member
Join Date: Jun 2024
Old 06-16-2024 , 03:56   Re: [ANY] Super Paypal Donation
Reply With Quote #75

Quote:
Originally Posted by DNA.styx View Post
The last two databases 'tf2stats_redux' & 'super-paypal-donation' are outside of the closing }

Change to
Code:
"Databases"
{
	"driver_default"		"mysql"
	
	// When specifying "host", you may use an IP address, a hostname, or a socket file path
	
	"default"
	{
		"driver"			"default"
		"host"				"localhost"
		"database"			"sourcemod"
		"user"				"root"
		"pass"				""
		//"timeout"			"0"
		//"port"			"0"
	}
	
	"storage-local"
	{
		"driver"			"sqlite"
		"database"			"sourcemod-local"
	}

	"clientprefs"
	{
		"driver"			"sqlite"
		"host"				"localhost"
		"database"			"clientprefs-sqlite"
		"user"				"root"
		"pass"				""
		//"timeout"			"0"
		//"port"			"0"
	}

  
	"tf2stats_redux"
	{
		"driver"            "mysql"
		"host"                "192.168.100.100"
		"database"            "tf2stats_redux"
		"user"                "x"
		"pass"                "x"
		"port"            "3306"
	}
	  
	"super-paypal-donation"
	{
		"driver"			"mysql"
		"host"				"192.168.100.100"
		"database"			"webstore_vip"
		"user"				"x"
		"pass"				"x"
		"timeout"			"0"
		"port"			"3306"
	}

}
Thanks a lot, don't know how i overlooked it.
SaulBadman is offline
SaulBadman
New Member
Join Date: Jun 2024
Old Today , 07:51   Re: [ANY] Super Paypal Donation
Reply With Quote #76

Hi again, ive uploaded the website from the archive to my nginx server, but, it seems like steamauth isnt working anymore, when i click the purchase button, it just throws the error: "SteamAuth: Please supply a valid API-Key!" (i have filled the steam api key line in the config file) Perhaps the library is too old?
SaulBadman is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 15:19.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode