Jump to content
Bicrypto v3.7.0 + All Plugins ×

Reservo V1.8 - image hosting script

   (1 review)

1 Screenshot

About This File

With support for automatic thumbnails & image resizing in over 200 image formats, robust privacy options, secure image manager, external storage a feature rich admin area and free migration scripts, Reservo really does tick every box.

Multi Image Uploading

Automatic thumbnail previews, transfer speed and time remaining. The uploader handles large uploads in a breeze and doesn't rely on Flash, so it works on all devices.

Fast Image Manager

Slick, modern & fast image manager. Built from the ground up, it supports multiple level albums, passwords and privacy options.

Earn Money

Choose to run a premium image hosting service like Flickr. Earn money from advertising or by selling paid account upgrades with additional storage.

Feature Rich Admin Area

Have full control over your website! Manage images, user accounts, track payments, website settings, themes, plugins, translations, all in your dedicated admin area.

Safe & Secure

Built on code which is tested in over 3,000 websites and tested for XSS & SQL injection on every release, you can be sure your website is secure from external attack.

100% Source Supplied

We supply you with 100% of the source code, not 1 part of it is encoded! Make all the changes you need to the styling & core functions without being limited.

Reservo IndexReservo Image ManagerReservo Profile PageReservo Multi Image UploadReservo Login PageImage Manager SettingsImage Manager Image PreviewReservo Extend AccountResponsive Admin DesktopReservo Theme Framework

 

  • Thanks 2


User Feedback

You may only provide a review once you have downloaded the file.


calemxs

  

Since `get_magic_quotes_gpc()` has been removed from PHP 7.4 onwards, the code you posted will throw a fatal error if run on those versions. You can safely remove this block of code, as magic quotes are a feature that has been deprecated and removed entirely from modern versions of PHP.

If you're maintaining backward compatibility with older versions of PHP that still have magic quotes enabled, you could wrap this code in a version check. However, considering that PHP 7.3 (the last version to contain magic quotes) has reached its end of life, it would be best to update your code to no longer rely on this feature.

Here's what you can do:

Simply remove the entire block since magic quotes are no longer relevant:

```php
<?php
// Code related to magic quotes removed
```

Or, if you really need to maintain backward compatibility:

```php
<?php

if (version_compare(PHP_VERSION, '7.4', '<')) {
    // *** disabling magic quotes at runtime
    if (get_magic_quotes_gpc())
    {
        function stripslashes_gpc(&$value)
        {
            $value = stripslashes($value);
        }

        array_walk_recursive($_GET, 'stripslashes_gpc');
        array_walk_recursive($_POST, 'stripslashes_gpc');
        array_walk_recursive($_COOKIE, 'stripslashes_gpc');
        array_walk_recursive($_REQUEST, 'stripslashes_gpc');
    }
}
```

The `version_compare` function checks the PHP version, so the code inside the block will only be executed for versions earlier than 7.4.

Again, I recommend the first option, as maintaining code for versions of PHP that are no longer supported could lead to other security and compatibility issues. If you go with the second option, please make sure to test thoroughly on all supported PHP versions to ensure there are no issues.

Link to review
×
×
  • Create New...