1. Photo Gallery

    Date: 01/09/06 (PHP Community)    Keywords: php, templates, mysql, css, html, sql, java, spam

    I've been hunting all around for a decent photo gallery. There seem to be quite a few different projects, some of which are still active, available. None of them seem to accomplish what I'm looking for, though. I have tested quite a few, but all are lacking. To this end, I thought I'd ask here if anyone has anything similar to what I've been looking for.

    Major Features:
    Abstracts image URLs - hides the path and filename to prevent direct access
    Public/private flags - allows some images to stay hidden
    Tags - I'd like to be able to tag the images ala del.icio.us, LJ, Flickr
    Does not require gd - auto-thumbnails and watermarks can be disabled
    Traverses directories - new images can be dropped in a subfolder or the root image folder and will be picked up automatically
    Comments - allows for public (configurable) or private comments, either ties into phpbb or uses some sort of email validation/captcha scheme to reduce spam
    EXIF - extracts all image data form the photographs and can display it
    Uses simple cacheable CSS/XHTML templates
    Does not store images in DB
    Uses MySQL or abstraction layer that allows MySQL for comments, tags, etc
    Takes reasonable measures to be secure and speedy

    Minor Features:
    Users can upload images
    Temporary/expiring image URLs for sharing
    Hotlinking configuration - allow all, deny all, allow specific sites
    User-switchable templates
    Javascript navigation and image pop-ups optional
    Keeps stats on a pre image basis - top keywords, views, etc
    All images can be watermarked automatically
    Thumbnails may be re-generated automatically
    Can assign/rename/describe multiple photos at once

    I'm sure there are more details, but that should give a start. The scripts I've found so far are either too simple and don't have many features or too complex and require components and methods of use that I won't be using. There are a few others that store the images in the DB, which is something I'm definately against. I want to be able to FTP a directory of images and know that it will be online and ready to go as soon as the transfer is complete, or that it takes a simple click to do a rescan so they are available.

    If I have to, I'll start from scratch... I was just hoping that there would be something available that I have not yet found that could serve as a foundation to build from.

    Thanks

    Source: http://community.livejournal.com/php/392436.html

  2. Integrating a php file into a webpage

    Date: 01/20/06 (WebDesign)    Keywords: php, templates, html

    I'm looking for tutorials on how to integrate a .php file into a (previous .htm file but now a) .php file. Or a brief explanation if there's such a thing, hehe.


    I've been using Dreamweaver and templates for one of my sites and now I want to integrate CuteNews script into it. (Me-background: I know html, but the div tag and I aren't the best of friends. But if that's what I have to do then I won't stop until I win.)

    I've been told to use this thing:

    include("path/to/show_news.php");
    ?>

    but they never said exactly how I use it..... (I have barely used php before)

    This is how my page looks like in DW. And I want my show_news.php to show up in the right editable region.

    Oh, and it'a a plain old table on the page, no divs whatsoever.

    Source: http://community.livejournal.com/webdesign/1046289.html

  3. Long time lurker, Questions about Career Development?

    Date: 01/20/06 (WebDesign)    Keywords: templates, web

    Hi.

    Does anyone have tabs on some info on the do's and don'ts of starting your own web design business?
    Sort of like "Good places to Find Contract Templates" and "Good Business Practices" etc etc..

    Anyone have some interesting antecdotes about starting up their own thing?
    I'm really interested in getting myself situated and established, Does anyone have any links, urls to sites or old posts that really addressed alot of career dev stuff?

    Source: http://community.livejournal.com/webdesign/1046643.html

  4. CSS, templates, other...

    Date: 01/24/06 (WebDesign)    Keywords: templates, css, web

    Can anyone briefly explain to me the intricacies of this website?
    http://web.e-enterprise.purdue.edu/dlc/duri
    I have made websites before... and have experimented with CSS, mostly just making stylesheets or using templates in Dreamweaver. I need to make a website following a similar format, but I am not sure how complex this particular site is. Any help would be greatly appreciated!

    (x-posted to webdev)

    Source: http://community.livejournal.com/webdesign/1050029.html

  5. PHP require() problem

    Date: 02/12/06 (WebDesign)    Keywords: php, templates, html, apache

    I've decided to finally start learning PHP. I've been doing rather well, until I decided to chop up my template structure a bit more.

    Originally I had my directory structure like so:

    HTTPDEV
    ..bin
    ....js
    ..Data
    ..Templates
    ....footers
    ....headers
    ....mains
    ....navs
    ....images
    ....styles
    ....miscs

    I have my main page (proj1.php) in the HTTPDEV folder, with all of the other files down the hierarchy.

    I've added a bodies folder beneath Templates, and to put the code to include items from footers, headers, mains, navs, miscs, etc in it.

    This is the code in proj1.php under the bodies directory:

    ?php
    				echo "div id=\"header\">";
    
    				require('../headers/proj1.html');
    
    				echo"/div>";
    				echo"div id=\"container\">";
    				echo"div id=\"center\" class=\"column\">";
    				
    				require('../mains/proj1.html');
    
    				echo"";
    				echo"div id=\"left\" class=\"column\">";
    
    				require('../navs/proj1.html');
    
    				echo"/div>";
    				echo"div id=\"right\" class=\"column\">";
    				
    				require('../miscs/proj1.html');
    
    				echo"/div>";
    				echo"/div>";
    				echo"div id=\"footer\">";
    
    				require('../footers/proj1.html');
    
    				echo"/div>";
    ?
    

    But this gives me this error:

    Warning: main(../headers/proj1.html) [function.main]: failed to open stream: No such file or directory in J:\DevProj\HTTPDEV\Templates\bodies\proj1.php on line 4

    Fatal error: main() [function.require]: Failed opening required '../headers/proj1.html' (include_path='C:\Program Files\Apache Group\Apache2\modules\php\PEAR') in J:\DevProj\HTTPDEV\Templates\bodies\proj1.php on line 4


    My directory structure should be putting things where they belong... All I did was move the requires into another file to aid in modularity. It worked before when the requires were all require('Templates/......

    Source: http://community.livejournal.com/webdesign/1058584.html

  6. Object Oriented Code Generator for PHP-MySQL Web Applications

    Date: 02/17/06 (Java Web)    Keywords: php, templates, mysql, database, sql, web

    MyDBO is an object-oriented code generator for PHP-MySQL Web application developers. It is designed to automate CRUD operations when creating Web applications. It creates code for accessing database tables without bogging down the developer with connections or SQL queries. It uses templates to generate code. You can create your own templates. I think it fills a [...]

    Source: http://blog.taragana.com/index.php/archive/object-oriented-code-generator-for-php-mysql-web-applications/

  7. HWCompany v11.1.7

    Date: 02/22/06 (PHP Community)    Keywords: templates, mysql, database, sql


    New additions to the languages, support and templates... and changes in the database, sessions and parser...

    Changes:
    Database:


    • updated version



    Languages:

    • added small-script codes for more language strings in site

    • updated the german descriptions



    Parser:

    • added small-script parser for the language strings



    Sessions:

    • added cookies to remember skin, language and login

    • added failsafe sessions



    Templates:

    • removed strings now in the small-script

    • overviewed and cleared of errors



    I hope this version will be even better as progress continues to move on...
    I really love working on this site... it teaches me much...

    In the future, I' m gonna move to another server, with MySQL... but I still have to see what that contains...
    If they use a contract, things can get out of hand, so I have to watch out...
    I already have my wishes written down for them... so we' ll see...

    If you want to test the site, I' ve got the links here:



    There you go, enjoy your visit!


    As far as the script for the winamp controller, I have no idea why it doesn' t work on the computers at "work"...
    It seems like they have a secure network, but then the IT guy tells me it' s not secured... it makes me go blah! lol

    I' ll try find a way around, because I' m just me, and I have to get through this...


    Kash

    PS:
    You may think I' m crazy, right?
    WELL DAMN RIGHT YOU ARE! LOL

    Source: http://community.livejournal.com/php/417088.html

  8. Serialized objects

    Date: 03/23/06 (PHP Community)    Keywords: php, templates, web

    http://us2.php.net/manual/en/function.serialize.php

    OK, I have been on a project where it I have been doing mostly front-end php while sending and recieving data in arrays with an API...

    Now the API people are saying "We will pass the templates as serialized PHP objects..."

    I am really scratching my head here. It sounds like he wants to send the entire php file that makes a web page as a serialized object... Before all I had to do was format an array. I am trying to arrange a confrence call to s I can understand this. (I am an not a PHP expert and I think they are talking above my head.)

    In the meantime, what can you tell me about the function serialize()? The example in the manual seems very incomplete and I need to pick this up quick.

    Source: http://community.livejournal.com/php/430256.html

  9. Putting Your Own Templates On A Website

    Date: 05/24/06 (HTML Help)    Keywords: templates, html, web

    Alright, I've volunteered to make / maintain my church's website, and it turns out that I know absolutely nothing about doing this.


    I've downloaded a template from Boxed Art and I've also downloaded a program (SEEdit) to view the template, because I couldn't open the .html files with TextEdit.




    I don't know where to begin. My webhost (iPower) uses an application-like thing called vDeck (here's a screenshot of it), and I'm not sure how to go about installing these templates and putting them to use.


    One of the template pages is an .html file that looks like this:





    41Baptist Template




































































     





    We listen and effectively respond
    to your needs and those of your clients. We are
    experts at translating
    those needs into marketing
    solutions that work, look great and communicate well.
    We listen and effectively respond to your needs and those
    of your clients. We are experts at translating those needs
    into marketing solutions that work.



    We listen and effectively respond to your needs and those
    of your clients. We are experts at translating those needs
    into marketing. We listen and effectively respond
    to your needs and those of your clients
    . We are
    experts at translating those needs into marketing solutions
    that work, look great and communicate well. We listen
    and effectively respond to your needs and those of your
    clients. We are experts at translating those needs into
    marketing solutions that work. We listen and effectively
    respond to your needs and those of your clients. We are
    experts at translating those needs into marketing.
    We
    listen and effectively respond to your needs and those
    of your clients. We are experts at translating those needs
    into marketing solutions that work, look great and communicate
    well. We listen and effectively respond to your needs
    and those of your clients. We are experts at translating
    those needs into marketing solutions that work, look great
    and communicate well.


    We listen and effectively respond to your needs and those of
    your clients. We are experts at translating those needs into
    marketing. We listen and effectively respond to your
    needs and those of your clients
    . We are experts at
    translating those needs into marketing solutions that work,
    look great and communicate well. We listen and effectively respond
    to your needs and those of your clients. We are experts at translating
    those needs into marketing solutions that work. We listen
    and effectively respond to your needs and those of your clients.
    We are experts at translating those needs into marketing.
    We
    listen and effectively respond to your needs and those of your
    clients. We are experts at translating those needs into marketing
    solutions that work, look great and communicate well. We listen
    and effectively respond to your needs and those of your clients.
    We listen and effectively respond to your needs and
    those of your clients. We are experts at translating those needs
    into marketing.
    We listen and effectively respond to
    your needs and those of your clients. We are experts at translating
    those needs into marketing solutions that work, look great and
    communicate well. We listen and effectively respond to your
    needs and those of your clients.





    © 2003 The Company, Inc.
    All rights reserved.
    Terms
    of Use and Disclaimer





    Um... if you need more information, I'd be happy to give it to you. *sigh* Any help in this area would mean the world to me! I feel like my head is about to explode. :-/


    Thank you!

    Source: http://community.livejournal.com/htmlhelp/2305584.html

  10. Who is the web user?

    Date: 05/29/06 (PHP Community)    Keywords: php, templates, web, linux

    ** sorted, thanks.


    Hi,
    I have a Linux server that I am slowly learning how to use. A friend of mine who is very good with Linux not available for lots of questions set it up for me. I am at the moment trying to install Smarty Templates. I have a question about part of the installation instructions that I have copied below.

    In our example, the document root is /web/www.domain.com/docs and the
    web server username is "nobody". We will keep our Smarty files under
    /web/www.domain.com/smarty

    Who is the web server username that nobody is referring to?


    Another question I have is about the location of the Smarty files. The installation docs suggest /usr/local/lib/php/Smarty/

    Why that directory particularly? There was no php directory in /usr/local/lib/. I set one up and copied the files as instructed. I am just curious about that choice of location.


    Thanks

    Source: http://community.livejournal.com/php/454125.html

  11. List of Files Changed in WordPress 2.03 wrt. WordPress 2.02

    Date: 06/01/06 (Java Web)    Keywords: php, templates

    List of files changed in WordPress 2.03 in comparison with WordPress 2.02 for those planning on selective upgrade: wp-admin/admin-db.php wp-admin/admin-functions.php wp-admin/admin.php wp-admin/cat-js.php wp-admin/categories.php wp-admin/edit-comments.php wp-admin/edit-form-advanced.php wp-admin/edit-form-ajax-cat.php wp-admin/edit-form-comment.php wp-admin/edit-link-form.php wp-admin/edit-page-form.php wp-admin/edit-pages.php wp-admin/edit.php wp-admin/import/mt.php wp-admin/inline-uploading.php wp-admin/link-categories.php wp-admin/link-import.php wp-admin/link-manager.php wp-admin/list-manipulation.js.php wp-admin/list-manipulation.php wp-admin/moderation.php wp-admin/options-discussion.php wp-admin/options-general.php wp-admin/options-misc.php wp-admin/options-permalink.php wp-admin/options-reading.php wp-admin/options-writing.php wp-admin/options.php wp-admin/page-new.php wp-admin/plugin-editor.php wp-admin/plugins.php wp-admin/post.php wp-admin/profile-update.php wp-admin/profile.php wp-admin/templates.php wp-admin/theme-editor.php wp-admin/themes.php wp-admin/upgrade-schema.php wp-admin/upgrade.php wp-admin/user-edit.php wp-admin/users.php wp-comments-post.php wp-content/plugins/akismet/akismet.php wp-content/plugins/wp-db-backup.php wp-includes/cache.php wp-includes/capabilities.php wp-includes/classes.php wp-includes/comment-functions.php wp-includes/default-filters.php wp-includes/functions-compat.php wp-includes/functions-formatting.php wp-includes/functions-post.php wp-includes/functions.php wp-includes/kses.php wp-includes/links.php wp-includes/pluggable-functions.php wp-includes/registration-functions.php wp-includes/template-functions-general.php wp-includes/template-functions-links.php wp-includes/vars.php wp-includes/version.php wp-login.php Enjoy!

    Source: http://blog.taragana.com/index.php/archive/list-of-files-changed-in-wordpress-203-wrt-wordpress-202/

  12. phpBB3

    Date: 06/30/06 (PHP Community)    Keywords: php, templates, software

    Note: This rant was prompted by phpBB's release of Beta1 of phpBB3... finally.

    I think phpBB is stupid for not switching over to Smarty with version 3 of the forum. They've essentially reinvented the wheel and I don't think they did as good of a job as Smarty does. They can't complain about supporting "existing templates" because there are none. On top of that, they could really use some unit tests.

    phpBB has gone down a long way since they first came out with phpBB 2. They used to be the leaders of forum software. Now they're playing catch up with everyone else. My own forums are so heavily modded that they already have more than half the features that phpBB3 will have. GameHavoc's forums, which recently were moved to vBulletin, already have all the features and then some that phpBB3 will have.

    I would switch over to vBulletin except I can't afford it, nor do I want to pay more for each site I might use it on.

    Are there no other very good PHP-based forum packages that don't cost money or have a code base that looks like it was originally made in PHP3 and never upgraded? I'm almost tempted to start making my own. There has got to be something out there that shows promise, though. Something with good coding practices and framework to back it up and make for easy development, deployment, and modification.

    Source: http://community.livejournal.com/php/465595.html

  13. RFC: Tables vs CSS vs CSS enhanced tables

    Date: 08/08/06 (Web Development)    Keywords: templates, browser, css

        Now don't get me wrong, I love CSS but the positioning system implemented by MSIE/Mozilla/Safari have their slight differences that can ultimately make it difficult to work with.  Sure there's plenty of little hacks and such to work around them, but it looks pretty bad to the clients when my work renders wrong on obsolete browsers.   So I've gone back to using tables to lock elements in place, then using CSS to beautify them.  I still keep my templates below 10k in size and all appears to be good?

    Source: http://community.livejournal.com/webdev/342476.html

  14. Update aims for a friendlier Blogger

    Date: 08/15/06 (Web Technology)    Keywords: templates

    Beta includes new features such as tagging, friends-only posts, and templates designed to be easier to use.

    Source: http://news.zdnet.com/2100-9588_22-6105718.html

  15. Running out of ideas

    Date: 08/17/06 (WebDesign)    Keywords: templates, browser, css, microsoft

    I am very new to CSS and standards based design; but, I really want to learn.  Needing results quickly, I opened StyleMaster and used one of their templates.  I didn't change anything really, just reworked the graphics.  Proofed it in all the browsers in the house and was so proud of myself for having actually accomplished the task.  THEN - I asked friends far and wide to look at the site.  It does NOT display correctly in IE6.  All the content is displayed below the navigation column.  Using Dreamweaver I tried to find some clue; but none of the clues led to anything that worked to make it display correctly in IE6.  Works great in IE7 but Microsoft isn't forcing the upgrade so I guess it is a BIG problem for me.  Bad news is the client uses IE6. Can somebody look at this and give me a clue  to fixing it - I'm willing to try anything at this point.  Really hate to go back to tables now when I'm so darn close.  THANK YOU!!

    http://moonflyacds.com

    Source: http://community.livejournal.com/webdesign/1151880.html

  16. Running out of ideas ... need help

    Date: 08/17/06 (Web Development)    Keywords: templates, browser, css, microsoft

    I am very new to CSS and standards based design; but, I really want to learn.  Needing results quickly, I opened StyleMaster and used one of their templates.  I didn't change anything really, just reworked the graphics.  Proofed it in all the browsers in the house and was so proud of myself for having actually accomplished the task.  THEN - I asked friends far and wide to look at the site.  It does NOT display correctly in IE6.  All the content is displayed below the navigation column.  Using Dreamweaver I tried to find some clue; but none of the clues led to anything that worked to make it display correctly in IE6.  Works great in IE7 but Microsoft isn't forcing the upgrade so I guess it is a BIG problem for me.  Bad news is the client uses IE6. Can somebody look at this and give me a clue  to fixing it - I'm willing to try anything at this point.  Really hate to go back to tables now when I'm so darn close.  THANK YOU!!

    http://moonflyacds.com

    Source: http://community.livejournal.com/webdev/346735.html

  17. Help!?!

    Date: 08/18/06 (HTML Help)    Keywords: templates, html, web

    Hey, I know a little bit about HTML, and my sister wanted me to look at her friend's layout on her webpage, here: http://www.kimsmith.ca/

    I would like it to look like this: http://www.templatesbox.com/templates/157.htm and I have downloaded the file but I don't know what to do!

    Source: http://community.livejournal.com/htmlhelp/2347470.html

  18. Oregon Job Opening: Web Developer – XHTML, DHTML, CSS, JavaScript

    Date: 08/20/06 (Web Development)    Keywords: templates, software, css, html, xml, java, web


    The employee will be responsible for providing web publishing support to multiple internal clients by developing, supporting, or modifying web sites using the processes, tools and techniques approved for web development within the company’s corporate environment.

    Requirements:
    · Mastery of "hand-coded" HTML, DHTML, CSS, and JavaScript.
    · Understanding and implementation of graphic design principles using Adobe Photoshop.
    · Experience with XML
    · Experience with Flash development
    · Demonstrated knowledge and experience with version control software, quality assurance processes, and defect tracking tools.
    · Strong customer management skills.
    · Ability to coordinate with Project Managers and understand, translate and define complex technical requirements.
    · Ability to work independently and with teams.
    · Proven client interaction or consulting experience.
    · Attention to detail and ability to quickly learn new technologies and tools.
    · Ability to comply with corporate dictated design standards and provided templates.


    Highly Desired Qualifications:
    · Previous Intel (or other corporate) experience
    · Experience with NGIP/CIP
    · Intel Web Author certification (current or previous)

    Additional Information:
    This is expected to be a long-term, benefited opportunity on a growing team.
    Hours are 8AM-5PM Monday through Friday, onsite in Hillsboro. No telecommuters please.
    In-person interviews will be required. Local candidates will have first preference.


    If interested, please send your resume, URLs to some of your work or your portfolio, and your expected pay rate for the position described above to: meagan.johnson[ at ]cdicorp[ dot ]com.

    Feel free to repost or share with a qualified friend. Note: No, I wouldn't be your boss. I'm helping with the recruiting, and I'll probably do some phone screens. :]

    Source: http://community.livejournal.com/webdev/348661.html

  19. The Achilles Heel of open source?

    Date: 10/02/06 (Open Source)    Keywords: templates, software, microsoft

    Open Office is one of the most popular open source projects around. It has about 50 million users, the software supports dozens of languages, and it replicates (free) all the major functions of Microsoft Office. But since announcing its contest for templates and clipart the reaction has been one of crickets chirping. Gerry Singleton, co-leader of [...]

    Source: http://blogs.zdnet.com/open-source/?p=801

  20. Cheap but lovable webhosts

    Date: 01/04/07 (WebDesign)    Keywords: templates, web, hosting

    Hi guys,

    I've had my friend's website (the Book Brothel - a book reviews site, very cool) hosted on Netrillium for the past three years.

    Last year, Movable Type exploded. I don't have internet at home and couldn't really do anything in the way of fixing it. I asked for help from Netrillium, because googling the problem led me to believe it was the result of a change on their end which messed up my install. They tried a little, said it was fixed, I said it wasn't, they ignored me for a year (not that I was e-mailing daily.. but still.) My long-suffering friend trudged bravely on with her half-working install.

    The last straw has come, though: as she approached her space limit, the MT install was garbled again. We asked for a backup. We asked to be moved to a higher plan. They said 'we'll look for a backup and let you know' over a week ago. Since then, the domain renewal came up, I missed it due to work holidays, and they never sent me any sort of notice. The domain (bookbrothel.com) is not currently ours.

    I am, understandably I hope, fed up with Netrillium. I think that the owner, Ermina, is a saint, but she hires idiots. My long-winded question is this: where do I go?

    I am getting the internet at home within a week, so I will be able to keep my own eye on my next Movable Type (or possibly Textpattern) installation, so support needs to be polite and quick, but they don't have to hold my hand. All I want is responses to my queries!

    I want a place which will register a domain for roughly $10US or under, and give me ~200MB of disk space, 300 would be better. I've just been away from the design world for so long I have lost touch with hosting companies, registrars and all its related ilk.

    I'm pretty sad about my Netrillium breakup. I used to have a reseller account, hosted all sorts of freebie templates, design collectives... *sigh*

    Source: http://community.livejournal.com/webdesign/1202920.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home