Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Sunny C.

Pages: 1 2 [3] 4 5 6 7 ... 116
31
This is due to the db_mysql.php file.
In the appendix you can find the right one.
Replace your includes/db_mysql.php with the one from my attachment.

32
For PHP/*

    
if (@is_dir("plugins")) {
        
show_nav_header("PlugIns");
        
$fileList glob('./plugins/*.php');
        
sort($fileList);
        foreach (
$fileList as $filename) {
            
//Use the is_file function to make sure that it is not a directory.
            
if (is_file($filename)) {
                
$plugin_file    file($filename);
                
$plugin_file[0] = trim($plugin_file[0]);
                if (
preg_match("/PLUGIN_TITLE:(.+)/"$plugin_file[0], $regs)) {
                    
show_nav_option(trim($regs[1]), $filename);
                } else {
                    
show_nav_option($filename$filename);
                }
            }
        }
    }

34
Open your index.php

Search <?php
add after
ini_set('display_errors'1);
ini_set('display_startup_errors'1);
error_reporting(E_ALL);

Open your Site

35
So it's not about an installation?
You installed 4images some time ago?
Which version are you currently using?

36
Yes, 4images also runs under 7.3.
What do you get for error messages?

Take a look here:
https://www.4homepages.de/forum/index.php?topic=31932.msg168211#msg168211

37
4images is dead...

But....

search in install.php
function addslashes_array($array) {
  foreach (
$array as $key => $val) {
    
$array[$key] = (is_array($val)) ? addslashes_array($val) : addslashes($val);
  }
  return 
$array;
}


add after

function safe_htmlspecialchars($chars) {
  
// Translate all non-unicode entities
  
$chars preg_replace(
    
'/&(?!(#[0-9]+|[a-z]+);)/si',
    
'&amp;',
    
$chars
  
);

  
$chars str_replace(">""&gt;",   $chars);
  
$chars str_replace("<""&lt;",   $chars);
  
$chars str_replace('"'"&quot;"$chars);
  return 
$chars;
}


LG

38
Mods & Plugins (Requests & Discussions) / Re: Frage zu Vers. 1.8
« on: August 01, 2018, 12:24:51 PM »
@Norbi,

es wird bald ein Community-Patch und ein Pluginsystem für 4images relesed werden. Ein Datum kann bisher nicht genannt werden.

39
Chit Chat / Re: DSGVO
« on: June 09, 2018, 02:08:01 PM »
Grüße Dich,

mir tun die User Leid, die dadurch Schwierigkeiten bekommen.
Es musss ebenso eine Export-Funktion geben, im ACP und im Frontend, damit der User seine Daten herunterladen kann.
Auch muss bei der Registrierung das Alter abgefragt werden und einiges mehr.

Ich denke aber, dass bald dafür etwas kommt.

40
Chit Chat / Re: DSGVO
« on: June 06, 2018, 03:52:48 PM »
Scheint hier sehr ernst genommen zu werden...

41
Chit Chat / DSGVO
« on: May 28, 2018, 01:06:32 AM »
Wie steht es denn um die DSGVO? Ein sehr wichtiges Thema derzeit.

45
Mods & Plugins (Releases & Support) / Re: [Mod] Multiupload with jQuery
« on: December 10, 2016, 12:24:38 PM »
Ich würde spontan behaupten, das due die files aus der "multi.zip" verwendest d.h. ich würde die empfehlen die aktuelle version zu laden: http://www.uploadify.com/download/
Du ersetzt dann deine "jquery.uploadify", "jquery.uploadify.min", "uploadify.swf" mit den neuen.
Ausserdem auch das aktuelle jQuery nutzen.

Pages: 1 2 [3] 4 5 6 7 ... 116