Search found 27 matches
Aprelium Forum Index
Author Message
  Topic: WWW will not work
eyn

Replies: 4
Views: 11891

PostForum: PHP   Posted: Tue Mar 22, 2005 4:42 am   Subject: WWW will not work
I know the reason for that but I'm not sure if you're in the same situation. First of all, I'm not sure if your router support loopback so when you type in your domain it loops back to your own comput ...
  Topic: Upload hang for large files
eyn

Replies: 3
Views: 12977

PostForum: PHP   Posted: Sat Mar 19, 2005 8:47 pm   Subject: Upload hang for large files
Thanks admin! The article is really helpful. The problem boils down to the "post_max_size", as php default configuration is 8M, thus the script hangs when I try to upload files larger than 8MB. I thou ...
  Topic: Upload hang for large files
eyn

Replies: 3
Views: 12977

PostForum: PHP   Posted: Sat Mar 19, 2005 6:07 am   Subject: Upload hang for large files
<?PHP
$uploadNeed = $_POST['uploadNeed']; //you need to create a form that sends this POST variable together with filename
define("MEGA",1048576);
define("KILO ...
  Topic: help, viewing problem
eyn

Replies: 10
Views: 18337

PostForum: General Questions   Posted: Mon Feb 28, 2005 6:59 am   Subject: help, viewing problem
that is not your global IP, it's your lan IP, only computer on your LAN can see your page using that IP. To find out your global IP, go to http://www.aprelium.com/ip/

Using that IP alone might not ...
  Topic: Really new to all of this........
eyn

Replies: 18
Views: 28514

PostForum: General Questions   Posted: Thu Feb 10, 2005 3:27 pm   Subject: Really new to all of this........
You don't need to specify port 80 as in http://yourip:80, as 80 is the default port for server. You only need to explicitly type in port number if it's not 80.
  Topic: virtual path to .php --> will not parse
eyn

Replies: 2
Views: 7281

PostForum: PHP   Posted: Tue Feb 01, 2005 10:42 pm   Subject: virtual path to .php --> will not parse
Okay, so I set up a virtual path called /stats pointing towards a file called stats.php. When I type in the virtual path in browser, the .php file is not parsed by the compiler. As a result, Firefox w ...
  Topic: I need a site tested, please
eyn

Replies: 3
Views: 7078

PostForum: General Questions   Posted: Sun Jan 30, 2005 3:29 pm   Subject: I need a site tested, please
Congrats! It works. :)
  Topic: Server Uptime
eyn

Replies: 10
Views: 16335

PostForum: General Questions   Posted: Sun Jan 30, 2005 7:44 am   Subject: Server Uptime
The server uptime is only updated each time console is initiated or server is restarted, am I right?

I displayed the server uptime on my page together with output, however, I notice that each time ...
  Topic: Conditional Dialer Script
eyn

Replies: 13
Views: 19967

PostForum: PHP   Posted: Fri Jan 28, 2005 11:17 pm   Subject: Conditional Dialer Script
You're giving yourself too much trouble. Here's the simple thing to do.

Use PHP form to mail script ([url=http://www.christian-web-masters.com/articles/web_php-mail-form-2.html]here) to send the no ...
  Topic: Allowing Users To Upload Files To Server
eyn

Replies: 17
Views: 30603

PostForum: General Questions   Posted: Wed Jan 26, 2005 5:42 pm   Subject: Allowing Users To Upload Files To Server
Go to your processFiles.php, look for this line:
$copy = copy($_FILES['uploadFile'. $x]['tmp_name'],"uploads/$file_name");

You might have slightly different 2nd a ...
  Topic: Allowing Users To Upload Files To Server
eyn

Replies: 17
Views: 30603

PostForum: General Questions   Posted: Sun Jan 23, 2005 11:02 pm   Subject: Allowing Users To Upload Files To Server
Just to tell u that I have some problem with the HTML Goodies script, I tried but the getfile.php will return "notice: undefined" index and crap. I suggest you to use the script I used, that is the on ...
  Topic: Allowing Users To Upload Files To Server
eyn

Replies: 17
Views: 30603

PostForum: General Questions   Posted: Sun Jan 23, 2005 3:06 pm   Subject: Allowing Users To Upload Files To Server
Take a look at this thread, that's the problem I used to have when I first try using an upload script. Beside the script, you need to configure your php.ini as well, which is in the windows directory ...
  Topic: .xpi MIME type
eyn

Replies: 3
Views: 7512

PostForum: General Questions   Posted: Tue Jan 18, 2005 8:43 pm   Subject: Thank you
Thanks! It works! I have actually been to that exact page you given above before I post this question, damn. :p
  Topic: LeechGet does not work with my server's files
eyn

Replies: 7
Views: 15011

PostForum: General Questions   Posted: Tue Jan 18, 2005 2:11 am   Subject: Re: LeechGet does not work with my server's files
Have you tried another download manager (for example GetRight)?

Yes, I tried GetRight and it works. I'm not sure what's the problem with LeechGet, and yes I do know which URL to be used to invoke t ...
  Topic: .xpi MIME type
eyn

Replies: 3
Views: 7512

PostForum: General Questions   Posted: Tue Jan 18, 2005 2:04 am   Subject: .xpi MIME type
Hi guys! I want to install Firefox extensions through my own server. However, when I click on the link that leads to the .xpi file, the download windows pop up instead of the install windows. I tried ...
  Topic: LeechGet does not work with my server's files
eyn

Replies: 7
Views: 15011

PostForum: General Questions   Posted: Sun Jan 16, 2005 7:32 pm   Subject: LeechGet does not work with my server's files
no, it works well with other server, but there's one option column in the settings which allows you to enter those "One-Task Server", here's the quote:
LeechGets supports multiple connection to one s ...
  Topic: LeechGet does not work with my server's files
eyn

Replies: 7
Views: 15011

PostForum: General Questions   Posted: Sun Jan 16, 2005 6:56 am   Subject: LeechGet does not work with my server's files
Hi, I'm using LeechGet 2004 as my download manager (it's free!) and I notice that it does not work with my server's file. All the download will stuck at say 60 or 50 percent. Does this means Abyss Ser ...
  Topic: PHP Upload Script
eyn

Replies: 3
Views: 7686

PostForum: PHP   Posted: Sat Jan 08, 2005 6:55 pm   Subject: PHP Upload Script
Thank you for the replies. The problem is as admin has stated, the php.ini by default only allows 2mb as max upload size. You can change it to higher and it will work.

I spent sometime finding my p ...
  Topic: PHP Upload Script
eyn

Replies: 3
Views: 7686

PostForum: PHP   Posted: Sat Jan 08, 2005 8:32 am   Subject: PHP Upload Script
I set up a upload feature using PHP after reading the tutorial [url=http://www.devarticles.com/c/a/PHP/Creating-a-MultiFile-Upload-Script-in-PHP/]here I have no problems with uploading small files but ...
  Topic: How do i use a (free) .tk domain name with the abyss server?
eyn

Replies: 8
Views: 15143

PostForum: General Questions   Posted: Fri Jan 07, 2005 3:03 pm   Subject: How do i use a (free) .tk domain name with the abyss server?
You need to set up port forwarding for your ip to work if you are behind a router (there's some tutorial around). And make sure your ip is correct. To test your server you cannot use a computer in you ...
  Topic: PHP newbie question
eyn

Replies: 2
Views: 6270

PostForum: PHP   Posted: Sun Jan 02, 2005 8:53 am   Subject: Well, guess what?
Ha, I used the following code and it works!
$movie_list = array();
Oh well, I'm not really sure if this is the way you should do it, any idea?

I still have the other question I posted tho ...
  Topic: PHP newbie question
eyn

Replies: 2
Views: 6270

PostForum: PHP   Posted: Sun Jan 02, 2005 8:43 am   Subject: PHP newbie question
Okay, I'm learning PHP using some eBook, I have some newbie question here. How to use a variable without getting the "undefined variable" notice from the compiler? For example, I have this line:

$ ...
  Topic: How do i use a (free) .tk domain name with the abyss server?
eyn

Replies: 8
Views: 15143

PostForum: General Questions   Posted: Sat Jan 01, 2005 5:50 am   Subject: How do i use a (free) .tk domain name with the abyss server?
Just a tips from me, you do not use your own ip to access your own site. You use 127.0.0.1:portnumber to access your own server.

Other people use your ip to access your site, but if you have dynami ...
  Topic: Mask IP
eyn

Replies: 22
Views: 37040

PostForum: General Questions   Posted: Sat Jan 01, 2005 5:40 am   Subject: Mask IP
I registered a .info domain for 1 year, free (they have promotion a while ago). Then I have ZoneEdit as my nameserver, the next thing you need is a program that updates your ip forwarding at ZoneEdit, ...
  Topic: Access
eyn

Replies: 6
Views: 10170

PostForum: General Questions   Posted: Thu Dec 16, 2004 1:28 am   Subject: Access
You can create user group and choose to allow only authorized user to view those directory that you don't want to be automatically listed. That works for me.
  Topic: Beta 2 lagging after hosting for a while?
eyn

Replies: 2
Views: 6671

PostForum: General Questions   Posted: Thu Dec 09, 2004 7:39 am   Subject: Beta 2 lagging after hosting for a while?
Thanks for your reply! I think it's a result of using other program at the same time. I have ZoneAlarm and DirectUpdate for the DNS running and after a while the server hosted with Abyss will start la ...
  Topic: Beta 2 lagging after hosting for a while?
eyn

Replies: 2
Views: 6671

PostForum: General Questions   Posted: Wed Dec 08, 2004 5:11 am   Subject: Beta 2 lagging after hosting for a while?
I don't know if this only happens to me but the server I hosted using Abyss Beta 2 tends to lag after a few hours operating. It is very obvious lagging because it takes several seconds to render the a ...
 
Page 1 of 1
All times are GMT + 1 Hour
Jump to:  


Powered by phpBB phpBB Group