Summary: UtopiaSoftware Forums - All Forums
UtopiaSoftware Forums - http://www.utopiasoftware.net/forum
Hello,
I wonder if it is possible to change the blue background with an
image in css, I tried but there is rin!
Sorry for my English I use google talk to you.
Date Published: Jan 05, 2012 - 1:51 am
Hi everyone. Post here your website, where you use Utopia News
Script!
Date Published: Feb 24, 2011 - 10:06 am
Hi All,
Recently I bought a new PC from Dell. I am curious to know what you
are looking for a new PC. I mean what do you normally do??
- look for a brand, ie Dell, HP etc?
- Build one yourself?
- get custom one built (Alienware etc) ??
Date Published: Feb 19, 2010 - 9:54 pm
Hi All,
The script I'm using for news posting is designed so the comments
for each news item are displayed with links like
"/news/comments.php?action=list&newsid=1" but I'd like to have
the comments displayed below each post, rather than on a separate
page. There doesn't seem to be a variable to do this with the
templates, so how can I accomplish it?
Thanks,
Trevor.
Date Published: Feb 16, 2010 - 12:37 am
I was getting bored of having to find an external tool to pick the
colours i want the style options to be so i found a jQuery colour
picker and i have implemented it to UNP here are the
instructions...
Download the File From
here or at the bottom of the post
Then edit the one file
Styles.php
----------
Replace Line 81 With:
Replace Lines 112-114 With:
PHP Code:
<</span>td>'.$title.'</</span>td>
<</span>td><</span>input id="colorpickerField1" onChange="javascript: updateColor(\''.$id.'\')" type="text" value="'.htmlspecialchars($value).'" size="20" name="'.$id.'" /></</span>td>
<</span>td><</span>input id="colorbox'.$id.'" type="button" value=" " disabled="disabled" style="background-color: #'.htmlspecialchars($value).'" /></</span>td>
And your all set enjoy...2 in one day not bad
cpicker.zip (Size: 88.77 KB / Downloads: 4)
Date Published: Jan 30, 2010 - 10:06 am
Before you think you can update your news with this you cant, It is
only for viewing the news posts only...
Features:
Custom Icons For Homescreen
Loads like an app if added to homescreen
Full UNP Code support
Fancy iPhone style effects (slide & flip)
Theme can be changed by editing the images
Easy To Install
Uses the UNP Settings
ToDo:
Add Pages so you can look further back than the news limit
Option to switch to standard site
Ability to post news using an iPhone interface
Post / View Comments
Add theme editor to the existing editor on UNP ACP
...More to follow
demo available at: joffcom.net/unp_test/iphone
or just point your device to joffcom.net and it will auto direct
you to it.
So here is the install
guide..
Download the Add On from either
here or the
bottom of the post
Put it in your UNP News DIR so yoursite.com/news/iphone
open your main index file for your website and add the following
anywhere between and
**THIS
BIT HAS BEEN UPDATED TO SUPPORT ANDROID AND
WEBOS**
PHP Code:
<</span>script language=javascript>
make sure you change "news/iphone/index.php" to where you have put
it all you need to do is change the news to what you have called
yours.
if you dont have a on your site anywhere at the top will do
Thats it all set your ready to go
iphone.zip (Size: 76.62 KB / Downloads: 5)
Date Published: Jan 30, 2010 - 4:34 am
Installed the software without a glitch. When I log in though it
says I am succesfull the boots me back to the login page again.
It's a never ending loop. My host (appliedi.net) says the sessions
are configured correctly so i don't know what is going on. I need
to do a demo for a client tomorrow night so I hope there is a cure.
Thanks. Dave
Date Published: Jan 21, 2010 - 11:04 pm
Hi to all
I am planning to buy new laptop.But confused little which system to
buy.So please share your experience so i can get some ideas.which
one is better..?
Date Published: Jan 17, 2010 - 10:06 pm
Hi to all,
I want to share my collection of Pencil Art
Here are from my collection.
![[Image:image004g.jpg]](http://img223.imageshack.us/img223/3394/image004g.jpg)
Date Published: Jan 05, 2010 - 3:00 am
Hi!!
I have just started the programing web development. I face the
problem with the header function. The function doesn't redirect.
Found this error.
Warning: Cannot modify header information - headers already sent by
(output started at /home/kabeet/public_html/flash/page_add.php:4)
in /home/public_html/page_add.php on line 72
Please help.
Date Published: Dec 27, 2009 - 11:21 pm
I have personally been using unp for a good few years now and have
seen many changes to it but have only recently been on here and
posting mods for it (4 now for 1.4) but I have to admit I always
took the powered by off the main page, although I did have a
credits page and it was in there aswell as on the feeds, printables
and archives.
At the moment I am using a different system while I write my own
which has unp in the middle of it, which means alot of the things I
post up will be things I will actually use myself when the system
is finished
Date Published: Dec 15, 2009 - 9:38 am
After a few months thinking about what to do next I have decided to
sort out the Pagination for people, For those that dont know
Pagination is that little bit that adds the page numbers to the
bottom, Like google has for the search.
There is currently one problem and that is that the links dont look
very good being just plan text but it is only a quick hack after
all.
I have linked it in so that the amount of posts on one page
controls the amount on each page, At a later date I will update
this and add in some AJAX to make it feel nicer but until then this
will do the job for you.
You have 2 ways to install this hack...
The easy way is to download the new News.php and upload it to your
server to replace the default one
[File - unp_pagination.zip] - Right Click Save As -
File also attached to post just incase my link goes down
Or you can add in the code to the news.php file yourself but make
sure you back up the original before both ways, I would recommend
the replacement file unless you already have mods/hacks installed
that edit the main news.php file[/php]
find the following code which starts at around line 49 in
news.php
PHP Code:
/* #################### CATEGORIES #################### */
// +------------------------------------------------------------------+
// | Process News - Standard |
// +------------------------------------------------------------------+
if ($action == '')
{
after that { add the following
PHP Code:
// find out how many rows are in the table
$pagecon = $DB->query("SELECT count(*) FROM unp_news");
while ($r = $DB->fetch_array($pagecon))
$numrows = $r[0];
// number of rows to show per page
$rowsperpage = $newslimit;
// find out total pages
$totalpages = ceil($numrows / $rowsperpage);
// get the current page or set a default
if (isset($_GET['currentpage']) && is_numeric($_GET['currentpage'])) {
// cast var as int
$currentpage = (int) $_GET['currentpage'];
} else {
// default page num
$currentpage = 1;
} // end if
// if current page is greater than total pages...
if ($currentpage > $totalpages) {
// set current page to last page
$currentpage = $totalpages;
} // end if
// if current page is less than first page...
if ($currentpage < 1) {
// set current page to first page
$currentpage = 1;
} // end if
// the offset of the list, based on current page
$offset = ($currentpage - 1) * $rowsperpage;
// get the info from the db
now find
PHP Code:
eval('$news_newsbit = "'.unp_printTemplate('news_newsbit').'";');
unp_echoTemplate($news_newsbit);
// NewsBit
echo "\n\n";
}
unset($news);
and after it add
PHP Code:
/****** build the pagination links ******/
// range of num links to show
$range = 3;
// if not on page 1, don't show back links
if ($currentpage > 1) {
// show << link to go back to page 1
echo " << ";
// get previous page num
$prevpage = $currentpage - 1;
// show < link to go back to 1 page
echo " <</a> ";
} // end if
// loop to show links to range of pages around current page
for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) {
// if it's a valid page number...
if (($x > 0) && ($x <= $totalpages)) {
// if we're on current page...
if ($x == $currentpage) {
// 'highlight' it but don't make a link
echo " [$x] ";
// if not current page...
} else {
// make it a link
echo " $x ";
} // end else
} // end if
} // end for
// if not on last page, show forward and last page links
if ($currentpage != $totalpages) {
// get next page
$nextpage = $currentpage + 1;
// echo forward link for next page
echo " >";
// echo forward link for lastpage
echo " >> ";
} // end if
/****** end build pagination links ******/
save the file and all should be good, if you get any problems ask
away and i will do my best to solve the problem...
unp_pagination.zip (Size: 2.84 KB / Downloads: 5)
Date Published: Dec 11, 2009 - 2:11 pm
Hello there,
In the option where you can enable a "Read More" link on your
articles, how can you change the setting so that instead of it
loading a pop-up page, you can simply just load it into the same
page?
For that matter, is there an SSI where I can include the full
article into a customized web page?
Thanks,
SA
Date Published: Nov 19, 2009 - 2:51 pm
Well i use 'Transcend Portable Hard Disk 160 GB'
That works nicely..
Technical Specification
# 160GB Transcend Portable Harddisk 160 GB HDD WITH BILL AND
WARRANTY
# Transcend's StoreJet 2.5 mobile is compact and portable, with
measurements of only 134 mm by 80.8 mm by 18.8 mm. Weighing in at
just 206g, the StoreJet 2.5 mobile is easy for users to
conveniently carry around.
# Transcend's StoreJet 2.5 mobile features advanced dual stage
anti-shock technology and meets strict U.S.military drop-test
standards to help protect your data against accidental bumps or
falls.
# In order to ensure maximum compatibility with most desktop and
notebook computers, the StoreJet 2.5 mobile uses a high-speed USB
2.0 interface, which provides data transfer rates up to 480Mb per
second while offering the convenience of plug and play.
Features :
# To protect against data loss or damage from accidental slips or
falls, the StoreJet 2.5 mobile meets the U.S.military drop-test
standards MIL-STD-810F with advanced two-stage anti-shock
technology, literally making it one of the safest places to keep
your data.
# Hi-Speed USB 2.0 compliant and USB 1.1 backwards compatible
# Easy Plug and Play installation
# Ultra-Portability
# Additional Features :
# StoreJet elite (helps you manage your data)
# OneTouch Auto-Backup function
# Powered via the USB port.
# No external power or battery needed
# LED indicates power on and data access
Specifications :
# Dimensions : 134mm x 80.8mm x 18.8mm
# Weight : 206g
# Hard Drive Type : SATA
# Operating Voltage : DC 5V from USB port
# Interface : USB2.0
Package Contents :
# 160GB Transcend StoreJet mobile
# HDD Driver
# CD
# QIG
# Y Cable
Accessory
# StoreJet 25P
# Software CD
# Quick Start Guide
# Warranty Card
# Travel Pouch
USB Cable
System requirement
# - Desktop or notebook computer with a working USB port
# - One of following operating systems:
# - Windows 2000
# - Windows XP
# - Windows Vista
# - Mac OS 9.0 or later
# - Linux Kernel 2.4 or later
Date Published: Nov 19, 2009 - 3:47 am
Hi,
I have downloaded the application and seems good application. I
want to know if I can specify the date and time for a notice to be
displayed and also to be removed.
Currently the notice is put immediately.
-Charudatta
Date Published: Oct 23, 2009 - 4:01 am