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

Pages: [1] 2 3 4
1
Hello. After moving the page to another server, there was a problem with the search on the category page. I get the message: "CSRF check failed". On other subpages, the search works ok. My page is: https://tiny.pl/tqkkq - I am asking you for help in solving this problem.

2
Hi. Has anyone modified this mod and it works correctly on version 1.7.13? I would like to change the links to SEO Friendly however this mod contains many bugs.

3
UTF-8 encoding problem with searching for keywords (Polish characters)

Hello. I changed the page coding to utf-8 - everything on the page is displayed correctly. However, the problem arises when searching for keywords with Polish characters (ą, ę, ś, ć, etc.). Nothing is found then, although the keywords under the wallpaper are displayed correctly.

In the file includes / db_mysql.php I added:
mysql_query("SET CHARSET utf8");
mysql_query("SET NAMES `utf8` COLLATE `utf8_polish_ci`");


in the file lang / polish / main.php I changed the coding:
$lang['charset'] = "charset=UTF-8";

Html files encoded in UTF-8 (without BOM)

Please help.

4
Hello. I would like the full picture to open in a new tab and not in a new window. How to do it?

I managed to get this effect by changing the code in details.html to:

Code: [Select]
{if media_src_big}
<script type="text/javascript">
function OpenInNewTab(big) {
  var url="details.php?image_id={image_id2}&big=1";
  var win = window.open(url, '_blank');
  win.focus();
}
</script>
<a href="javascript:OpenInNewTab('big')">
{endif media_src_big}{image}{if media_src_big}</a>{endif media_src_big}

Maybe someone will also benefit from this solution. Regards.

5
With tens of thousands of photos it is unfortunately very time-consuming.
It is not possible to put this information in the admin panel for sure?

6
Hello. I would like to see the width and height of the original picture in the admin panel during wholesale photo editing. How to do it?

7
Hello. I would like the full picture to open in a new tab and not in a new window. How to do it?

8
Discussion & Troubleshooting / Re: ERR_TOO_MANY_REDIRECTS categories
« on: December 09, 2017, 09:40:22 PM »
I had badly written redirects from category to category.

9
Discussion & Troubleshooting / Re: ERR_TOO_MANY_REDIRECTS categories
« on: December 09, 2017, 05:51:46 PM »
Thanks for the help. However, this was a bug in the .htaccess file. The topic can be closed.

10
Discussion & Troubleshooting / ERR_TOO_MANY_REDIRECTS categories
« on: December 09, 2017, 04:07:13 PM »
Hello. I have a problem. On the website after clicking on each category I get the error:

ERR_TOO_MANY_REDIRECTS

All categories are looped to one address: /categories.php?cat_id=745

Please help.

11
Thanks. I look forward to the update :)

12
Logon process runs ok, but after all I am not physically logged on my website.

After clicking on "facebook login" logs me on www.facebook.com

While on my website looks like this:



At http://www.budduke.com/ so it looks after login:


13
Hello. I'm sorry for my english. I write using google translator.

Mod recently stopped working properly. After logging in using facebook still get a box to enter a user name, password, etc. and the "facebook login". When you click on the "facebook login" appears for a brief moment popup and disappear.

ps. When you click on my website on the "facebook login" logs me only on facebook.com

budduke on http://www.budduke.com/ is exactly the same situation.

Please help.

14
How to make a 301 redirect in .htaccess old addresses to the new?

example:
old: /categories.php?cat_id=1
new: /cat-test-1.htm

old: /details.php?image_id=1
new: /img-test-1.htm

Please help.


I was able to do so far "incomplete" 301 redirect in PHP. The file categories.php added at the beginning:

if (strpos($_SERVER['REQUEST_URI'], 'cat_id') !== FALSE) { 
header('HTTP/1.1 301 Moved Permanently');
header('Location: cat-'.$_GET['cat_name'].'-'.$_GET['cat_id'].'.htm');
exit;
}


But I do not know how to download the MYSQL database category name ['cat_name'] - Help

Pages: [1] 2 3 4