Search…

X3 Photo Gallery Support Forums

Search…

Search found 12 matches

by McArrow
31 May 2011, 16:46
Forum: Русский форум X3
Topic: Многоязычный сайт на 2х доменах
Replies: 9
Views: 7629

Re: Многоязычный сайт на 2х доменах

Лучше заменить все на RewriteEngine on RewriteCond %{SERVER_NAME} site\.ru$ [NC] RewriteCond %{REQUEST_URI} ^/$ [NC] RewriteRule .* ?language=russian [QSA] RewriteCond %{SERVER_NAME} site\.com$ [NC] RewriteCond %{REQUEST_URI} ^/$ [NC] RewriteRule .* ?language=english [QSA] Хотя ошибка не от этого. Д...
by McArrow
31 May 2011, 06:22
Forum: Русский форум X3
Topic: Многоязычный сайт на 2х доменах
Replies: 9
Views: 7629

Re: Многоязычный сайт на 2х доменах

Вам необходимо изменить site.com и site.ru на ваши доменные имена. Кроме того, у вас на сервере должен быть установлен и включен mod_rewrite.
by McArrow
30 May 2011, 09:09
Forum: Русский форум X3
Topic: Многоязычный сайт на 2х доменах
Replies: 9
Views: 7629

Re: Многоязычный сайт на 2х доменах

Code
RewriteEngine on

RewriteCond %{SERVER_NAME} site\.ru$ [NC]
RewriteRule .* ?language=russian [QSA]

RewriteCond %{SERVER_NAME} site\.com$ [NC]
RewriteRule .* ?language=english [QSA]
by McArrow
01 Sep 2010, 17:16
Forum: Imagevue X2
Topic: How to hide the filename?
Replies: 29
Views: 28212

Sure. When I add an image to a folder (Upload File), the image arrives in the folder complete with filename inserted into the Title of the image. That fielname-title, of course, then appears with every image. So I have to delete the filename from the title of each image in a folder after uploading ...
by McArrow
19 Jul 2010, 17:06
Forum: Imagevue X2
Topic: image upload problem
Replies: 23
Views: 10859

i have this problem too!! can i have the older verson? (as like 2.1.6) If you have the same problem you need to change line 529 of /imagevue/include/ivFolder.class.php from while ($fc = glob($this->_path . $newName . '.*')) { to while ($fc = glob($this->_path . $newName . '.*') && count($fc)) { Alt...
by McArrow
30 Oct 2009, 13:30
Forum: Imagevue X2
Topic: Recreate Thumbnails from within another PHP-Application
Replies: 2
Views: 2913

Hmm, I don't recommend you to recreate all thumbnails in 1 process 'cause this will take a lot of resourses.

To recreate thumbnail for a given file you can use something like:
Code
$file = ivFSItem::create('/full/path/to/file.ext');
$file->generateThumb();
by McArrow
04 Aug 2009, 12:15
Forum: Imagevue X2
Topic: Pass admin login/password on browser url
Replies: 3
Views: 5604

As you must understand, it's unsecure to pass login and password through GET request ('cause in this case your credentials will be stored in browser history). And we don't recommend you to change sources of Imagevue because you'll have problems while upgrading to new versions. So the best solution f...
by McArrow
27 Jul 2009, 07:45
Forum: Imagevue V1
Topic: Error in apache log
Replies: 7
Views: 9666

it would be better to replace string
Code
error_reporting(E_ALL ^ E_NOTICE);
in imagevue/common.inc.php on line 11 with next
Code
error_reporting(E_ALL ^ E_NOTICE ^ 8192);
In this case you'll be able to found another bugs if they're still exists. This will be fixed in next release
by McArrow
10 Jul 2009, 13:11
Forum: Imagevue X2
Topic: Restricted Access for other Users other than Admin
Replies: 4
Views: 4747

When I create a new user with 'restricted' access allowing access to content folder and thus all sub folders, on login it comes up with error "you don't have access to this page" and ends up no-where. Yeah, it's a small bug. Just replace '/imagevue/index.php?c=user' with '/imagevue/index.php' in yo...
by McArrow
08 Jul 2009, 17:45
Forum: Imagevue X2
Topic: PLEASE HELP!
Replies: 6
Views: 4982

Of course you can upload new version without changing your image files. You just need to re-upload everything from package except content folder.
by McArrow
08 Jul 2009, 10:47
Forum: Imagevue X2
Topic: PLEASE HELP!
Replies: 6
Views: 4982

It seems that you've got an old version of X2. You need to install new one.

And of course you can pm ftp access to your server to pain and we will look deep into this
by McArrow
27 Jul 2008, 14:47
Forum: Imagevue X2
Topic: Use as text page ?? Hotspot module ?? What does it means ?
Replies: 2
Views: 4753

When the "Use as text page" checkbox checked you can use current folder as a text page. It means that when user comes to this folder from menu he will see only an HTML from description field, not a folder content. By using this feature you can create simple static HTML pages. Unfortunately, in curre...