Search found 46 matches
Aprelium Forum Index
Author Message
  Topic: arrays and strings in a for() {}
Flux

Replies: 3
Views: 11153

PostForum: PHP   Posted: Wed Apr 25, 2007 12:05 am   Subject: arrays and strings in a for() {}
smart is me..or not.
Thanks again aprelium.
  Topic: arrays and strings in a for() {}
Flux

Replies: 3
Views: 11153

PostForum: PHP   Posted: Sun Apr 22, 2007 6:57 pm   Subject: arrays and strings in a for() {}
So let's say I have to make a few directories in succession.
Directory that exists: /files/user/pics/
Directory that ultimately needs to exist: /files/user/pics/oneday/thatevent/thistime/
I have mk ...
  Topic: Limiting file Upload Size
Flux

Replies: 3
Views: 12556

PostForum: PHP   Posted: Sun Apr 22, 2007 5:44 pm   Subject: Limiting file Upload Size
You could also program the post-upload script to check the size.
Like, if file x > 20MB, cancel upload, etc. (Using, as I'm sure you already know, $_FILES['x']['size'])
  Topic: Getting Values from uploaded file
Flux

Replies: 2
Views: 9502

PostForum: PHP   Posted: Sun Apr 22, 2007 5:40 pm   Subject: Getting Values from uploaded file
(nevermind)
  Topic: MSN @yourdomain.com?
Flux

Replies: 3
Views: 7292

PostForum: Off Topic Discussions   Posted: Sun Apr 08, 2007 6:32 pm   Subject: MSN @yourdomain.com?
I've seen a couple of people that have msn messenger accounts pointing to their name/alias @ their domain.
I'm going to start looking around myself, but does anyone know how they do that?
  Topic: FTP commands in PHP
Flux

Replies: 6
Views: 15864

PostForum: PHP   Posted: Mon Apr 02, 2007 10:14 pm   Subject: FTP commands in PHP
I figured it out, and I don't have to deal with command line parameters, but thanks anyway, and I'll keep that in mind for when I do have to.
  Topic: FTP commands in PHP
Flux

Replies: 6
Views: 15864

PostForum: PHP   Posted: Mon Apr 02, 2007 6:34 pm   Subject: FTP commands in PHP
Ah.

GuildFTPd's documentation is in text files, with the program...

Ugh, so many simple obvious answers.

Thanks for being patient with me, aprelium. (And thanks for the cookie help).

Now ...
  Topic: php mail() SMTP authentication?
Flux

Replies: 3
Views: 13338

PostForum: PHP   Posted: Fri Mar 30, 2007 6:14 am   Subject: php mail() SMTP authentication?
Ah, yet another annoyingly simple solution...

Thanks AbyssUnderground.
  Topic: php mail() SMTP authentication?
Flux

Replies: 3
Views: 13338

PostForum: PHP   Posted: Thu Mar 29, 2007 6:05 am   Subject: php mail() SMTP authentication?
So I've got this mail script:
<?php

$send=mail($to, $subj, $message, $header_from, $addl_params);

if ($send) {
echo 'success!';
} else {
echo 'failure!';
& ...
  Topic: FTP commands in PHP
Flux

Replies: 6
Views: 15864

PostForum: PHP   Posted: Tue Mar 27, 2007 4:40 am   Subject: FTP commands in PHP
no, not really.
I don't know the actual functions that work to add users, delete users, edit users, etc.

I can give the url for the ftp section of php.net
http://us3.php.net/manual/en/ref.ftp.php
  Topic: FTP commands in PHP
Flux

Replies: 6
Views: 15864

PostForum: PHP   Posted: Mon Mar 26, 2007 6:57 am   Subject: FTP commands in PHP
I'm using GuildFTPd and am somewhat confused by php.net's description of ftp commands.

I've seen plenty of samples of putting a file on the server, taking one off, setting file permissions, logging ...
  Topic: phpBB forums - sessions?
Flux

Replies: 3
Views: 11449

PostForum: PHP   Posted: Sun Mar 18, 2007 7:57 pm   Subject: phpBB forums - sessions?
to p3: I noticed the sid in the url, yes.
to pkSML: after further browsing through the scripts, I noticed what p3 said, and it uses, as far as I can see, absolutely no $_SESSION - related scripting ...
  Topic: phpBB forums - sessions?
Flux

Replies: 3
Views: 11449

PostForum: PHP   Posted: Sat Mar 17, 2007 6:15 pm   Subject: phpBB forums - sessions?
I just installed a phpBB forum to my server, exactly like this one.

My question is, does anyone know how it handles sessions? I've looked at the login.php script and it's very confusing. I'll con ...
  Topic: Best relative links &cet for offline PHP previewing?
Flux

Replies: 3
Views: 23489

PostForum: PHP   Posted: Tue Feb 27, 2007 4:21 am   Subject: Best relative links &cet for offline PHP previewing?
Just a little note:

phpMyAdmin is a php-encoded, webpage-based administration console for the database server known as MySQL.

I'm hoping you know that databases are for storing information, such ...
  Topic: Best relative links &cet for offline PHP previewing?
Flux

Replies: 3
Views: 23489

PostForum: PHP   Posted: Mon Feb 26, 2007 4:34 pm   Subject: Best relative links &cet for offline PHP previewing?
--Is the "start-at-root" method ("/") supposed to work with PHP includes? I.e., do I simply need to find a different webhost with the proper configurations?
You mean:
<?php in ...
  Topic: FTP Servers
Flux

Replies: 5
Views: 8322

PostForum: Off Topic Discussions   Posted: Wed Feb 21, 2007 7:49 am   Subject: FTP Servers
After fiddling around a little (and having problems with clashing FTP servers whose processes are hidden from immediate view >:| ) I've decided that cmxflash's idea is a good one.

I do hope, how ...
  Topic: not reading $_POST in one part of the script...
Flux

Replies: 0
Views: 23761

PostForum: PHP   Posted: Wed Feb 21, 2007 7:43 am   Subject: not reading $_POST in one part of the script...
I have a form:
<form enctype="multipart/form-data" action="upload.php" method=post>
Upload a file:<br>
<input name="file" type="file">& ...
  Topic: Picture Thumbnails
Flux

Replies: 5
Views: 12490

PostForum: PHP   Posted: Sun Feb 18, 2007 11:40 pm   Subject: Picture Thumbnails
Cool, thanks.

You're actually the one that gave me the link. From here:
http://stephen.calvarybucyrus.org/code/3

Although that's a directory script, that is indeed the source that I used. I'm ...
  Topic: Picture Thumbnails
Flux

Replies: 5
Views: 12490

PostForum: PHP   Posted: Sun Feb 18, 2007 7:17 pm   Subject: Picture Thumbnails
In addition, how do you match the first part of a string as well?
i.e.:

$_POST['path'] = "/flux/pics/blah/yadda/"

how do you test to see if the string begins with "/flux/pics/&qu ...
  Topic: Picture Thumbnails
Flux

Replies: 5
Views: 12490

PostForum: PHP   Posted: Sun Feb 18, 2007 7:01 pm   Subject: Picture Thumbnails
So I'm using (what I'd assume is) pkSML's directory script to browse my server via the "From Script" mode of Abyss' directory list.
I've managed to successfully add in picture thumbnails, b ...
  Topic: FTP Servers
Flux

Replies: 5
Views: 8322

PostForum: Off Topic Discussions   Posted: Sun Feb 18, 2007 9:15 am   Subject: FTP Servers
I'm not very good at source code modification...at least not without a day or two (consecutive's equivalent) to learn whatever language it is...

But sure, I'll tell you about it when I find it.
  Topic: FTP Servers
Flux

Replies: 5
Views: 8322

PostForum: Off Topic Discussions   Posted: Sun Feb 18, 2007 8:01 am   Subject: FTP Servers
I'm trying to get my site to offer FTP file upload functionality. Easy enough right? Just get something like FileZilla.
I have FileZilla, but there's a slight problem.
I need it to access MySQL so ...
  Topic: Directory listing
Flux

Replies: 5
Views: 13385

PostForum: PHP   Posted: Wed Feb 14, 2007 12:45 am   Subject: Directory listing
Oh, perfect. :D
Thanks a lot pkSML.
  Topic: Uploading a file
Flux

Replies: 2
Views: 9099

PostForum: PHP   Posted: Mon Feb 12, 2007 10:07 pm   Subject: Uploading a file
shoot....
Is that it?!
sigh...
Sorry for bothering everyone..
And thanks olly86
  Topic: Uploading a file
Flux

Replies: 2
Views: 9099

PostForum: PHP   Posted: Mon Feb 12, 2007 9:35 pm   Subject: Uploading a file
My file upload script works fine, except for one thing.
It's the only script in my arsenal that cannot read $_SESSION<?php
if ((!isset($_SESSION['s_logged_n'])) ||  ...
  Topic: Directory listing
Flux

Replies: 5
Views: 13385

PostForum: PHP   Posted: Mon Feb 12, 2007 9:24 pm   Subject: Directory listing
Meaning that if I use the same script that i posted up before, I should have a url:
http://site.com/dir.php?dir="F:\files\"
If I want to browse the equivalent of http://site.com/files/ ?
...
  Topic: URL Rewriting and/or FTP with MySQL
Flux

Replies: 2
Views: 13341

PostForum: URL Rewriting   Posted: Mon Feb 12, 2007 6:51 pm   Subject: URL Rewriting and/or FTP with MySQL
Thank you, that's exactly what I'm looking for.
  Topic: Directory listing
Flux

Replies: 5
Views: 13385

PostForum: PHP   Posted: Mon Feb 12, 2007 9:57 am   Subject: Directory listing
Pretty standard, right?
So I've tried to use a directory script with a $_GET so that I can just define what directory in a querystring. But anything other than the folder the script file (I named it ...
  Topic: URL Rewriting and/or FTP with MySQL
Flux

Replies: 2
Views: 13341

PostForum: URL Rewriting   Posted: Mon Feb 12, 2007 9:19 am   Subject: URL Rewriting and/or FTP with MySQL
I don't know if this goes with the php or not, but I was wondering how to use abyss webserver's new url rewriting feature to convert the url
http://blah.com/directory/defined/here
to something like ...
  Topic: Not sure where this goes: FreeDNS
Flux

Replies: 4
Views: 7523

PostForum: Off Topic Discussions   Posted: Sat Nov 25, 2006 6:08 pm   Subject: Not sure where this goes: FreeDNS
Ah yes, thanks.
  Topic: Directory listing
Flux

Replies: 5
Views: 18525

PostForum: ASP.NET   Posted: Thu Nov 23, 2006 6:24 am   Subject: Directory listing
Actually, it is, because my quote happened to include that, but I find no trace of brackets left open, or one to a few too many closing brackets, despite the continued errors.
  Topic: Not sure where this goes: FreeDNS
Flux

Replies: 4
Views: 7523

PostForum: Off Topic Discussions   Posted: Tue Nov 21, 2006 6:37 pm   Subject: Not sure where this goes: FreeDNS
Anyone else use freedns?

They confuse me. They say that they give you a free domain, then change it to you have to pay for the domain and we offer servers that transfer users from domain to your c ...
  Topic: Directory listing
Flux

Replies: 5
Views: 18525

PostForum: ASP.NET   Posted: Tue Nov 21, 2006 5:26 pm   Subject: Directory listing
I found a good directory example...right after I posted, of course.

But now I'm having problems adapting it to a thumbnail script made by some guy Philipos Sak....something..

Anyway, help? I'm ...
  Topic: a lack of understanding
Flux

Replies: 7
Views: 23272

PostForum: ASP.NET   Posted: Tue Nov 21, 2006 5:14 pm   Subject: a lack of understanding
Um...yeah...well I tried posting that but the forum glitched and gave me a 500 error.. Anyway they're in there.
  Topic: Directory listing
Flux

Replies: 5
Views: 18525

PostForum: ASP.NET   Posted: Mon Nov 20, 2006 11:44 pm   Subject: Directory listing
Is there a simple way to create a directory list that can be put into a page (i.e. not provided by abyss, because that can't be put in another page)?

I've tried searching around, but I can't find a ...
  Topic: The Abyss Webserver users and groups
Flux

Replies: 5
Views: 17342

PostForum: General Questions   Posted: Mon Nov 20, 2006 6:09 pm   Subject: The Abyss Webserver users and groups
Ahh.....Interesting...
I'll have to fiddle with that.

And I'll remember the difference in security too.
  Topic: a lack of understanding
Flux

Replies: 7
Views: 23272

PostForum: ASP.NET   Posted: Mon Nov 20, 2006 5:49 pm   Subject: a lack of understanding
Hehe...eh.. :oops:
About that. Here's the code thus far, and so far I was busy working on getting the button to work so I didn't pay much attention to the sub, yet.
Although, as you can see, I nee ...
  Topic: a lack of understanding
Flux

Replies: 7
Views: 23272

PostForum: ASP.NET   Posted: Mon Nov 20, 2006 5:45 pm   Subject: a lack of understanding
Oops. How'd that happen? See the next post..
  Topic: The Abyss Webserver users and groups
Flux

Replies: 5
Views: 17342

PostForum: General Questions   Posted: Mon Nov 20, 2006 7:04 am   Subject: The Abyss Webserver users and groups
so, they would be able to sign in using internet explorer's login window thing, and then see a directory listing.

Ok, but i'm talking about more than just that.

Perhaps I'll attempt to rephrase. ...
  Topic: The Abyss Webserver users and groups
Flux

Replies: 5
Views: 17342

PostForum: General Questions   Posted: Mon Nov 20, 2006 5:29 am   Subject: The Abyss Webserver users and groups
what are they for, beyond accessing or not accessing folders in the server?

Can they be used for, per se, sessions for php, asp.net, etc.?
  Topic: webfilebrowser
Flux

Replies: 3
Views: 8465

PostForum: General Questions   Posted: Mon Nov 20, 2006 5:27 am   Subject: webfilebrowser
ftp is great and all but I tried that before and half of my friends had problems accessing the server, let alone logging in and editing files...
Which is why i like web file browser, but would like i ...
  Topic: a lack of understanding
Flux

Replies: 7
Views: 23272

PostForum: ASP.NET   Posted: Mon Nov 20, 2006 5:17 am   Subject: a lack of understanding
It works in all my other scripts (which are either vb or c#)....
  Topic: a lack of understanding
Flux

Replies: 7
Views: 23272

PostForum: ASP.NET   Posted: Sun Nov 19, 2006 7:53 pm   Subject: a lack of understanding
I've been writing (failing to write) a script that is hopefully going to end up being an incredibly simplified version of the flooble chatterbox (flooble.chatterbox.com) (I'm writing it because I hate ...
  Topic: webfilebrowser
Flux

Replies: 3
Views: 8465

PostForum: General Questions   Posted: Sun Nov 19, 2006 5:30 pm   Subject: webfilebrowser
I know of, have downloaded, and implemented the web file browser .php file onto my server and it seems very useful. However, I want to be able to use it with sessions, and the rest of my website is i ...
  Topic: ASP interpreter: the IIS .dll file?
Flux

Replies: 3
Views: 30293

PostForum: Classic ASP   Posted: Sun Oct 15, 2006 5:15 pm   Subject: ASP interpreter: the IIS .dll file?
Ok, thanks. I think I'll have to look around for some tutorials on that then...
  Topic: ASP interpreter: the IIS .dll file?
Flux

Replies: 3
Views: 30293

PostForum: Classic ASP   Posted: Fri Oct 13, 2006 1:35 am   Subject: ASP interpreter: the IIS .dll file?
Can I use IIS's interpreter in any way with Abyss Web Server?
I've found the asp.dll file, and declared it as the interpreter, but like with most .dll files, it seems not to work with any but the pro ...
 
Page 1 of 1
All times are GMT + 1 Hour
Jump to:  


Powered by phpBB phpBB Group