Login:
Password:
Navigation
Public Access
-collapse-
°
Home
°
Forums
°
Downloads
°
Tryout Rules
°
Profiles
°
Image Gallery
°
Match Results
°
Awards
°
Shout!
°
Forum Games
°
Flash Games
°
IRC Channel
°
REGISTER
°
LOGIN
Members
Owners/Senior Leaders
(3)
(v)orpheus
CheckMate
proW
Fear-some - #fith
(3)
b0mber-
confederate
GrumpyPeon
Inactive
(4)
Foil
murkEd
Willo
wusamata
- Online w/in past five minutes
New Post Listing
Close Listing [X]
New Forum Posts
Topic
Last Post By
Date/Time
Woohoo, no new posts!
[
Access the Forums
]
PCW Site Down (no longer down)
FORUM INDEX
>>
Public
>>
PHP Clan Website
Login to reply!
Current Page:
Page 1 *
Viewing Posts:
1 to 18 of 18 posts
Poster
Message
#6215
(v)orpheus
As of today, it appears the PCW website no longer exists. I wish I knew it was going down, so I could grab all the files, but I did not. You should be able to access most of the files that were available on that site right here. However, due to Micro's registration requirement, I did not post the upgrade packages. I will ask him if he still has those files so I could host them. Anyways, please use this section of my forums to post any PCW related questions or comments.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Feb 26, 2010, 12:54am
Poster
Message
#6216
x REDRUM 781 x
I still have some of the files on my site,
http://gamingfanatic.info
, but most are on my hard drive.
I will also give support to anyone who requests it. Just simply post on my forums in the "
PCW Mod Discussions
" and I will try to help as soon as possible.
Bear in mind, I am working on 2 other sites and might be a little delay in help.
Later...
x REDRUM 781 x
» Last Edited By x REDRUM 781 x @ Mar 13, 2010, 7:23pm
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
CALMING THE DISTURBED, AND DISTURBING THE CALM
Midnight Clan Wars
Mar 13, 2010, 7:23pm
Poster
Message
#6217
(v)orpheus
Seems like PCW is back online. But we still offer our assistance, if anyone else visits here
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 15, 2010, 8:48am
Poster
Message
#6218
Gen.Frankie
hi (v)orpheus,nice site I alway's come here for some cool mods,I am trying to make a new website and I installed the forum mod for the html to work and I got it to work on our old site but forgot how i fixed it to make it work.
the new website I installed the forum mod but i cant get the html to work.
can you help me? the reason I'm making a new web is because I cant get the gallery to work right, after you upload like 14 pictures you can't view them.
oldsite
dcmgamingclan.com/phptdu420/index.php
new site
dcmgamingclan.com/bc2/index.php
please help me,thanks.
» Last Edited By Gen.Frankie @ Mar 15, 2010, 8:29pm
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 15, 2010, 7:42pm
Poster
Message
#6219
(v)orpheus
It looks like you have it installed an working properly. Note that to enable HTML within forum posts, you need to allow it in the forum security section for the ranks you want to grant access to.
Let me know if that's what you were talking about.
Enjoy!
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 17, 2010, 8:51am
Poster
Message
#6220
Gen.Frankie
I fixed it but I fixed it by copying the pcw files form my old site,I forgot what i did to fix it last time but I think the fix was in the PCW - 1.23.3 website forums.
now I'm still having problems with the Image Gallery with the new site, It works with most picture's for me, for some other members it works for a few pictures.
whats happening is that on some pictures it's not creating the thumbnail and when that happens all the pictures in that Gallery page disappears,and to fix it I got to delete the picture that don't have the thumbnail and then all the pictures come back.
I know that the picture has to be less then 2MB and can't have any of this @#$%^&*(){}.
we had our old,old site working fine for years...but now I have this problem. unfortunately we lost our old site wich was a PCW - 1.23.3
thank you for all your help,If you can help me with that one It will be greatly appreciated.
thanks
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 17, 2010, 2:09pm
Poster
Message
#6223
x REDRUM 781 x
Yeah I noticed it was back up also. I knew it was down for a couple of days.
As far as the image gallery, I noticed it sometimes don't like ***.png files and sometimes wont make all the thumbnails. Sometimes just reloading the page will force it to make the thumbnail.
Other than that, I dunno as My image gallery is so modded from the original, I forget what the original looks like.....lol
» Last Edited By x REDRUM 781 x @ Mar 17, 2010, 8:21pm
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
CALMING THE DISTURBED, AND DISTURBING THE CALM
Midnight Clan Wars
Mar 17, 2010, 8:21pm
Poster
Message
#6224
Gen.Frankie
reloading the page did not work, I got this message "A file with this name already exists. Please rename and reupload". and the picture is a jpg.
you can now go to my site and see my gallery were I uploaded the picture and it put it on the first page and you will see no pictures,and if i go to the ftp and delete this picture all the other pictures come back.
http://dcmgamingclan.com/bc2/index.php?dir=%2F1&offset=0&page=galeria
I posted like 25 pictures before i had any problems,my friend posted 2 and then had the same problem. It's weird.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 12:13am
Poster
Message
#6225
(v)orpheus
Yes, my site has the same issue. I had to do a force blank thumbnail as a temporary solution, and haven't felt like finding an actual fix. What I found was that even though the graphic was uploaded fine, the thumbnail script fails if the file was too large for the script, which is different than the file upload size. I made it so that if the file exceeded some size, the script will create a black tumbnail. Not sure if you've checked my image gallery, but you can see what I mean in there.
I am not sure what the original file shows, but after the line that shows:
Quote:
$thumb = "$picdir$dir$delim$thumbdir$delim$filename.thumb.jpg";
I placed the following:
Code:
//////////////// Something in here is not working properly ////////////////////////////
//echo "-$file: ".FileSize($file)." (".formatBytes(FileSize($file)).")< br />";
if (($thumbcheck !=2 && !file_exists($thumb)) || ($thumbcheck == 2 && !in_array("$filename.thumb.jpg", $thumbslist))) {
$ext = strtoupper(substr(strrchr($filename, "."), 1));
if(FileSize($file) < 500000){
if ($ext == "JPG" || $ext == "JPEG")
$original = @imagecreatefromjpeg($file);
elseif ($ext == "GIF")
$original = @imagecreatefromgif($file);
elseif ($ext == "PNG")
$original = @imagecreatefrompng($file);
else
continue;
} else {
echo "Error generating thumbnail for ".$filename.", file too large ".FileSize($file)." (".formatBytes(FileSize($file)).")< br />";
}
This comes just before:
Quote:
if ($original) {
I am not sure if I replaced something, or added to it. I think this code will display an error message the first time around, but then it created the black thumbnail and the next visit will not see the error.
» Last Edited By (v)orpheus @ Mar 18, 2010, 9:16am
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 9:15am
Poster
Message
#6231
Gen.Frankie
ok let me see if I got this right, dos the code looks like this after I paste?
Code:
}
$thumb = "$picdir$dir$delim$thumbdir$delim$filename.thumb.jpg";
//////////////// Something in here is not working properly ////////////////////////////
//echo "-$file: ".FileSize($file)." (".formatBytes(FileSize($file)).")< br />";
if (($thumbcheck !=2 && !file_exists($thumb)) || ($thumbcheck == 2 && !in_array("$filename.thumb.jpg", $thumbslist))) {
$ext = strtoupper(substr(strrchr($filename, "."), 1));
if(FileSize($file) < 500000){
if ($ext == "JPG" || $ext == "JPEG")
$original = @imagecreatefromjpeg($file);
elseif ($ext == "GIF")
$original = @imagecreatefromgif($file);
elseif ($ext == "PNG")
$original = @imagecreatefrompng($file);
else
continue;
} else {
echo "Error generating thumbnail for ".$filename.", file too large ".FileSize($file)." (".formatBytes(FileSize($file)).")< br />";
}
if (($thumbcheck !=2 && !file_exists($thumb)) || ($thumbcheck == 2 && !in_array("$filename.thumb.jpg", $thumbslist))) {
but then I get this error when I go to the Image Gallery.
Parse error: syntax error, unexpected $end in /misc/40/799/608/887/user/web/dcmgamingclan.com/bc2/pcw/galeria.php on line 626
http://dcmgamingclan.com/bc2/index.php?page=galeria
» Last Edited By Gen.Frankie @ Mar 18, 2010, 12:55pm
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 12:51pm
Poster
Message
#6233
(v)orpheus
It looks like you did not replace the area I was talking about, but inserted the code I gave. If you notice, the last line of your "Code" text above is the same as the 5th line in the text above.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 2:53pm
Poster
Message
#6234
Gen.Frankie
o ok,dos this look right?
Code:
}
$thumb = "$picdir$dir$delim$thumbdir$delim$filename.thumb.jpg";
//////////////// Something in here is not working properly ////////////////////////////
//echo "-$file: ".FileSize($file)." (".formatBytes(FileSize($file)).")< br />";
if (($thumbcheck !=2 && !file_exists($thumb)) || ($thumbcheck == 2 && !in_array("$filename.thumb.jpg", $thumbslist))) {
$ext = strtoupper(substr(strrchr($filename, "."), 1));
if(FileSize($file) < 500000){
if ($ext == "JPG" || $ext == "JPEG")
$original = @imagecreatefromjpeg($file);
elseif ($ext == "GIF")
$original = @imagecreatefromgif($file);
elseif ($ext == "PNG")
$original = @imagecreatefrompng($file);
else
continue;
} else {
echo "Error generating thumbnail for ".$filename.", file too large ".FileSize($file)." (".formatBytes(FileSize($file)).")< br />";
}
if ($original) {
if (function_exists('getimagesize'))
but still I get an error like this, Fatal error: Call to undefined function formatBytes() in /misc/40/799/608/887/user/web/dcmgamingclan.com/bc2/pcw/galeria.php on line 491
after I uploaded the same picture.
http://dcmgamingclan.com/bc2/index.php?dir=%2F1&offset=0&page=galeria
If you can,can you send me your galeria.php that works please? to rcfrank64@bellsouth.net
» Last Edited By Gen.Frankie @ Mar 18, 2010, 3:50pm
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 3:47pm
Poster
Message
#6235
(v)orpheus
woops, sorry, custom function:
Code:
function formatBytes($bytes, $precision = 2) {
$units = array('B', 'KB', 'MB', 'GB', 'TB');
$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);
$bytes /= pow(1024, $pow);
return round($bytes, $precision) . ' ' . $units[$pow];
}
you can add this pretty much anywhere, such as just before the ending "
?>
".
I can also send you the the file, just be sure to make any changes that you need to make, as it's customized (as usual, lol).
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 5:15pm
Poster
Message
#6237
Gen.Frankie
wow sweet ,thank you very much I owe you one.
let me know if you do fix that in the future.
Thank you...
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 6:19pm
Poster
Message
#6238
Gen.Frankie
The http://www.phpclanwebsite.com/ is back up!....
update: never mind It's back down.
» Last Edited By Gen.Frankie @ Mar 18, 2010, 7:21pm
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 18, 2010, 6:22pm
Poster
Message
#6240
x REDRUM 781 x
Ok I looked into it while I had a little time.
For some reason it is selecting images that are over 2mb.
Also, it will not select some images all together.
I am tempted to just make a new galery mod. I might start on it next.
It is frustrating!
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
CALMING THE DISTURBED, AND DISTURBING THE CALM
Midnight Clan Wars
Mar 19, 2010, 2:59pm
Poster
Message
#6242
Gen.Frankie
Quote:
Ok I looked into it while I had a little time.
For some reason it is selecting images that are over 2mb.
Also, it will not select some images all together.
I am tempted to just make a new galery mod. I might start on it next.
It is frustrating!
Sweet.
The
www.phpclanwebsite.com/
is back up!
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mar 20, 2010, 2:41pm
Poster
Message
#6271
x REDRUM 781 x
I know if I do make another one, I will definitely incorporate the popup version that I have on my site.
Look at it here.....
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
CALMING THE DISTURBED, AND DISTURBING THE CALM
Midnight Clan Wars
Mar 27, 2010, 11:58am
Current Page:
Page 1 *
Viewing Posts:
1 to 18 of 18 posts
Login to reply!
FORUM INDEX
>>
Public
>>
PHP Clan Website
» Show Permissions
« Hide Permissions
THREAD SETTINGS
Sticky:
Lock:
Your Permissions:
Read Posts:
YES
Write Posts:
No
Delete:
NO
Edit:
NO
Move Any:
No
Sticky Any:
No
Lock Any:
No
Forum Info
Our users have posted a total of 2842 articles
We have 144 registered users
In total there is 1 user online :: 0 Members and 1 Guests
[ Owners/Senior Leaders ]
[ Leaders ]
[ Fear-some - #fith ]
[ Inactive ]
[ Forum ]
[ Fear the Chileans ]
[ The Ashamed ]
Registered Users:
:: This data is based on user activity over the past five minutes ::
Powered by
PCW - 1.23.3
© 2004 - 'Abstract-Blue' theme by
ACE
- based on '002' © 2003+
ZYMIC
Page loaded in
0.569291 seconds