Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Warning: Unexpected character in input: (ASCII=8) state=1 in /home/andresyalison/www/photos/plog-functions.php on line 752
Warning: Unexpected character in input: ' in /home/andresyalison/www/photos/plog-functions.php on line 752
input { cursor:pointer; }
Posted By: andros69You got me curious and tested my code for validation and it seems to pass. I suppose you want yours to be XHTML strict, right? Mine is fine as XHTML transitional.
Posted By: andros69I've:
- Uploaded all files to the server
- set the permissions to the usual folders
- created a user and database on my server for the new install
- modified the plog_config.php file with the new parameters
- run _install.php
Posted By: ardamisI'm running into a problem where captions longer than the corresponding image extend the containing list item, wreaking havoc on the layout.
div.caption { width:100px; overflow:hidden; }
$thumb_info = plogger_get_thumbnail_info();
$height = $thumb_info['height'];
$width = $thumb_info['width'];
$filesize = $thumb_info['filesize'];
// etc..
<script type="text/javascript" src="js/moo.fx.js"></script>
Posted By: BenI was wondering if you the intention was to use moo.fx or not since it hasn't been included in the js folder of the admin.
Posted By: mikeyou didn't run the _upgrade.php script, you just tried installing over your old installation? That may have caused the problem
Posted By: mikedoes your old Beta2 password work on your new Beta3 install? If you are going to try to install them both on the same database, they need to have different table prefixes
Warning: Missing argument 2 for generate_thumb() in /home/andresyalison/www/photos/plog-functions.php on line 430
// find thumbnail width (hack to define size of li below)
$thumb_info = plogger_get_thumbnail_info();
$thumb_width = $thumb_info[0];
$thumb_height = $thumb_info[1];
$thumb_info[0] = The width of the image. It is integer data type.
$thumb_info[1] = The height of the image. It is an integer data type.
$thumb_info[2] = Image Type Flag. It is an integer data type.
$thumb_info[3] = String for <img> tag (width="xxx" height="xxx"). It is a string data type.
$thumb_info[bits] = Number of bits. It is an integer data type.
$thumb_info[channels] = Number of channels. It is an integer data type.
$thumb_info[mime] = MIME type. It is a string data type.