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 - Warrior

Pages: [1] 2 3 4 5
1
I know this is a rather old MOD, but believe it or not, it still  works on v.1.8 (which works in this PHP7+ world)!

I did notice something though due to a change I made on the general usage of my Gallery - I normally do NOT allow BB code in the comments, so this issue never showed up before. I turned them on and discovered that this code from this MOD was wiping out the text for Description and Comments -

From includes/Functions:
Find:
Code: [Select]
    $text = preg_replace($search_array, $replace_array, $text);
Insert above:

Code: [Select]
/*
  MOD MEDIA SITES
  BEGIN INSERT
*/
    $text = media_sites_bbcode($text);
/*
  MOD MEDIA SITES
  END INSERT
*/
I removed that code and all the description and comments text came back. It's an optional step in the MOD, so it's not a big deal as far as the MOD goes.

2
I ran into a similar problem when I changed servers. Some servers will NOT let you use email addresses that are not of the domain they are hosting, ie I could not use a yahoo email, but could use my domain email address, and that solved the problem.

3
Outstanding! Works on 1.8.

Spoke too soon.

The wrong file formats are shown on the Edit Image page, and when I tried a demo as a regular user to update the image - It allowed the wrong file extension to be uploaded (one of the ones that was shown but wasn't suppose to be shown). I then modified again to re-upload the original image, and it did NOT update. Nothing got uploaded.


4
Feedback & Suggestions / Re: html in Bildname erlauben
« on: October 16, 2017, 07:47:44 PM »
I think he wants to know how to allow HTML in the Image Name block on the Upload/submit form for adding images.

5
To add the "s" in the https for youtube, I just copied everything for the regular youtube coding, adding the "s". This includes making a new template, etc. Works like a charm :)

6
Excellent on that comments e-mailer script. I'd been wanting to add that in but never got around to it. Much thanks!

7
At the bottom of the very first post are two attachments. Did you get those?

8
Looks like your DataBase doesn't have the i.image_town column/field, and that is NOT a part of this MOD.

10
Yes its diffrent thing, but you create this mod you better know where and how to add WYSIWYG editor in this mode. Once i tried to change 4images for article but mod add WYSIWYG editor in user section not in admin section for add article etc. People who are not coder can not do this. A light WYSIWYG editor will be good enough
Things like that (added-n MODS to this MOD) can be added in the comments, not as a part of the MOD itself. This MOD is for the basic 4images. What I mean by this, for example, is I have also modified V@no's Comments MOD to work with the comments for the articles. But that isn't a part of this MOD's main features. The same would apply to WYSWYG editor.

At least tags generate more links to index in search engine if have different title and description. I don't know if it bad or good for site. Some SEO expert can guide in this matter.
Which is why I posted about some help in that regard LOL

11
Few suggestions

1. Snippet Text also show on main article when click read more. It should not included in main article.
2. Its better if Snippet extract from main article (Secondary Text), top few lines.

The snippet is a part of the over-all article. If you want to eliminate it from the main article, then you just remove the snippet portion of the template for article. Having said that, I have made a slight modification for a character count that shows on the thumb on the home page and the categories page. See below this.

3. When add article Secondary Text for admin and Article Words for user must use WYSIWYG editor instead plain editor.

The basic 4images doesn't have that installed. That is a different MOD.

3. keywords or tags section absent for articles.

As I said in the initial posting, which has to do with the keywords/tags-
Quote
I also request that someone can make this Searchable.

And thanks for checking it out.

These two files will be replaced into the zip, so anyone downloading AFTER this posting date need NOT do these steps.

Open includes/article_functions.php

Find:
"snippet" => $snippet,

Add below:
    "thumb_text"  => (!empty($article_row['snippet'])) ? format_text(((strlen($article_row['snippet']) > 400) ? substr($article_row['snippet'], 0350)."..." $article_row['snippet']), 101) : REPLACE_EMPTY,

Adjust the numbers to fit how many characters you want to show on the front page before the read more kicks in.

Open templates (all versions of your templates)/article_nail_bit.html
Find:
{snippet}

replace with:
{thumb_text}

12
Mods & Plugins (Releases & Support) / Re: [Mod] Multiupload V.3.1.1
« on: May 14, 2013, 07:29:02 AM »
Noted a couple problems with that other version. At least one of those problems can be solved with this MOD. However... this one doesn't have external URL, so it won't work with the Media Sites MOD either :( ( http://www.4homepages.de/forum/index.php?topic=24054.0 )

Any chance it can be adjusted to work with that MOD?

13
Does this work with V@no's "Big" folder MOD? ( http://www.4homepages.de/forum/index.php?topic=7700.msg22313#msg22313 )

Just noticed that it doesn't have external URL, so it won't work with the Media Sites MOD either :( ( http://www.4homepages.de/forum/index.php?topic=24054.0 )

Any chance these could be modified to work with both of those MODS?

14
Mods & Plugins (Releases & Support) / Re: [Mod] Multiupload V.3.1.1
« on: May 13, 2013, 06:25:45 PM »
Ah. Cool :)

15
Mods & Plugins (Releases & Support) / Re: [Mod] Multiupload V.3.1.1
« on: May 13, 2013, 09:00:08 AM »
Installed the MOD and got these errors:

Notice: Undefined index: thumb_file_1 in /home/***/public_html/4images/member_multi_upload.php on line 363

Notice: Undefined index: image_name_1 in /home/***/public_html/4images/member_multi_upload.php on line 364

Notice: Undefined index: image_description_1 in /home/***/public_html/4images/member_multi_upload.php on line 365

Notice: Undefined index: image_keywords_1 in /home/***/public_html/4images/member_multi_upload.php on line 366

Notice: Undefined variable: remote_media_file in /home/***/public_html/4images/member_multi_upload.php on line 389

Notice: Undefined variable: remote_thumb_file in /home/***/public_html/4images/member_multi_upload.php on line 409

Pages: [1] 2 3 4 5