News:

Click here for Toll-Free Service for your business starting at $2.00 per month

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - nscelica

#1
Support Requests / File Type Changes
October 28, 2006, 11:18:42 PM
I know I was able to do this on my home "web server", but I can't figure out how to do it on here, or if its even possible....

I want to make different file extensions be processed by PHP. Like say I wanted files ending in .7d3 to be processed as a php file, etc. Anyone know what I'm talking about? or better yet, anyone know how to enable this on these servers? I'm using plesk right now if that helps.


NSC
#2
Support Requests / My domain isn't working
May 17, 2006, 01:15:12 AM
   Registered through: LVCS.NET
   Domain Name: NSCELICA.COM

   Domain servers in listed order:
      PLSK1.LVCS.NET
      PLSK2.LVCS.NET

When I log into the plesk server everything is fine but it cannot find my site when I go to nscelica.com


Can anyone please help me?
#3
Support Requests / Timezone adjustment
February 17, 2006, 02:23:35 AM
Ok, i'm guessing its not possible to adjust the time zone for my hosting? (I'm using the Plesk server).

Anyone know if it is possible to change the timezone?
#4
Support Requests / php File writing help
February 09, 2006, 08:00:17 PM
<?
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");

$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);

$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);
?>


Thats just an example of a file writing script i have on my page. I have already created that file "testFile.txt" and put it in the same directory as the php script but I cannot seem to get it to work.

Anyone have any ideas?