3.2 & 3.3 Extensions Database 3.2 / 3.3Image Upload

<span class="qte-attr qte_32_33-qte">3.2.x & 3.3.x</span>
User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6483
Joined: 13 Jan 2014, 21:45
    Windows 10 Chrome

Re: Image Upload

Post by dmzx »

First post updated.

User avatar

Puchahawa
Users
Users
Posts: 193
Joined: 20 Jun 2015, 17:58
    Windows 7 Chrome

Re: Image Upload

Post by Puchahawa »

Nicely done on the multiple delete and sort options DM! :tumbsyes: :tumbsyes: :thankyou: :beer2:


DKBjorn
Translators
Translators
Posts: 27
Joined: 11 Oct 2015, 22:24
    Windows 10 Chrome

Re: Image Upload

Post by DKBjorn »

I just installed this extension for first time, use phpbb3.2
I have no submit button... anyone have a little hint for fix.....?

User avatar

martin
Admin
Admin
Posts: 5119
Joined: 06 Apr 2014, 16:12
    Ubuntu Chrome

Re: Image Upload

Post by martin »

Set group permissions :thumbup: admins can use with out setting perms but check it any way.

just a thought are you using a theme other than prosilver and where is it you dont see the button ?

index page will be in the navbar and posting pages there will be a inline button (i get the feeling your not using prosilver)

Edit i see your using prosilver can you pm me a test account pls
Image


DKBjorn
Translators
Translators
Posts: 27
Joined: 11 Oct 2015, 22:24
    Windows 10 Chrome

Re: Image Upload

Post by DKBjorn »

martin wrote: 09 Feb 2017, 19:01 set group permissions :thumbup: admins can use with out setting perms but check it any way.

just a thought are you using a theme other than prosilver and where is it you dont see the button ?

index page will be in the navbar and posting pages there will be a inline button (i get the feeling your not using prosilver)

Edit i see your using prosilver can you pm me a test account pls
i have sent you a PM.. with login details.... im in chat on my site.......

User avatar

martin
Admin
Admin
Posts: 5119
Joined: 06 Apr 2014, 16:12
    Ubuntu Chrome

Re: Image Upload

Post by martin »

Will post a fix for you and others in this topic :whistl: dodgy dutch coding of forum creator :rolling:


DKBjorn
Translators
Translators
Posts: 27
Joined: 11 Oct 2015, 22:24
    Windows 10 Chrome

Re: Image Upload

Post by DKBjorn »

martin wrote: 09 Feb 2017, 20:47 Will post a fix for you and others in this topic :whistl: dodgy dutch coding of forum creator :rolling:
Many MAny Thx.....

User avatar

Puchahawa
Users
Users
Posts: 193
Joined: 20 Jun 2015, 17:58
    Windows 7 Chrome

Re: Image Upload

Post by Puchahawa »

Hey guys, what would it take to change it so a mbr adding an image is put in the users log instead of the admin log? Kind of like to have the admin log be more along the lines of ext updates and board mngt stuff. Or maybe an option to not have images logged at all. They show on the extensions config page so not sure I need to know about it on a log. Just askin. :lol:

User avatar

Scanialady
Users
Users
Posts: 310
Joined: 06 Apr 2015, 18:04
    Windows 10 Chrome

Re: Image Upload

Post by Scanialady »

I tested it now and it is very useful! Thank you for this great extension.

I notice some problems with styling. If you use e.g. black or dark coloured styles it overwrites your colours.css for .panel, h2 and fieldset - you can not read the codes. I am not a styler, so I am trying and trying and can not find the right css. Is it possible to use other not standard classes for this extension? Or to change the standard classes to better work with light and dark styles inheriting the colour sets?

panel colours are e.g. correct
img-panel-orig.gif
but in image upload - using .panel bg2-
img-upload-black.gif
img-panel-orig.gif
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
If you want to get German translations for extensions: ask me.

User avatar

martin
Admin
Admin
Posts: 5119
Joined: 06 Apr 2014, 16:12
    Ubuntu Chrome

Re: Image Upload

Post by martin »

It's made for prosilver (light colour) so yes when on darker boards it prob will not look so nice if you get stuck pm me a test account and one that can use the uploader and il post new css for dark styles.

Or maybe a link to your style and il do it on localhost.

Hows this ?
1.png
This will give you black text in the input box's
css for the ext

Code: Select all

.codes {
    display: block;
    width: 100%;
    overflow: scroll;
    white-space: nowrap;
    height: 2.5em;
    font-size: 100%;
    color: #ECF1F3;
    border: 1px solid #000;
}
#codes input{
	width: 99%;
}
.icon-upload { 
	background-image: url("./images/icon_upload.png"); 
}
#upload {
	max-width: 100%;
	height: auto;
}
#showdiv {
    text-align: center;
}
#codehtml {
    font-weight: bold;
}

input {
    font-weight: normal;
    vertical-align: middle;
    padding: 0 3px;
    font-size: 1em;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #000000;
}
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Scanialady
Users
Users
Posts: 310
Joined: 06 Apr 2015, 18:04
    Windows 10 Chrome

Re: Image Upload

Post by Scanialady »

Yes, I get this problem with a lot of your extensions :rolling: All fixed to light styles - not good. Some people like black styles.

Ok - I was successful here with:

Code: Select all

.codes {
    display: block;
    width: 100%;
    overflow: scroll;
    white-space: nowrap;
    height: 2.5em;
    font-size: 100%;
    color: #080808;
    border: 1px solid #000;
}
#codes input{
	color: #000000;
	width: 99%;
}
.icon-upload { 
	background-image: url("./images/icon_upload.png"); 
}
#upload {
	max-width: 100%;
	height: auto;
}
#showdiv {
    text-align: center;
}
#codehtml {
    font-weight: bold;
}

Now I am messing around with Navbar... the same problem - and it does not have the same size as the other dropdowns... :wall:

Thank you, martin.

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6483
Joined: 13 Jan 2014, 21:45
    Windows 10 Chrome

Re: Image Upload

Post by dmzx »

I do the light style Martin is bit darker...

User avatar

martin
Admin
Admin
Posts: 5119
Joined: 06 Apr 2014, 16:12
    Ubuntu Chrome

Re: Image Upload

Post by martin »

Can you post a link to your theme ?

User avatar

killfrenzy
Users
Users
Posts: 118
Joined: 06 Feb 2016, 19:22
    Windows 7 Firefox

Re: Image Upload

Post by killfrenzy »

I have problem with image after upload it doesn't show only blank image?
Compilation of Android Roms, Recoverys, Apps, Games and Tricks
Visit my blog http://androidcribs.com
Androidcribs.com
Androidcribs
Image

User avatar

killfrenzy
Users
Users
Posts: 118
Joined: 06 Feb 2016, 19:22
    Windows 7 Firefox

Re: Image Upload

Post by killfrenzy »

Image

Post Reply Previous topicNext topic