Author |
Message |
Topic: arrays and strings in a for() {} |
Flux
Replies: 3
Views: 11153
|
|
smart is me..or not.
Thanks again aprelium. |
Topic: arrays and strings in a for() {} |
Flux
Replies: 3
Views: 11153
|
|
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
|
|
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
|
|
(nevermind) |
Topic: MSN @yourdomain.com? |
Flux
Replies: 3
Views: 7292
|
|
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
|
|
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
|
|
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
|
|
Ah, yet another annoyingly simple solution...
Thanks AbyssUnderground. |
Topic: php mail() SMTP authentication? |
Flux
Replies: 3
Views: 13338
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
--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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
Oh, perfect. :D
Thanks a lot pkSML. |
Topic: Uploading a file |
Flux
Replies: 2
Views: 9099
|
|
shoot....
Is that it?!
sigh...
Sorry for bothering everyone..
And thanks olly86 |
Topic: Uploading a file |
Flux
Replies: 2
Views: 9099
|
|
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
|
|
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
|
|
Thank you, that's exactly what I'm looking for. |
Topic: Directory listing |
Flux
Replies: 5
Views: 13385
|
|
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
|
|
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
|
|
Ah yes, thanks. |
Topic: Directory listing |
Flux
Replies: 5
Views: 18525
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
Oops. How'd that happen? See the next post.. |
Topic: The Abyss Webserver users and groups |
Flux
Replies: 5
Views: 17342
|
|
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
|
|
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
|
|
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
|
|
It works in all my other scripts (which are either vb or c#).... |
Topic: a lack of understanding |
Flux
Replies: 7
Views: 23272
|
|
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
|
|
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
|
|
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
|
|
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 ... |
|