Displaying 4 results from an estimated 4 matches for "magic_quotes_gpc".
2007 Jul 17
3
.htaccess problems..... Using Drupal
...+FollowSymLinks
# Customized error messages.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.
# PHP 4, Apache 1.
<IfModule mod_php4.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
</IfModule>
# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_sta...
2012 Apr 18
3
The requested URL was not found on this server
...DocumentRoot "/var/www/html"
Following is Virtual Virtual Host under "conf.d"
Alias /cacti /var/www/html/cacti/
<Directory /var/www/html/cacti/>
DirectoryIndex index.php
Options -Indexes
AllowOverride all
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc on
php_flag track_vars on
</Directory>
if i try browsing cacti, i can login without problem. But if i try to
follow other links on the page. For example i have clicked on Graphs icon.
i see the following error.
The requested URL /graph_view.php was not found on this server
where as thi...
2006 Feb 28
4
Off-Topic Mambo Vulnerabilities & Patches
On the Mambo CMS site there are vulnerabilities found. Whilst this is
not a CentOS problem, people rent/deploy servers (CentOS) on the net
with Mambo. A guy in one of the user forums on the net, had his Mambo
4.5.2 server hacked and they installed some interesting stuff in /tmp
. When a server is hacked it gives bad PR for the underlying OS.
<----announcement on
2006 Jan 31
19
Best Practices: Escaping text on input or output?
In web applications that have user generated content, it is clearly
necessary to provide some ability to ''escape'' user generated text to
avoid SQL injection, XSS, and other nasty attacks. The existing dogma
on this point seems to favor escaping text as it comes out of the
database, rather than doing it on the way in.
I''m not sure that I understand the logic behind