News:

The "Support Requests" forum is now viewable by guests.

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

Messages - nscelica

#1
Ditto.

username - nscelica
site - www.nscelica.com
#2
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
#3
Support Requests / Re: My domain isn't working
May 17, 2006, 02:06:33 AM
Yeah its on there, everything was working up until a days ago. I've had this for about 8 months now and it worked fine.
#4
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?
#5
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?
#6
Support Requests / Re: php File writing help
February 10, 2006, 03:07:44 AM
THANK YOU, that worked.
#7
Support Requests / Re: php File writing help
February 10, 2006, 12:28:44 AM
Well I tested it on the Freepgs server and it worked, but on the Plesk server it does not work.
#8
Support Requests / Re: php File writing help
February 09, 2006, 11:10:46 PM
I have tried all kinds of scripts. I am not getting any errors for the server, just blank pages and the files aren't in the path the file is in. I tried to set the path but I am still having no luck.

Do you think you could show me an example of a working file writing script for this server?

Basically what i'm trying to get accomplished is having info taking off the server and stored in txt files for each of the moderators of my site everytime they log in. I could do this with the database, but I figured its easier and more efficient to put the information in txt files.
#9
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?