Life In 19x19
http://lifein19x19.com/

PHP help wanted
http://lifein19x19.com/viewtopic.php?f=9&t=8873
Page 1 of 1

Author:  Joaz Banbeck [ Tue Aug 06, 2013 7:29 pm ]
Post subject:  PHP help wanted

3/22/2019: Please ignore this post.

[admin]

We may need some programming help. Starting salary will be the same as an admin.

Please PM me.

[/admin]

Author:  SpongeBob [ Wed Aug 07, 2013 7:21 am ]
Post subject:  Re: PHP help wanted

PHP programming needs far more education than admin tasks. In order to attract those rare talents, I think you should make that:

"Starting salary will be twice an admin's salary."

Author:  Bantari [ Fri Aug 09, 2013 2:15 pm ]
Post subject:  Re: PHP help wanted

SpongeBob wrote:
PHP programming needs far more education than admin tasks. In order to attract those rare talents, I think you should make that:

"Starting salary will be twice an admin's salary."


I think it depends what the admin salary is. If the money is good enough... you'll attract people.
So... how much are we talking about here? Or is it a secret?

Author:  ez4u [ Fri Aug 09, 2013 4:27 pm ]
Post subject:  Re: PHP help wanted

Bantari wrote:
SpongeBob wrote:
PHP programming needs far more education than admin tasks. In order to attract those rare talents, I think you should make that:

"Starting salary will be twice an admin's salary."


I think it depends what the admin salary is. If the money is good enough... you'll attract people.
So... how much are we talking about here? Or is it a secret?

Well, looking at L19's revenue model I doubt 1X or 2X matters... :D

Author:  Bonobo [ Fri Aug 09, 2013 4:32 pm ]
Post subject:  Re: PHP help wanted

ez4u wrote:
Bantari wrote:
[..]

Well, looking at L19's revenue model I doubt 1X or 2X matters... :D
Mh… methinks there IS a difference between one beer and two beers.

Author:  schultz [ Fri Aug 09, 2013 4:35 pm ]
Post subject:  Re: PHP help wanted

Bonobo wrote:
ez4u wrote:
Bantari wrote:
[..]

Well, looking at L19's revenue model I doubt 1X or 2X matters... :D
Mh… methinks there IS a difference between one beer and two beers.

I...I can't tell if this is going over people's heads or everyone is just in on the joke... Do I speak up and try to help? Or am I just making a fool of myself?!

<insert math joke about multiplying by a certain number where the final output doesn't change>

Author:  Bonobo [ Fri Aug 09, 2013 4:40 pm ]
Post subject:  Re: PHP help wanted

schultz wrote:
[..]

<insert math joke about multiplying by a certain number where the final output doesn't change>
Heh :-D I’d also at first thought about that joke but then thought I’d faintly remember some donation request and poll about how to use the donations, and I (just as faintly) remembered that there was some talk about a beer and a pizza or something for the admin ;-)

<edit>

I mean, IF it was that certain number then JB could have offered triple the amount, no?

</edit>

Author:  Joaz Banbeck [ Fri Aug 09, 2013 8:37 pm ]
Post subject:  Re: PHP help wanted

It is only double. We're saving the third beer as a performance bonus, to be awarded if the programmer actually fixes the 'connection timed out' bug.

Author:  xed_over [ Sat Aug 10, 2013 6:45 am ]
Post subject:  Re: PHP help wanted

Joaz Banbeck wrote:
It is only double. We're saving the third beer as a performance bonus, to be awarded if the programmer actually fixes the 'connection timed out' bug.

but is this a php bug? or a sql db bug? (or some combination).

personally, I suspect the database.

Author:  schultz [ Mon Aug 19, 2013 10:12 pm ]
Post subject:  Re: PHP help wanted

xed_over wrote:
Joaz Banbeck wrote:
It is only double. We're saving the third beer as a performance bonus, to be awarded if the programmer actually fixes the 'connection timed out' bug.

but is this a php bug? or a sql db bug? (or some combination).

personally, I suspect the database.

That's always been my suspicion, too. That and/or some combination with the datacenter and how they admin the db server(s).

Author:  oiseaux [ Sun Oct 06, 2013 11:57 am ]
Post subject:  Re: PHP help wanted

As said, if you're getting a 552 error, there could be many possible reasons as the server is rejecting the connection mid-request. Anything from a DB issue, PHP, http server or even a cron job could be an issue - so I would recommend perhaps changing your request to a LAMP developer (assuming that linux, apache, php and mysql are indeed the technologies being used here), in order to find your successful candidate more easily. Good luck!

Author:  macelee [ Sun Oct 06, 2013 12:27 pm ]
Post subject:  Re: PHP help wanted

I am no expert in this area. But has the admin checked the log files? There must be some clues in the log files.

Author:  goTony [ Mon Feb 03, 2014 1:19 pm ]
Post subject:  Re: PHP help wanted

Joaz Banbeck wrote:
It is only double. We're saving the third beer as a performance bonus, to be awarded if the programmer actually fixes the 'connection timed out' bug.


A performance bonus an excellent motivator!

Author:  angliknight4 [ Wed Apr 22, 2015 4:28 am ]
Post subject:  Re: PHP help wanted

I have experience in coding PHP, but I can't commit because I'm currently under contract.

If theres anything I could help (coding questions), don't hesitate to ask me. :study:

Author:  virre [ Tue May 26, 2015 6:19 am ]
Post subject:  Re: PHP help wanted

If style in need hit me up. I of course also work, but can help a bit in the weekend.

The 552 relates to server setup mostly. Might also be a bit of a phpBB clunkiness issues.

Author:  Babelardus [ Sat Jun 18, 2016 8:35 am ]
Post subject:  Re: PHP help wanted

What version of phpBB is this?
What version of PHP and MySQL are you running on?

I have noticed some Wordpress installations getting flacky since PHP 7. The reason is that PHP has been a mess regarding database connection types; mysql, msyqli, mysql_pdo, mysql_nd. It's confusing. (I think mysql_nd is actually a driver, not a connection type). They have been deprecating and (re)introducing new extensions and drivers. "mysql" has been dropped as an extension in PHP7.

Wordpress supports all of the extensions, and many PHP versions. What is now happening, is that Wordpress tries to connect to the database, and if it can't because the extension is not loaded, it moves on to the next one. First, this makes Wordpress VERY slow if it doesn't connect on the first try as you have to wait for the timeout before it tries again. Second, on some servers, connecting again and again is not allowed, and then timeout errors will occur.

Maybe your installation of phpBB is facing a similar issue; trying to connect multiple times, using different database extensions, with the server at some point just dropping the requests to protect itself from DDoS.

If this is the case, the solution would be to take a look into phpBB's database connection code, and enable the extension it uses first, so it connects the first time it tries. If the PHP version you are running doesn't have this connection ("mysql" on PHP7 for example), you'd either need to upgrade phpBB to use newer connections, or downgrade PHP to provide the old connections.

It has been a very long time that I ran a forum using phpBB. The photography forum http://www.digireflex.nl ran on phpBB from 2004 to 2008, after which I moved it to SMF. After I quit as the maintainer/admin of that forum (I wasn't the owner) in 2012 due to time constraints, it just fell behind and died. It was taken offline in 2015.

I don't want to get into forum maintenance or adminning again, but I may be able to offer some suggestions on where to look in case of problems.

edit: note that the PDO extension is the most powerful. It can handle 12 different databases, where MySQLi can only handle MySQL. It also has a few technical advantages. If your phpBB version supports PDO_MySQL, or can be upgraded to a version that supports it, then this would be the recommended way to go. If you are already using MySQLi or even PDO_MySQL, and are still getting timeout errors, you may indeed need to check the database server setup for things like really short timeout settings and such.

Author:  Stefany93 [ Sun Jan 15, 2017 5:07 pm ]
Post subject:  Re: PHP help wanted

Babelardus wrote:
I have noticed some Wordpress installations getting flacky since PHP 7.


WP installations have been flaky since the dawn of time...

Page 1 of 1 All times are UTC - 8 hours [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/