Support Forums | Demo Gallery [1.x] [2.x] | Downloads | News | Site Map ]
Nuked Gallery
  Create a FREE account or Login   As a guest, you don't have access to our FULL navigation system.
 Forum FAQForum FAQ   StatisticsStatistics   SearchSearch   UsergroupsUsergroups   FavoritesFavorites  

Error: Sorry, such file doesn't exist...
Goto page 1, 2  Next
 
Post new topic   Reply to topic    NukedGallery.net Forum Index » PHP-Nuke Integration » Gallery 1 Integration View previous topicPrinter friendly versionView next topic
Author Message
wisky

Beginner
Beginner


Joined: Aug 17, 2003
Posts: 3

PostPosted: Tue Aug 19, 2003 3:33 pm    Post subject: Error: Sorry, such file doesn't exist... Reply with quote

The integration of Gallery and Nuke seems to work well. I see the thumbnails of an album and a photo in the index page, however when I click on an album (the newAlbums block) I get the message 'Sorry, such file doesn't exist..." (URL: http://dell.schimmel.ws/nuke/html/modul ... album.php)

Same problem exits with a click on a photo (random block).

Please help.

----
Give us your Gallery/webserver information to get a faster answer.
Get this information from the PHP diagnostic (in the configuration wizard).
Gallery URL (optional but very useful): (local)
Gallery version: 1.3.4pl1
Apache version: 2.0.40
PHP version (don't just say PHP 4, please): 4.2.2
Graphics Toolkit: ImageClick
Operating system: Linux
Web browser/version (if applicable): IE6 / Mozilla
Back to top
Offline View user's profile Send private message
AdBot
   Post subject: Error: Sorry, such file doesn't exist...  

Back to top
slackbladder

Moderator
Moderator


Joined: Mar 29, 2003
Posts: 1038
Location: Cambs,UK

PostPosted: Tue Aug 19, 2003 3:39 pm    Post subject: Reply with quote

Hi,

Link to your site didn't work when I tried (server down?)

Can you post the top lines of both (new albums, random) of your blocks (config lines)?
Back to top
Offline View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
slackbladder

Moderator
Moderator


Joined: Mar 29, 2003
Posts: 1038
Location: Cambs,UK

PostPosted: Tue Aug 19, 2003 3:42 pm    Post subject: Reply with quote

AHH found it @

http://www.schimmel.ws/nuke/html/module ... _album.php

no 'dell' at the front.

Is this the right place?

Also GALLERY isn't active.
Back to top
Offline View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
wschim

Beginner
Beginner


Joined: Aug 19, 2003
Posts: 1

PostPosted: Tue Aug 19, 2003 3:55 pm    Post subject: Reply with quote

It is the correct URL, but from the inside (after the firewall) I have to use 'dell' instead of 'www' ... However be aware that the outside connection to this server can be down form time-to-time.

header of albums is:
/* CHANGE THESE VARIABLES */
$GALLERY_BASEDIR = "/var/www/html/gallery/";
define(WEB_BASE_ADDR,"http://dell.schimmel.ws/nuke/html/");
define(GALLERY_NAME,"Foto album");
define(USE_THUMBS,1); // Set to 1 to show thumbnails, 0 to just list albums.
define(HOROZONTAL,0); //Set to 1 to list horozontally, 0 for vertically. If USE_THUMBS is 0,
//this is ignored, and albums will be listed vertically.
define(ALBUM_DIRECTORY,"/var/www/html/albums/");
define(MAX_NEW_ALBUMS,1); // Set this to the number of albums you want displayed.
define(PIC_SCALE,0); // Leave at 0 to use the Gallery default; or set to the width you want thumbnails
Back to top
Offline View user's profile Send private message
slackbladder

Moderator
Moderator


Joined: Mar 29, 2003
Posts: 1038
Location: Cambs,UK

PostPosted: Tue Aug 19, 2003 3:59 pm    Post subject: Reply with quote

define(GALLERY_NAME,"Foto album");

Needs to be

define(GALLERY_NAME,"gallery");

(still need to ACTIVATE the module (GALLERY) or we can't see if it works)
Back to top
Offline View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
slackbladder

Moderator
Moderator


Joined: Mar 29, 2003
Posts: 1038
Location: Cambs,UK

PostPosted: Tue Aug 19, 2003 4:09 pm    Post subject: Reply with quote

Also for GALLERY to work with NUKE it needs to be installed in to

http://dell.schimmel.ws/nuke/html/modules/gallery/

currently - its here

http://dell.schimmel.ws/gallery/
Back to top
Offline View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
wisky

Beginner
Beginner


Joined: Aug 17, 2003
Posts: 3

PostPosted: Wed Aug 20, 2003 1:41 pm    Post subject: Reply with quote

Thanks for the help so far. I moved the gallery files (and edited the config), activate the module in Nuke. However I still get errors. I also changed the URL and opened the firewall permanently. So you should be able to visit the gallery and nuke at: http://www.schimmel.ws/nuke/html/

P.S. I also changed the name of the galley in 'gallery'", however the real gallery name is actually "Foto album" (see: http://www.schimmel.ws/nuke/html/module ... lbums.php)
Back to top
Offline View user's profile Send private message
dari

Site Admin
Site Admin


Joined: Mar 03, 2003
Posts: 6287
Location: Washington Township, NJ, USA

PostPosted: Wed Aug 20, 2003 1:45 pm    Post subject: Reply with quote

you shouldn't have to open any firewall for this to work. it's all served over TCP port 80 (as long as apache is configed that way).

anyway, i'm getting the "cannot redeclare fscopy()" error....make sure you ahve the latest random block code (improved random block). if not, check near the top of your block and make sure that there is a line that reads like this:
require_once($GALLERY_BASEDIR."/init.php");

you may have the line like this:
require($GALLERY_BASEDIR."/init.php");

if so, change it to include the _once part....
Back to top
Offline View user's profile Send private message Visit poster's website
slackbladder

Moderator
Moderator


Joined: Mar 29, 2003
Posts: 1038
Location: Cambs,UK

PostPosted: Wed Aug 20, 2003 2:45 pm    Post subject: Reply with quote

Does your SESSIONS.PHP (/modules/gallery/session.php)

look like this?

if (!$gallery->register_globals) {
foreach($_SESSION as $key => $value) {
eval("\$$key = & \$_SESSION[\"$key\"];");
}
}
Back to top
Offline View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
wisky

Beginner
Beginner


Joined: Aug 17, 2003
Posts: 3

PostPosted: Wed Aug 20, 2003 3:04 pm    Post subject: Reply with quote

Thanks for all the help. I changed all the parameters and installed the newest version of the Random block. Everything works fine now! Great.
Back to top
Offline View user's profile Send private message
brettlee

Novice
Novice


Joined: Jul 15, 2010
Posts: 23

PostPosted: Fri Aug 06, 2010 6:50 am    Post subject: Re: Error: Sorry, such file doesn Reply with quote

Looks like Drupal is the favourite, then mambo then the rest,this is the first time im not gonna make a pass4sure JN0-400 [pass4sure.org] site or anything from scratch *(am a Programmer) i usally design my sites with great javascripts stuff but this past times i havepass4sure 220-601 [pass4sure.org] lost time of making things in photoshop then frontpage then dreamweaver,pass4sure 220-602 [pass4sure.org] just got too tired, and let me just tell you guyz what i need in a cms and maybe u can advice me more,
I want a site that is easy to edit but also can make sort of mod's that can accsess most of the setting but not all and pass4sure 642-072 [pass4sure.org]one that supports links , blog module, polls and much more, and btw if it is hard to configure i may need it to be opensource.
Back to top
Offline View user's profile Send private message
brettlee

Novice
Novice


Joined: Jul 15, 2010
Posts: 23

PostPosted: Fri Aug 27, 2010 4:51 am    Post subject: Re: Error: Sorry, such file doesn Reply with quote

Internet forums are prevalent in several developed countries. In terms of countable posts, Japan is far in the lead with over two million posts per day on their largest forum, 2channel. China BH0-006 [actualquestions.com]also has many millions of posts on forums such as Tianya Club.Forums perform a function similar to that of dial-up bulletin board systems and Usenet networks that were first created starting in 642-631 [actualquestions.com]the late 1970s.[2] Early web-based forums date back as far as 1995. A sense of virtual community often develops around forums that have regular users.642-661 [actualquestions.com] Technology, computer games and/or video117-101 [actualquestions.com] games, sports, music, fashion, religion, and politics are popular areas for forum themes, but there are forums for a huge number of topics. Internet slang and image macros popular across the Internet are abundant and widely used in Internet forums.
Back to top
Offline View user's profile Send private message
jarryhock

Beginner
Beginner


Joined: Dec 26, 2010
Posts: 1

PostPosted: Mon Dec 27, 2010 2:01 am    Post subject: Re: Error: Sorry, such file doesn Reply with quote

there are many useful reply i agree







Internet Marketing Company
Back to top
Offline View user's profile Send private message Visit poster's website
benkids

Beginner
Beginner


Joined: Jan 03, 2011
Posts: 4

PostPosted: Mon Jan 03, 2011 10:11 pm    Post subject: Re: Error: Sorry, such file doesn't exist... Reply with quote

New York Asian Escort Service
new york escort directory [newyorkescortdirectory.com] includes new york escorts directory [newyorkescortdirectory.com] letting you to choose your favorite female entertainers, ny escort directory [newyorkescortdirectory.com] booking appointments and arranging you to meet up with our female entertainers. We promise you that you will get the total ny escorts directory [newyorkescortdirectory.com]
erotic enjoyment from our New York Asian Escorts.
Back to top
Offline View user's profile Send private message
Rochelle

Beginner
Beginner


Joined: Jan 17, 2011
Posts: 2

PostPosted: Mon Jan 17, 2011 9:09 pm    Post subject: Re: Error: Sorry, such file doesn't exist... Reply with quote

Hi,

Link to your site didn't work [bobexam.com] when I tried (server down?)

Can you post the top lines of both (new albums, random) of your blocks (config lines)?
Back to top
Offline View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    NukedGallery.net Forum Index » PHP-Nuke Integration » Gallery 1 Integration View previous topicPrinter friendly versionView next topic
Goto page 1, 2  Next

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours

Powered by phpBB © phpBB Group



Sponsors: Dedicated ServersDomain NamesWeb HostingDomain Name RegistrationDedicated Web HostingWeb Design New YorkCompare VoIPseo packagesSEO CompanyNew York Yellow PagesFind LocationsVOIP Phone ServiceNeckermannOnline internetSEORestaurant Locator • Get great HP coupons from CouponSnapshot • Search for great dell coupons at CouponSnapshot.com.au • Graduation DressesAndroid TabletSEO IndiaBuy Phen375fuel filter

8th year online! 2003-2011
Legal • Use of this site consitutes agreement to the Acceptable Use Policy
Hosted by Implosion WorksSourceForge.net Logo • Theme by TonicMedia