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 ... 116
16
I had already tried as well, but there is little to no one who wanted to help. Therefore, I have stopped the work as well.
https://www.4homepages.de/forum/index.php?topic=33082.msg168296#msg168296

17
Templates & Styles (Requests & Discussions) / Re: New Bootstrap Theme
« on: July 31, 2021, 12:07:59 PM »
Great, I like it.
But unfortunately they let 4images die :/

18
Hi,

danke für die Rückmeldung. Wenn ich irgendwie helfen kann, sag Bescheid.

Grüße!

Wenn du etwas vom programmieren verstehst, würde das helfen. :)#
Aktuell bin ich noch an etwas anderem dran, aber die Arbeiten gehen hier bald weiter.

Great!! hope you can conclude this, if you need some testers pelase let me know
Can you possibly program?

Mods Fix
I saw that you fixed some mods. Do you have a general interest in reviving 4images?

19
Nice !

20
Grüße Dich,

es wird noch dauern, aber da ich es für mich selber so oder so umsetzen, werde ich dies auch veröffentlichen.

LG

21
[IN BEARBEITUNG] 4images (Refresh)

Ich habe mir gedacht, dass 4images undbedingt einen neuen Anstrich braucht.

Dazu gehört das responsive Design. Ich werde das Admin Control Panel (Backend), aber auch die Hauptseite (Frontend) mit einem neuen Aussehen ausstatten.

Auf einem kleinen Display wirken Webseiten zum Beispiel anders, als auf großen Bildschirmen und meistens ist die Benutzerfreundlichkeit (Usability) stark vermindert, wenn Websites nicht für mobile Geräte optimiert wurden. Responsive Webdesign passt sich flexibel an das jeweilige Endgerät an.

Fortan kann 4images auch bequem von unterwegs aus verwaltet werden.

Weitere Neuigkeiten folgen.

Beispiel: home.php

---

[IN PROCESSING] 4images (refresh)

I thought that 4images and absolutely needs a new coat of paint.

This includes the responsive design. I will give the admin control panel (backend), but also the main page (frontend) a new look.

On a small display, for example, websites look different than on large screens and usually the usability is greatly reduced if websites are not optimized for mobile devices. Responsive web design adapts flexibly to the respective end device.

From now on, 4images can also be managed comfortably on the road.

More news will follow.

Example: home.php


View Screen Capture

Mobile:

View Screen Capture

Categories/Kategorien

View Screen Capture


View Screen Capture

Edit Categories

View Screen Capture


View Screen Capture

22
Plugin image_group.php
search:
$root_path = (!eregi("\/plugins\/"$_SERVER['PHP_SELF'])) ? "./../" "./../../";
replace with
$root_path = (!preg_match("/plugins/i"$_SERVER['PHP_SELF'])) ? "./../" "./../../";

php 7.2 ready

23
Installation, Update & Configuration / Re: Uploading MP4 problem
« on: September 29, 2019, 02:50:48 PM »
The error message shows you that your mp4 file has the following mime-type:

Code: [Select]
application/octet-stream
You need this in upload_definitions.php

Code: [Select]
$mime_type_match['mp4'] = array("video/mp4", "application/octet-stream");
Jan

$mime_type_match
['mp4'] = array("video/mp4""video/mp""application/octet-stream");

24
Discussion & Troubleshooting / Re: Gallery Update
« on: September 16, 2019, 05:35:18 PM »
Nobody knows yet.
If it is up to me, there would be another update.
But I don't have the right to do so and the creators are still not sure if they want to make the project opensource or not.

25
Dies wäre auch zu empfehlen: https://softemblems.com/prodigy-4images-theme/

26
Er findet die Tabelle in der Datenbank nicht

27
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.

28
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);
                }
            }
        }
    }

30
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

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