PHP Web Host - Quality Web Hosting For All PHP Applications $35/month $250/year (Unlimited) - $25/month - 200,000 impressions - Your Ad Could be Here - Click For Details
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Poll
Raven Nuke should have a photo album like this?
Yes
50%
 50%  [ 2 ]
No
50%
 50%  [ 2 ]
Total Votes : 4


Author Message
fresh
Regular
Regular


Joined: Mar 12, 2008
Posts: 72

PostPosted: Fri Mar 21, 2008 2:56 am Reply with quote Back to top

Hey does any one know where i can get a photo album like this?
If any one dont know where to find it i think Raven Nuke should have something small like this Very Happy Embarassed
Only registered users can see links on this board!
Get registered or login to the forums!
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Fri Mar 21, 2008 4:09 am Reply with quote Back to top

If you look at that page again, near the lower right of the page you'll see a small copyright symbol. If you click that, it will tell you where you can get that from.
In any event, it seems to be using Googles Picasa API which would be fairly straight forward to integrate.
View user's profile Send private message Send e-mail Visit poster's website
fresh
Regular
Regular


Joined: Mar 12, 2008
Posts: 72

PostPosted: Fri Mar 21, 2008 5:39 pm Reply with quote Back to top

Yeah i checked that already unfortunately the download page doesn't work
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Sat Mar 22, 2008 2:54 am Reply with quote Back to top

I don't know if I will ever get it finished but here is another example;
Only registered users can see links on this board!
Get registered or login to the forums!

I still have some wading to do through Google Picasa API as there is a gremlin in the javascript somewhere that doesn't show the list of pictures when you get into a specific gallery but it is CSS valid, XHTML 1.0 Transitional Compliant and follows the RN code methodology.
View user's profile Send private message Send e-mail Visit poster's website
montego
Site Admin


Joined: Aug 29, 2004
Posts: 6784
Location: Arizona

PostPosted: Sat Mar 22, 2008 11:53 am Reply with quote Back to top

Guardian2003, hey, this looks awesome! If I didn't have so many pictures to upload, I'd jump on this in a heartbeat. It would be awesome if Google planned on upping that to 2GB of space... I might ditch my plans to use G2 again...

Very nicely done sir!
View user's profile Send private message Visit poster's website
jakec
Moderator


Joined: Feb 06, 2006
Posts: 1381
Location: United Kingdom

PostPosted: Sat Mar 22, 2008 12:20 pm Reply with quote Back to top

I've volunteered to help with our villages archive and run their website, so I'm going to be on the look out for a good integrated gallery module, so this could be the ticket. Very Happy

So if you need anyone to do some testing you know where I am. Wink
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Sat Mar 22, 2008 1:57 pm Reply with quote Back to top

Well I actully ripped it all apart and started again so it is extremely rough at the moment , lots of links are not formatted correctly etc but the individual images within each gallery are now accessible.
Have lots to do but it has been great fun and a steep javascript learing curve.

Incidentally, Picasa have a little widget you can download which will do all the file uplading for you - no ftp or anything like that Smile
View user's profile Send private message Send e-mail Visit poster's website
fresh
Regular
Regular


Joined: Mar 12, 2008
Posts: 72

PostPosted: Sun Mar 23, 2008 1:23 am Reply with quote Back to top

This is what i am talking about u guys are in to something now LOL Yeah as montego said if picasa update to 2 gb or more it would nicer. But for now this will be my only hope so far LOL
Guardian i can help u with some LOl any tea or coffee?? lol snacks?Razz
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Sun Mar 23, 2008 2:45 am Reply with quote Back to top

If anyone has a Picasa account with images in it, please PM me your picasa username, I want to see if I can pull more than one account - ergo 2Gb of images Smile
View user's profile Send private message Send e-mail Visit poster's website
montego
Site Admin


Joined: Aug 29, 2004
Posts: 6784
Location: Arizona

PostPosted: Mon Mar 24, 2008 5:24 am Reply with quote Back to top

Guardian2003 wrote:
ergo 2Gb of images Smile


You sly devil you... Twisted Evil
View user's profile Send private message Visit poster's website
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Mon Mar 24, 2008 6:08 am Reply with quote Back to top

Well you know what they say...
if the mountain will not come to mohammed, we'll just build our own Smile

Incidentally, my experiments reveal that google is using a server side compression ration of approx 8:1 so in theory the file sizes of images 'uploaded' are treated as 1/8th of that size in respect of their capacity limit i.e. with a 250Mb 'account' limit you can upload almost 2Gb of images.

I'm not sure I will have multiple picasa account functionality within the first release of this, though it is extremely simple to add one by 'repeating' a couple of lines of code but it would be nice to have that sort of support so that it might pave the way for those that want to allow their site users to have the option to add their own albums etc.

Just need to figure out a way to get hard coded text translations within the js file itself as you cannot use a php constant within js it seems. I could create a simple list of js vars which could be edited but thats not ideal.
I'm trying to go minimalist by using a navigation structure based on icons but I'll still need text for ALTs etc.

I could release it as English only but I know that Susann will have me shot at dawn if I do that Wink
View user's profile Send private message Send e-mail Visit poster's website
montego
Site Admin


Joined: Aug 29, 2004
Posts: 6784
Location: Arizona

PostPosted: Mon Mar 24, 2008 6:29 am Reply with quote Back to top

Guardian2003, I actually use a javascript.php script within HTML Newsletter that is used to generate JS... I have switched this over to use the HEREDOC syntax in the upcoming 1.4 version (yes, I decided to move forward anyway, even though it is PHP4+). Using HEREDOC syntax would just make it very easy for you to embed PHP variables into it... such as a language array... hint... hint... Wink
View user's profile Send private message Visit poster's website
montego
Site Admin


Joined: Aug 29, 2004
Posts: 6784
Location: Arizona

PostPosted: Mon Mar 24, 2008 6:31 am Reply with quote Back to top

Oh, forgot to mention that you may need to use an extended syntax on the use of the array, for example, something like this:

{$array['labelname']}
View user's profile Send private message Visit poster's website
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Mon Mar 24, 2008 7:37 am Reply with quote Back to top

Hmm interesting. I had considered switching the file extension from js to php and then just dropping in and out as required but it seemed messy.
I have a look at HEREDOC Smile thanks!
View user's profile Send private message Send e-mail Visit poster's website
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4285
Location: Poland

PostPosted: Tue Mar 25, 2008 12:43 pm Reply with quote Back to top

I didn't make any head way with HEREDOC but understand it's principles now - thanks for that!!

I'm now looking for 3 volunteers to install and test an Alpha release code Gallery module.
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:       
Post new topic   Reply to topic

View next topic
View previous topic
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
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2008 by Raven
Proud to be listed at Lobo Links Web Directory

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::

:: fisubice Theme Recoded To 100% W3C CSS & HTML 4.01 Transitional Compliance by Raven and 64bitguy ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum