3.1.x Extensions Database 3.1 / 3.2Puzzle

<span class="qte-attr qte_31_32-qte">3.1.x &amp; 3.2.x</span>
User avatar

Null
Users
Users
Posts: 125
Joined: 09 Oct 2015, 06:03
    Windows 7 Chrome

Re: Puzzle

Post by Null »

In github its said "pt-br Spanish translation" but should be "pt-br Portuguese-Brazil translation": Puzzle/language at master · dmzx/Puzzle · GitHub

User avatar

Sarr
Users
Users
Posts: 9
Joined: 30 Mar 2015, 01:35
    Windows 8.1 Firefox

Re: Puzzle

Post by Sarr »

Hello!

There is a problem with navigation buttons only in Puzzle Extension.
It destroys styling in Latte (Latte Red) style. Probably some error in Puzzle Ext, Sinkship is doing everything fine.
Can you check it please? Probably a quick fix, but I don't know where and what.
See it here:
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Polish Sword Coast Legends Portal: Sword Coast Legends
Sword Coast Legends PL Forums: Forum Sword Coast Legends
Sword Coast Legends Wiki PL: Wiki Sword Coast Legends PL

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 8 Firefox

Re: Puzzle

Post by dmzx »

Null wrote:In github its said "pt-br Spanish translation" but should be "pt-br Portuguese-Brazil translation": Puzzle/language at master · dmzx/Puzzle · GitHub
Changed :wink:

User avatar

nelflucifer
Users
Users
Posts: 70
Joined: 03 Jan 2016, 12:24
    Windows 7 Opera

Re: Puzzle

Post by nelflucifer »

Maybe off topic this question: I found for example 2-3 games from you or someone else how to make so that to remove them from the main panel and make everything in the drop down menu. drop down menu I have already tried it. But how to transfer installed games?! You can link to the topic where have all of the answers.. :wall: :sad:
Image
Learn to read people's thoughts, not forgetting about their.
The extension translate from English to Russian...
English Forums
Available 251 extension with translation into Russian language...

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Puzzle

Post by dmzx »

nelflucifer wrote: 10 Jan 2016, 20:55 Maybe off topic this question: I found for example 2-3 games from you or someone else how to make so that to remove them from the main panel and make everything in the drop down menu. drop down menu I have already tried it. But how to transfer installed games?! You can link to the topic where have all of the answers.. :wall: :sad:
Read from here Navbar

User avatar

nelflucifer
Users
Users
Posts: 70
Joined: 03 Jan 2016, 12:24
    Windows 7 Opera

Re: Puzzle

Post by nelflucifer »

Good Game!
ru.zip
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Solidjeuh
Donator
Donator
Posts: 348
Joined: 13 Dec 2014, 02:40
    Windows 10 Firefox

Re: Puzzle

Post by Solidjeuh »

I don't see the puzzle images..
Already tied to CMOD the images to 777
Turned adblocker off..
Don't know why the stay invisible
2016-01-19 19 08 58.png
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Forum voor NL Extensie vertalingen ---> https://www.supportforum.be
----------------------------------------------------------------------------

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Puzzle

Post by dmzx »

New version see first post

User avatar

Solidjeuh
Donator
Donator
Posts: 348
Joined: 13 Dec 2014, 02:40
    Windows 10 Firefox

Re: Puzzle

Post by Solidjeuh »

dmzx wrote: 19 Jan 2016, 21:23 New version see first post

Code: Select all

The puzzle image does not exist. Please inform the administrator and tell him following image name:
puzzel16.jpg
None of the puzzles can be found now :ninja:

And pic is uploades:
http://algemeenforum.net/ext/dmzx/puzzl ... zzel16.jpg

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Puzzle

Post by dmzx »

Can you change in puzzle.php
Find This may be a partial find and not the whole line

Code: Select all

if (file_exists($image_name))
Replace with Replace the preceding lines with the following

Code: Select all

if (file_exists($this->phpbb_root_path . $image_name))
And
Find This may be a partial find and not the whole line

Code: Select all

if (!file_exists($image_name))
Replace with Replace the preceding lines with the following

Code: Select all

if (!file_exists($this->phpbb_root_path . $image_name))

User avatar

Solidjeuh
Donator
Donator
Posts: 348
Joined: 13 Dec 2014, 02:40
    Windows 10 Firefox

Re: Puzzle

Post by Solidjeuh »

dmzx wrote: 19 Jan 2016, 21:51 Can you change in puzzle.php
Find This may be a partial find and not the whole line

Code: Select all

if (file_exists($image_name))
Replace with Replace the preceding lines with the following

Code: Select all

if (file_exists($this->phpbb_root_path . $image_name))
And
Find This may be a partial find and not the whole line

Code: Select all

if (!file_exists($image_name))
Replace with Replace the preceding lines with the following

Code: Select all

if (!file_exists($this->phpbb_root_path . $image_name))
Done, same problem

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Puzzle

Post by dmzx »

Change code back to original and comment out:

Code: Select all

if (!file_exists($image_name))
		{
			$redirect_url = $this->helper->route('dmzx_puzzle_controller');
			trigger_error(sprintf($this->user->lang['PUZZLE_IMAGE_MISSING'], $puzzle['image_name']) . sprintf('<br /><br />' . $this->user->lang['PUZZLE_BACKLINK'],'<a href="' . $redirect_url . '">', '</a>'));
		}

User avatar

Solidjeuh
Donator
Donator
Posts: 348
Joined: 13 Dec 2014, 02:40
    Windows 10 Firefox

Re: Puzzle

Post by Solidjeuh »

dmzx wrote: 19 Jan 2016, 22:17 Change code back to original and comment out:

Code: Select all

if (!file_exists($image_name))
		{
			$redirect_url = $this->helper->route('dmzx_puzzle_controller');
			trigger_error(sprintf($this->user->lang['PUZZLE_IMAGE_MISSING'], $puzzle['image_name']) . sprintf('<br /><br />' . $this->user->lang['PUZZLE_BACKLINK'],'<a href="' . $redirect_url . '">', '</a>'));
		}
Yess then it works

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6466
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Puzzle

Post by dmzx »

Still strange will look into it

User avatar

Helios
Users
Users
Posts: 14
Joined: 28 Sep 2015, 00:27
    Windows 7 Firefox

Re: Puzzle

Post by Helios »

Italian language
it.rar
don't work v.1.0.1 tested on 3.1.6

The puzzle image does not exist. Please inform the administrator and tell him following image name:
car.jpg
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

Post Reply Previous topicNext topic