KnotBB

Full Version: Iphone X - Landscape mode bug
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
once I go in landscape mode and I click the navmenu Im unable to move it
Using safari
What kind of sociopath browses HF in landscape mode on mobile.

Anyways, tested on my Samsung Galaxy 8 On Chrome, works fine.
(02-20-2018, 03:02 PM)Maxim. Wrote: [ -> ]What kind of sociopath browses HF in landscape mode on mobile.

Anyways, tested on my Samsung Galaxy 8 On Chrome, works fine.

Not me just testing around.
(02-20-2018, 09:01 PM)Crystallize Wrote: [ -> ]
(02-20-2018, 03:02 PM)Maxim. Wrote: [ -> ]What kind of sociopath browses HF in landscape mode on mobile.

Anyways, tested on my Samsung Galaxy 8 On Chrome, works fine.

Not me just testing around.


Just kiddin' with you. Know you're just testing around. ;]

Sticky Bot

Hi, I'm Sticky Bot. The owner of this thread has purchased a Paid Sticky. KnotBB does not get involved in deals or deal disputes. We do not vouch for the product or the service offered by members. Please note that all deals are at your own risk. The sticky will expire on 04-16-2018. If you or a loved one are interested in buying a sticky please visit this page: Buy Sticky. For more information about Paid Stickies you can read our Help Doc.

Sticky Bot

Hi, I'm Sticky Bot. The owner of this thread has purchased a Paid Sticky. KnotBB does not get involved in deals or deal disputes. We do not vouch for the product or the service offered by members. Please note that all deals are at your own risk. The sticky will expire on 04-10-2018. If you or a loved one are interested in buying a sticky please visit this page: Buy Sticky. For more information about Paid Stickies you can read our Help Doc.

Sticky Bot

Hi, I'm Sticky Bot. The owner of this thread has purchased a Paid Sticky. KnotBB does not get involved in deals or deal disputes. We do not vouch for the product or the service offered by members. Please note that all deals are at your own risk. The sticky will expire on 04-17-2018. If you or a loved one are interested in buying a sticky please visit this page: Buy Sticky. For more information about Paid Stickies you can read our Help Doc.
(11-26-2018, 03:24 PM)Abruptum Wrote: [ -> ]First of the Line 41 is quite clear, you try to create a directory which allready exist.
you can check it with:
Code:
if (!file_exists($path)) {
    mkdir($path, 0700);
}
In line 141-142 you got a permission issue which may is a problem due the fact that you change "$title/$id.html" but you created the directory "$domain/$title"
so it must be "$domain/$title/$id.html".

I would suggest to not create html files, instead work with databases.

Had a play around with it and found out that it was actually a fucked up variable lol (hadn't set it properly in the html input field). this worked in the end

Code:
mkdir("$title");
chmod("$title", 0755);