Author |
Message |
Topic: Ensuring Secure Configuration of your Headers |
Toasty
Replies: 1
Views: 15538
|
|
I have built a site that audits the response headers of your web applications to determine if they are configured correctly. I still have a ways to go (for example, digging into CSP configuration a bi ... |
Topic: ownCloud - run your own cloud storage service |
Toasty
Replies: 2
Views: 36524
|
|
No, thank YOU! |
Topic: PHP 5.5.2 Released |
Toasty
Replies: 8
Views: 39676
|
|
Bruh |
Topic: Less informative HTTP Response Header |
Toasty
Replies: 2
Views: 14151
|
|
Set up a reverse proxy in front of it (HA Proxy, etc) and strip the header. Multiple hosts can be configured using this as well. |
Topic: Installing 'Abyss Web Server' |
Toasty
Replies: 2
Views: 14080
|
|
I would ignore you too. Your post here is full of jibberish and crying instead of having a useful question.
Likewise, ideally they would only support the paid versions of the software, since you kn ... |
Topic: error 500 but not error message |
Toasty
Replies: 9
Views: 38837
|
|
This is an issue I've had with Abyss so many times, long running processes (DB queries etc).
For something like this, you're better off just running it from the CLI or setting up a scheduled task t ... |
Topic: how do i make a commenting blog website? |
Toasty
Replies: 1
Views: 12866
|
|
Create an account on Wordpress.com
Use their site. |
Topic: Executing bat file |
Toasty
Replies: 4
Views: 24506
|
|
Please don't use this.
Learn the proper way to do it with a server-side language.
Allowing arbitrary running of batch files should be considered harmful. |
Topic: I want to create an indie/casual gaming site |
Toasty
Replies: 2
Views: 16230
|
|
TL;DR, Yes you can.
It's a web server, you can make any kind of website on a web server. |
Topic: php ajax file uploader |
Toasty
Replies: 2
Views: 23599
|
|
The original file name is in $_FILES
<?php
$fileName = $_FILES['yourfieldname']['name'];
$extension = array_pop(explode('.',$fileName));
echo $extension;
|
Topic: New to php but keep getting Error 404 page |
Toasty
Replies: 1
Views: 22818
|
|
What did you create the file in?
If it is phpinfo.php.txt or otherwise not just phpinfo.php, then you'll get the 404. |
Topic: Changed logging behavior ::ffff: |
Toasty
Replies: 1
Views: 11752
|
|
That's IPv6 -- still an IP address, just a different version of it.
I forget what ffff is, ::1 is localhost, that may be as well, not sure. |
Topic: Benchmark of 4 different PHP Versions - and the winner is ? |
Toasty
Replies: 2
Views: 24509
|
|
Not sure if you're using the preconfigured PHP from Aprelium, or installing PHP from PHP, but if it is the latter, opcode caching is disabled by default in your PHP.INI -- enable that, and you'll see ... |
Topic: Pre-configured php doesnot work with Abyss Web Server X1 |
Toasty
Replies: 4
Views: 29685
|
|
raynet --
What you should do is:
- Stop Abyss
COPY your /php/ directory into a backup directory
- Install/unzip the new version of PHP into the /php/ directory
Then, go through your old a ... |
Topic: PHP File Size |
Toasty
Replies: 8
Views: 40937
|
|
Currently, it seems there is a 2GB cap on uploads, but there are several things that can interfere with that:
In your PHP.INI file:
upload_max_filesize
post_max_size
These should be the sam ... |
Topic: Problem with picture |
Toasty
Replies: 3
Views: 26276
|
|
Meant to include this:
http://www.robert-lerner.com/files/404.png |
Topic: Google Chrome downloading index files? |
Toasty
Replies: 4
Views: 28880
|
|
I suspect there is some strange interaction with AWS and caching headers, at least in 2.7. I often times see my CSS failing to load since AWS rejects returning the document when it feels the cache sho ... |
Topic: Problem with picture |
Toasty
Replies: 3
Views: 26276
|
|
Perhaps a late reply, but a reply nonetheless:
I did a scan of your site and found that "product-h-bg.gif" comes up with a 404. I also noticed you're on Win 32... So, go to the following ... |
Topic: Abyss and Fully Managed Web Hosting |
Toasty
Replies: 4
Views: 17417
|
|
I had started building one, and when I had an automated script kill and restart the process, it reset the Abyss.conf, losing all the settings.
Wasn't worth it. |
Topic: PHP 5.5 64bit supported by Abyss X2 |
Toasty
Replies: 9
Views: 35974
|
|
The web server shouldn't matter as long as your system supports the x64 architecture.
i.e. you can run an older version of Abyss that was only x32, and still run x64 PHP, just like you can run x64 ... |
Topic: Abyss and Caching |
Toasty
Replies: 3
Views: 15543
|
|
Thanks Aprelium.
When you do add E-Tag support, SHA1() wouldn't be a terrible idea for remote chance of collisions, I use MD5 in some of my scripts to automatically help with handling caching. I kn ... |
Topic: PHP Image Exploit |
Toasty
Replies: 4
Views: 18302
|
|
Rather, I'd drop all file extensions that have any PHP executable extensions on them (typically just .php, but some people do .php3, even .html. People who want to think they're security gurus but are ... |
Topic: Any old ports |
Toasty
Replies: 1
Views: 19432
|
|
Non-SSL HTTP traffic uses 80. 21 is FTP and not used by Abyss. |
Topic: Abyss and Caching |
Toasty
Replies: 3
Views: 15543
|
|
Hello Aprelium,
Does Abyss work with any cache headers, or can we configure the addition of such?
ETag, Expires, If-None-Match, If-Modified-Since, and so on?
I'm working on adding this functi ... |
Topic: Can the log file be configured in any way? |
Toasty
Replies: 4
Views: 17244
|
|
I expanded on ^ Lawerence's post for a different reply, so here it is:
Home > Server Configuration > Logging Parameters
Click "Add" for a new format
Name it
Add Param ... |
Topic: Log Format? |
Toasty
Replies: 2
Views: 13801
|
|
Home > Server Configuration > Logging Parameters
Click "Add" for a new format
Name it
Add Parameters as you see fit.
Hit Ok...
Go to Home > Configure (by your host ... |
Topic: Php problem |
Toasty
Replies: 1
Views: 18697
|
|
Comment out the basedir directive in your PHP.INI, try again. |
Topic: Friendly Reminder: PHP 5.4 |
Toasty
Replies: 3
Views: 25803
|
|
No sir, you are not. You can use future PHP zips w/o fear.
If nothing else, run the .reg with those files too, should maintain themselves. |
Topic: I keep getting these emails... |
Toasty
Replies: 13
Views: 31195
|
|
Modding code makes upgrading more difficult.
They should work on pruning bad users out of the database. Many people choose not to because a higher user count looks better.
One thing they should ... |
Topic: 500 Server Error |
Toasty
Replies: 5
Views: 28117
|
|
I've had similar issues. Apache does the same thing in many instances. Your best bet it to run it CLI, like this:
Start > Run > type "cmd"
c:\phppath\php c:\path\to\php.file
... |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
This isn't a battle of wits. You come across as if you have something to prove which leaves me wandering why you care so much about this thread and the image.
Derp.
In HD that image would be so da ... |
Topic: First Beta of Abyss Web Server 2.8 |
Toasty
Replies: 6
Views: 1423
|
|
Reverse proxy setup:
Laptop on Wireless running 2.7.9.1 X1
Server on Wired running 2.7.0.0 X2
Proxy forwarding for '\'
Laptop===80===Server
The response time was amazing, very fast, seaml ... |
Topic: First Beta of Abyss Web Server 2.8 |
Toasty
Replies: 6
Views: 1423
|
|
Really happy to see the progress on the server app. I will use this on my test box and will give feedback on it as I can.
The addition of SERVER_ADDR is great, I've wanted that for quite some time ... |
Topic: Error Pages |
Toasty
Replies: 17
Views: 34377
|
|
The rule redirects users who to go http://... to http://www...
http://dl.dropbox.com/u/18722727/Rewrite-Rule.gif
P.S. Can you remove mention of my domain, id rather not anyone know i use AWS as ... |
Topic: Friendly Reminder: PHP 5.4 |
Toasty
Replies: 3
Views: 25803
|
|
Anybody installing PHP 5.4 from the ZIP file on php.net (not the precompiled binary from Aprelium) will need to select one of the registry settings to import from inside of the ZIP archive. Otherwise, ... |
Topic: Business Class ISP |
Toasty
Replies: 1
Views: 20249
|
|
Does anybody have experience setting up 5 static IPs through a WRT54G to various servers? I haven't received my equipment yet, just wondering what I should be in for.
Thanks,
Toasty |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
I got a 500 error and refreshed when it came back up :( |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
Yes, I get that size for the image, and yes, it still has artifacts.
What kind of display are you using? What is the browser (exact version) that you are using?
I can see this on any LCD screen ... |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
Yes, I get that size for the image, and yes, it still has artifacts. It's cool though, if you'd rather attack your users than understand that they're trying to give creative criticism, then that's the ... |
Topic: Block Website Access |
Toasty
Replies: 5
Views: 27553
|
|
I'll write one for $100 USD |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
Also, you may say that's nit-picky, but people who spend all day developing and designing have trained eyes for that, and those are also the people in the market for this software. It's less noticeabl ... |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
It's not browser related. It's a downfall of using JPEG, which utilizes a lossy compression algorithm.
Read more about [url=http://en.wikipedia.org/wiki/Compression_artifact]compression artifacts, ... |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
Artifacts
http://i835.photobucket.com/albums/zz274/rlerner/abyss-poster-27-s.jpg |
Topic: Adding SVG Mime type to Abyss |
Toasty
Replies: 1
Views: 26960
|
|
The SVG MIME type isn't in Abyss by default. Here's how to add it so the browser will render it instead of doing a "force-download."
Log into Abyss
Click "Server configuration" ... |
Topic: Dead? |
Toasty
Replies: 25
Views: 56161
|
|
What happened to this forum? I haven't checked it in months, and I come back to (maybe) two interesting topics.
I've been a huge fan of, and continue to use, Abyss... But seeing these forums, and t ... |
Topic: PHP 5.3.9 |
Toasty
Replies: 13
Views: 44135
|
Forum: PHP Posted: Thu Feb 09, 2012 3:14 pm Subject: PHP 5.3.9 | |
|
You dont need a preconfigured package for Abyss Webserver.
- Stop your webserver
- download PHP from http://windows.php.net/downloads/releases/php-5.3.9-Win32-VC9-x86.zip
- rename the old PHP 5.3 ... |
Topic: Sending a variable to an exe file |
Toasty
Replies: 5
Views: 23708
|
|
Thanks for sharing, Weiss! |
Topic: Abyss Web Server + PHP + GD2 + SQlite == EasyAbyss |
Toasty
Replies: 22
Views: 109249
|
|
First off:
"Updating/Checking every 10 minutes."
You're going to DDOS yourself, and anybody on your shared connection. You'll probably get sued. I hope Aprelium included a CYA clause o ... |
Topic: Accessing mysql via dos |
Toasty
Replies: 9
Views: 51107
|
|
Try this too:
SELECT COUNT(*) FROM Users_Table_Here WHERE user_online_flag = '1';
Assuming you have a 0/1 flag for the online status, but more likely there will be a date that you'll use there ( ... |
Topic: Wordpress on abyss webserver X2 |
Toasty
Replies: 3
Views: 36075
|
|
Your best bet is to keep everything internal for a while until you learn more. PHP/MySQL can be a huge security problem if it's not configured (or used) correctly. Somebody who knows how to use it, ho ... |
|