Raised This Month: $51 Target: $400
 12% 

Showing results 1 to 25 of 53
Search took 0.00 seconds.
Search: Posts Made By: 8088
Forum: Snippets and Tutorials 06-30-2011, 02:06
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

I'm not sure what you mean by that (if it was directed at me at all).
Forum: Snippets and Tutorials 06-26-2011, 22:20
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

I don't really feel like uploading all kinds of versions for various CMSs since this script was meant to form a standalone page, but you can try to make it work yourself. Have a try by using print...
Forum: Snippets and Tutorials 06-16-2011, 21:55
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Try this one. Solely using cURL this time, so the allow_url_fopen setting won't matter.
Forum: Snippets and Tutorials 06-15-2011, 18:57
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Looks like allow_url_fopen (http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen) is set to false in your PHP configuration.
Forum: Snippets and Tutorials 06-13-2011, 16:33
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

The same file on my server does...

Can you add this at the top of the file (within the php tags)?
ini_set("display_errors","2");
ERROR_REPORTING(E_ALL);
And remove all @ in front of...
Forum: Snippets and Tutorials 06-13-2011, 12:46
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Ok, try this messy piece of code. No BC Math required.
Forum: Snippets and Tutorials 06-12-2011, 23:20
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

That's the culprit, BC Math (http://www.php.net/manual/en/book.bc.php) is required. If I have time tomorrow I'll post a version that works without it.
Forum: Snippets and Tutorials 06-12-2011, 16:48
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

It's still returning a 500. Try this:
<?php
if(function_exists(bcadd)) echo "bcmath is supported<br>";
else echo "bcmath is NOT supported<br>";
if(function_exists(simplexml_load_file)) echo...
Forum: Snippets and Tutorials 06-12-2011, 15:09
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Try the original script without changing anything and see if that works.
Forum: Snippets and Tutorials 05-12-2011, 13:14
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Whoops, silly bug. It should be fixed now: http://steamidconverter.com/STEAM_1:0:16766998
Thanks for pointing it out.

As far as I know there's no fully functional package to download, but there...
Forum: Snippets and Tutorials 05-09-2011, 20:41
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

No, it wouldn't. As a matter of fact it has already been shared before in this topic.
Forum: Snippets and Tutorials 05-07-2011, 06:46
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

http://net.tutsplus.com/tutorials/php/image-resizing-made-easy-with-php/
Forum: Snippets and Tutorials 10-26-2010, 13:23
Replies: 358
Views: 550,455
Posted By 8088
Forum: Snippets and Tutorials 10-26-2010, 11:30
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Found it :)

Replace
}else if ((is_numeric($data)) && (ereg('7656119', $a))){
with
}else if ((is_numeric($data)) && (ereg('7656119', $data))){
and it should work as expected.

I've replaced...
Forum: Snippets and Tutorials 10-25-2010, 21:04
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

You didn't miss anything, I just haven't had the time to post a fix. Will do soon.
Forum: Snippets and Tutorials 10-23-2010, 21:31
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Hm, I must've been sleeping during my previous posts.

Replace$authid with $info['authid']
and add$community_id = '7656'.$community_id; after $community_id = ((substr($info['authid'], 10)) * 2) +...
Forum: Snippets and Tutorials 10-23-2010, 18:08
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Oops, I made a mistake while copy/pasting.

Replace while($info = mysql_fetch_assoc( $data ))
withwhile($info = mysql_fetch_assoc($query))
Forum: Snippets and Tutorials 10-23-2010, 09:58
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Rizla, I suppose you're trying to do something like this://prepare the query
$sql = "SELECT authid FROM sb_admins WHERE srv_group = 'Rizla Server' OR srv_group = 'Lower Server Admins' OR srv_group =...
Forum: Snippets and Tutorials 10-10-2010, 16:21
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Tons. But, like I hinted, it will be a lot easier to narrow it down if you provide relevant information. Like errors (enable error reporting) and a link to your page.
Forum: Snippets and Tutorials 10-09-2010, 13:18
Replies: 358
Views: 550,455
Posted By 8088
Forum: Snippets and Tutorials 10-09-2010, 11:20
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

No URL, no errors...how do you expect to be helped?
Forum: Snippets and Tutorials 04-26-2010, 14:16
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

$community_id = ((substr($steamid, 10)) * 2) + 1197960265728 + (substr($steamid, 8, 1));
$community_id= '7656'.$community_id;
echo '<a...
Forum: Snippets and Tutorials 01-12-2010, 15:58
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

Not from me, I'm not a phpBB user.
Forum: Snippets and Tutorials 12-30-2009, 19:19
Replies: 358
Views: 550,455
Posted By 8088
Re: Convert STEAMID to Steam Community ID

More or less. Here's a quick and dirty with help of DarthNinja's code:
<?php
if ($_GET['s'])
{
$steam_id=strtolower($_GET['s']);
if (substr($steam_id,0,7)=='steam_0') {...
Forum: Snippets and Tutorials 09-26-2009, 19:51
Replies: 358
Views: 550,455
Posted By 8088
Showing results 1 to 25 of 53

 
Forum Jump

All times are GMT -4. The time now is 23:38.


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