| bio | website | lekensteyn.nl |
|---|---|---|
| location | Netherlands | |
| age | 19 | |
| visits | member for | 2 years, 1 month |
| seen | May 13 at 21:07 | |
| stats | profile views | 45 |
Former Kubuntu desktop user, now using Arch Linux. Open-source enthusiast, programming in JS, PHP, C and more.
Currently working on Bumblebee Project which provides support for Nvidia Optimus hardware on GNU/Linux.
|
Aug 15 |
comment |
Tracking down memory issues affecting a website @Anonymous From wiki.nginx.org/Faq: How do you pronounce "Nginx"? The correct pronunciation sounds like: "engine-ex". (Next question: "What does that mean?" - We don't know, exactly.) |
|
Jun 28 |
comment |
404 crawl error for mailto:info@mydoamin.co.uk in google webmaster I suggest to use <a href="mailto:info@example.com">info@example.com</a>. mailto:info@example.com is not a valid e-mail address, mailto: is the protocol part. |
|
Jan 8 |
comment |
.in Domains for less then $2 You're expecting a domain name at a reliable host for the price of a beer? Dream on. |
|
Dec 31 |
comment |
Redirecting not working properly in Firefox 9 (or any older version for that matter) @rlesko See updated answer. |
|
Dec 1 |
comment |
What happened to HTML table tags? @Misha You're linking a horrible source, see w3fools.com |
|
Jul 6 |
comment |
I need a quality linux UK based webhost The next time, ask for an offer on webhostingtalk.com, this is not a shopping site. |
|
Jul 2 |
comment |
PHP permissions umad? 655 = read+write for owner, read+execute for others. Bad Idea(tm) Whether the files are owned by apache or not depends on the purpose of the files. For a static website, it's better that the files are not writable to avoid attacks in case a hole is found in the code. |
|
Jul 2 |
comment |
PHP permissions You need to provide more details, how are you uploading your files? (SSH/SFTP, FTP, controlpanel?, ...) You mentioned ownership, do you have root access to the box? What user is Apache running? If possible, what distro are you using? See also webmasters.stackexchange.com/q/13658/6597 |
|
Jun 11 |
comment |
When I am root, “mysql” connects without a password, even though I've set one Cross-post: serverfault.com/q/279411/51929 |
|
May 25 |
comment |
Things we can do with VPS Packages Managed or unmanaged? If unmanaged, be sure to do some research first. You won't be the first who think that firewalls are superfluous and soon rooted afterwards. |
|
May 16 |
comment |
What is the best free hosting provider for my site?000webhost shuts your website down periodically to check for "potentially unwanted content" (for them), not recommended. |
|
May 16 |
comment |
When creating a website, what permissions and directory structure? Giving www-data rwx on directories allows www-data to read, write and descend into directories. If www-data is the owner, it'll be able to change the file permissions as well. If www-data does not need write access, you'd better revoke it to r-x (principle of least privilege). Processes run under an user which are a member of one ore more groups. If a file is not owned by the user of that process or if the process user is not a member of the group of the file, it'll get the permissions of "Other" (a.k.a. "world"). |
|
May 15 |
comment |
Can PHP Site be hosted on Windows Hosting? Not to forget that windows uses \ as path separator which is an escape character in PHP. |
|
May 12 |
comment |
When creating a website, what permissions and directory structure? @Dan Simmons: CMS'es (and PHP scripts) write to the directories as www-data, the files will be owned by www-data with group www-data (since the process runs under that group). Your SSH user will create files/directories owned by your_ssh_user_here. Without the setgid bit, these files will have the group your_ssh_user_here. With no read permissions for the other, PHP and nginx won't be able to access the files/directories. The setgid bit is inherited by the directories beneath (but can be removed). |
|
May 12 |
comment |
When creating a website, what permissions and directory structure? Please provide more details: will you host more websites on a server? How are you uploading files? |
|
Apr 7 |
comment |
Multiple domain names Where is the question? |
|
Apr 6 |
comment |
Site on 2 hosts It's called load balancing. |