Jump to content

How would I do this? (Slightly difficult..)


Cory94bailly

Recommended Posts

This is going to be difficult to explain so I'll try to go slow :P

 

I have a website where people can upload files (with a .pk3 extension but that doesn't matter..)

 

Recently, I found out that the uploaded files all have only full public permissions.. Weird..

 

I added it so when the files get uploaded, they instantly get chmodd'd to 0777 and that works great but I have a few hundred files with only public permissions..

 

That means that if I want to make a backup of my website, it does NOT backup the files..

 

 

So I am wondering how I would even start this script.. (Don't be an ass and say "<?php" please)

 

What I think I need to do is this:

 

1.) Check all file permissions (In a loop?)

2.) Make sure it's not a folder

3.) If it IS a file and the permissions are not "0777", I want to somehow download the file (curl?)

4.) I want the files downloaded in a certain folder on my server.. I want to make sure so if it downloads a file inside folder "1", it puts the downloaded file inside the "1" folder, same for "2" and etc..

 

After that, I can easily re-write all the files with bad permissions by copying..

 

 

If anyone has any ideas for parts on this (or other ideas on doing it), please tell me :)

 

 

And if you want to know, the last time (I switched hosts, all files had bad permissions), I had to manually download about 100 files in my browser and re-upload them manually, I would love to not have to do that this time :)

Link to comment
https://forums.phpfreaks.com/topic/177245-how-would-i-do-this-slightly-difficult/
Share on other sites

Looping through files in a dir: http://www.w3schools.com/PHP/func_directory_dir.asp

Getting the file permissions: http://www.wallpaperama.com/forums/how-to-get-file-permission-in-php-getting-files-permission-t5818.html

Making sure it's not a folder: http://au2.php.net/manual/en/function.is-file.php

Downloading Files: http://www.w3schools.com/PHP/php_ref_ftp.asp

 

For the last part, your best using the link I sent you to UPLOAD via FTP rather, than downloading it

Looping through files in a dir: http://www.w3schools.com/PHP/func_directory_dir.asp

Getting the file permissions: http://www.wallpaperama.com/forums/how-to-get-file-permission-in-php-getting-files-permission-t5818.html

Making sure it's not a folder: http://au2.php.net/manual/en/function.is-file.php

Downloading Files: http://www.w3schools.com/PHP/php_ref_ftp.asp

 

For the last part, your best using the link I sent you to UPLOAD via FTP rather, than downloading it

 

That will help alot :)

 

I am horrible at loops, can anyone help? I am trying to get it to loop through the folder "ftp".. I want it to check if it's ., .., .htaccess, or a .php file..

<?php
//Open images directory
$dir = dir("ftp");

//List files in images directory
while (($file = $dir->read()) !== false)
{
if($file == "." || $file == ".." || $file == ".htaccess" || preg_match('~\.php$~', $file))
{
//Is . or .. or .htaccess or a .php file
}
}

$dir->close();
?> 

Warning: fileperms() [function.fileperms]: stat failed for mlb_temple.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for specialops_uni.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for hitsound.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for s_hitsound.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for tc_base.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for ozhitsounds1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for supplydepot2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for bunker10-040408.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for Sniper_lake_b2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for flexs.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for decoder_etpro.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sunnysounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for scrimconfigs1a-20090111.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z__Google.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_xmashelm.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_ktvsay1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_realistic_muzzleflash.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etprosoundsv1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for rochelle_ETPRO_ONLY.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for theriver2redux_ETPRO.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for braundorf_b4.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpubsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_pizza.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for X_superdregs_V1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for X_superdregs_V2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for rommel_ga_ETPRO_ONLY.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for a_Styloo_Skinpack.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for reactor_ETPRO_ONLY.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for s_bunkerhits.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_etpubsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zXz_--MN--BloodMod.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for elitemod_client_beta2.1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for skinpack_stylo.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_Browning_Mod_ET.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20070801.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for b10_news_file.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_fueldump.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zzzzzzzzzz_sw_1911.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpubc-20090318.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for s_mob_hitsoundspack.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etadmin_sounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_DetsET.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sniper_v2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for scrimconfigs-s1a-mSc-20090420.612155bc.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_sound.c18dca2c.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for X_superdregs.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for si_campaign.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for mp_vuk_pak0.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for complete.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for refmod-by kryptonite.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for dp_sounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_graphics.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for Spartan_NewMod1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_elite+rangers.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20070213.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sefpak.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for elspreesounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sniperskin.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etprosounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for refmod-by-kryptonite.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for landmine.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for WhaleClient-1_3.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for scrimconfigs-20090420.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_xmas_grinch_b2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_wtf_mines_test.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20070801.ec5f77c3.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zzz_emesounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for nGspreesounds.db331607.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for mp_theriver_2nd_etprocmshader.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for trans_cm_icons_ETpro.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for _zwand.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20060818.4f9b7e14.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for nGspreesounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for nGspreesounds.f376a4c9.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for FB_sounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sound.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_hitsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for ZZZZZZ_drago.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zelhitsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for daybreak.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zzz_emeextra_1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpubc-20080913.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for whaleclient-1_4_beta1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for _sant.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-200708011.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for 1944_beach.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for alpine_assault_final_pro.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for ae_sniper_practice.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sykospree.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for basic3.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for basic4.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for teamsyko.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for baserace_b3.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for dubrovnik_final_ETPRO_ONLY.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_xmas_2007.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zzz_GUN_MOD_V1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for bunker10-111007.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for spreesounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for WhaleClient_CompassShaders.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for soundsv1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for baserace_b3_suppliment.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for b10_news_file4.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpubsounds.2443932c.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_Carryable_Browning_MG42.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for ae_sniper_challenge.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for raiders_etprocm.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpubhitsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z.ETO.billbored.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20060818.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zzz_hitsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sunny2sounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for tomb1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20080913_sunny.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for warbell_etproonly.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for _zangel.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for a_Styloo_Voicepack.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for google_sounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_xmas_ammo.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_matrix.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for UJE_bunker_sniper_b4.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for G-G_tunes.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for football.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for beerrun_b6.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_xmas_mimarker.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for o)mod.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for trmfght_beta2_etpro.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sykoks.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_ETOchatsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for cathedral_b4.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for xposed.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for _m16.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_hitsounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z&z_AGSU.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_sound.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for sykohits.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for Wrench.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpubc-20081027.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for spreesounds00.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_RTCW_Snooper_for_ET.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for Z_fzb1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for mp_vcan_pak0.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for venice.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_XRsoundpack_test1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_XRsoundpack_test2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_coresounds.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for X_superdregs_V1.1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for X_superdregs_V1.2.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for cathedral.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for z_xmas_healthpacks.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for scrimconfigs-s1a-mSc-20090420.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for zz_ETO.Srpee.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for etpub_client-20060310.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for SPExpansion1.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for ae_sniper_challenge.76c8eb50.pk3 in /home/cory/htdocs/fix.php on line 7

Warning: fileperms() [function.fileperms]: stat failed for ZZZZZZ_m24.pk3 in /home/cory/htdocs/fix.php on line 7

 

<?php
//Open images directory
$dir = dir("ftp/etpub");

function checkperms($file)
{
substr(sprintf('%o', fileperms($file)), -4); 
}

//List files in images directory
while (($file = $dir->read()) !== false)
{
if(preg_match('~\.pk3$~', $file))
{
if(checkperms($file) !== "0777")
{
}
}
}

$dir->close();
?> 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.