Search found 29 matches
- Sat Jan 16, 2016 1:51 am
- Forum: PHP
- Topic: Bug with PHP 7
- Replies: 5
- Views: 5672
Re: Bug with PHP 7
Might have needed a service restart
- Sat Jan 16, 2016 12:39 am
- Forum: PHP
- Topic: Bug with PHP 7
- Replies: 5
- Views: 5672
Re: Bug with PHP 7
99.9% of the time it is user-error. Post your code
- Tue Jul 14, 2015 8:44 pm
- Forum: General Chat
- Topic: Questions and things regarding rebooting the activity here.
- Replies: 22
- Views: 21676
Re: Questions and things regarding rebooting the activity he
From my experience with the Town of Salem forums, the best security questions for prevent automatic bots are questions that ask to spell something backwards, ie
Spell 'backwards' backwards: sdrawkcab
- Sat Jul 11, 2015 10:35 pm
- Forum: General Chat
- Topic: Questions and things regarding rebooting the activity here.
- Replies: 22
- Views: 21676
Re: Questions and things regarding rebooting the activity he
Might be hard, But have an initial design and each User can dynamically design their own vision of how betterPHP Should appear.
- Mon Jul 06, 2015 11:42 pm
- Forum: General Chat
- Topic: Minecraft!
- Replies: 29
- Views: 17863
Re: Minecraft!
My brother is running a server rack in his house. He has been looking for uses for it that will actually be used besides the fileserver that it currently is being used as. If you would like, I can ask him more about it for you? Or is server space something that you would rather have local for testin...
- Fri Jul 03, 2015 2:38 am
- Forum: General Chat
- Topic: Minecraft!
- Replies: 29
- Views: 17863
Re: Minecraft!
Eh. It might be something I would come back to if I found the time. lol.
- Wed Jul 01, 2015 3:56 pm
- Forum: General Chat
- Topic: Questions and things regarding rebooting the activity here.
- Replies: 22
- Views: 21676
Re: Questions and things regarding rebooting the activity he
I had the same dilemma and went for the "mark as read" option. It is worth replying to them since people find the posts from searches. There are far too many posts to go through though so I decided to focus on the recent/new ones for now and maybe go back a few pages and reply to some int...
- Wed Jul 01, 2015 3:52 pm
- Forum: General Chat
- Topic: New forum software?
- Replies: 19
- Views: 20310
Re: New forum software?
As long as it doesn't look anything close to how PHPAcademy changed to their new discussion "forum". That was awful IMO. On the other hand, this is an older version of phpBB. The newer version I have found I have not run into any problem customizing anything. Anything you could possibly ne...
- Wed Jul 01, 2015 3:48 pm
- Forum: General Chat
- Topic: jacek
- Replies: 20
- Views: 17999
Re: jacek
Yeah it's definitely weird in some ways. Jelvin, your name rings a bell so I must remember you from them ages ago. I stopped using PHP Academy after he went through his website change (which I horribly disliked enough to just stop using it). Moved here when wide_load had advertised on PHPAcademy he ...
- Mon Jan 14, 2013 3:20 am
- Forum: Tutorials
- Topic: Blog(including commenting) issue
- Replies: 7
- Views: 1838
Re: Blog(including commenting) issue
Also make sure you get into the habit of putting spaces between evaluators (===, ||, &&, etc) - otherwise you could run into errors some time in the future and not be able to find the error because you are so used to not putting spaces. Just a note from personal experience, since I used to d...
- Mon Jan 14, 2013 3:17 am
- Forum: PHP
- Topic: cannot edit profile
- Replies: 89
- Views: 15261
Re: cannot edit profile
Basic debugging. Start at the bottom and work your way to the top (looking for expected results). Along the way of echo'ing values and checking if values are set you will run across your error where the actual result is not what is expected. Once you get this debugging concept down, you will never h...
- Sun Jan 13, 2013 2:29 pm
- Forum: Tutorials
- Topic: Blog(including commenting) issue
- Replies: 7
- Views: 1838
Re: Blog(including commenting) issue
Right, if you fetches every return a resource, 90% of the time its a query problem which you can find the error using mysql_error().
- Sun Jan 13, 2013 2:28 pm
- Forum: PHP
- Topic: cannot edit profile
- Replies: 89
- Views: 15261
Re: cannot edit profile
Copy and paste your code as you have it now.
- Sun Jan 13, 2013 12:17 am
- Forum: PHP
- Topic: cannot edit profile
- Replies: 89
- Views: 15261
Re: cannot edit profile
So then change all your queries so that the column is lowercase. You have queries that use "Username".
- Sat Jan 12, 2013 11:50 pm
- Forum: PHP
- Topic: cannot edit profile
- Replies: 89
- Views: 15261
Re: cannot edit profile
In some of your queries you use "Username" to select the column, in others you use "username". Which one is it? It's case-sensitive.
- Sat Jan 12, 2013 11:47 pm
- Forum: Tutorials
- Topic: Blog(including commenting) issue
- Replies: 7
- Views: 1838
Re: Blog(including commenting) issue
Look closely at how you set the $sql variable.
- Sat Jan 12, 2013 7:32 pm
- Forum: Tutorials
- Topic: Login/Register doesn't work
- Replies: 7
- Views: 2175
Re: Login/Register doesn't work
Do! Register works now :) Thanks for the quick reply! any clue what the second problem causes? now I can create another user but when I logout, it wont recognize the username/password anymore.. go through the steps starting from the bottom and make sure all the values are as you expect. Of course, ...
- Sat Jan 12, 2013 7:13 pm
- Forum: Tutorials
- Topic: Login/Register doesn't work
- Replies: 7
- Views: 2175
Re: Login/Register doesn't work
The problem is in your init. You never finished spelling out "register" in the exceptions.
EDIT: or you have one too many characters.
EDIT: or you have one too many characters.
- Sat Jan 12, 2013 7:07 pm
- Forum: Tutorials
- Topic: Login/Register doesn't work
- Replies: 7
- Views: 2175
Re: Login/Register doesn't work
What happens when you manually go to register.php from the URL
- Sat Jan 12, 2013 7:02 pm
- Forum: General Chat
- Topic: And a happy new year!
- Replies: 4
- Views: 2494
Re: And a happy new year!
Most people are like "Oh gosh, i need to follow my New Year's Resolution!".
I'm like "Alright Me, remember its one-three now, not one-two".
I'm like "Alright Me, remember its one-three now, not one-two".
- Sat Jan 12, 2013 6:59 pm
- Forum: PHP
- Topic: cannot edit profile
- Replies: 89
- Views: 15261
Re: cannot edit profile
Frustrating, ain't itExtremeGaming wrote:Did you even try what I said?