-
Posts
443 -
Joined
-
Last visited
-
Days Won
20
Content Type
Profiles
Forums
Events
Everything posted by AdamHull
-
I personally don't, but what issues are you facing and which ones are you trying?
-
What the code on line 64 of ipn listener
-
This doesn't need any extra sql, it should run of the base mccodes with out the need to change anything in the database
-
What would happen if a mod needs to adjust a file? Can this be done through here? Sorry just re read the description
-
If your looking for a free domain why not try: https://www.freenom.com/en/index.html?lang=en This will give you a free domain of what you prefer and will be easier then asking people to donate one, yes it does not look professional. But if you are using this to just start out this will be easier. I remember when I started out I used CO.CC many years ago 🙂
-
What API are you using? I've been looking into the bitpay API
-
Any context to this?
-
How do you hash currently? I would never revert back to md5 as this is insecure
-
Could it be due to changes in your file system permission it this issue has happened since changing hosting
-
If you are doing if statements for comparisons you should be using at least == operator if($row['type'] = 'enemy') That is your is statements which is setting the variables to enemy as you are only using single =
-
My advice would be contact the person who originally made it
-
Your database seems to be missing tables Table 'crystal3_uots4524.orders' doesn't exist You may also want to secure that section of your website.
-
Where is the form submitting to for paypal?
-
Is your cert upto date, if your using one
-
Isset check to see if a array is set (anything in it) its the same as using !empty($_POST['gender'])
-
what did you try? add the code and we will be able to help you better
-
You will need to create a database before hand. I suggest having a look at some YouTube tutorials on how to upload and create a database using cpanel
-
It's not, he could either be using a shimm or he could be running a old version of php
-
Your query is malformed "SELECT * FROM `marketaddlogs` AS `mal` JOIN `marketremovelogs` AS `mrl` ON `mal`.`UID` = `mrl`.`UID` WHERE `mal`.`CAT` = 'item' ORDER BY `mal.TIME` DESC LIMIT $st, $app" You on have to use mrl.name You do not need to put mrl infront after the.
-
The database handler between the 2 engines are different. This will be your error
- 16 replies
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
A single file arcade with 7 games pre-loaded
AdamHull replied to MDK666's topic in Free Modifications
Adobe Flash has not been supported by Adobe since 31st December 2020, and you are unable to use these games in browser since around then. If you were to want a arcade for you website you would need to update to Html 5 games -
Check your apache2 or nginx error logs this will tell you why you have a white page
-
No its for grpg v2, would need converting
- 16 replies
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
If they are seperate operations and not reliant on each other, i prefer to make them seperate querys. Makes it easy for other devs and easier for debugging
-
At the beginning of your code add var_dump($_POST); Then share what it show