Search found 223 matches

by Karla
Tue 15. Mar 2005, 03:21
Forum: General Discussion
Topic: Request: FTP client that works as a harddrive?
Replies: 9
Views: 3696

I've been told this commercial package is good, but have not tried it:
WEBDRIVE
http://www.southrivertech.com/index.php ... rive/index
by Karla
Fri 11. Mar 2005, 04:11
Forum: phpwcms Support English
Topic: Image Thumbnail Creation (Fatal Error-Memory size exhausted)
Replies: 2
Views: 1685

Update: cheers, all fixed for now...have to believe this is a workaround.... am running 1.2.1 ini_set("memory_limit","50M"); within the ss_image.class.php. Seems strange however, why so much memory is needed to be used during imagecreatefromjpeg(); I wonder if Oliver will have a...
by Karla
Thu 3. Mar 2005, 13:45
Forum: phpwcms Installation Troubleshooting English
Topic: cant' pass through 2nd step in installation
Replies: 2
Views: 1508

check your "PHP.INI" for this line an enable it

Code: Select all

error_reporting=E_ALL & ~E_NOTICE
by Karla
Wed 2. Mar 2005, 14:13
Forum: General Discussion
Topic: ImageMagick per SSH Installation
Replies: 5
Views: 2682

This was for an older version of Imagemagick... but same principle should apply:
http://www.phpwcms.de/forum/viewtopic.php?p=5089#5089
by Karla
Wed 2. Mar 2005, 13:51
Forum: phpwcms Support English
Topic: Fatal error: .....
Replies: 1
Views: 1133

I think it's something like "html_entity_decode()" is only defined on versions of PHP 4.3.x and later -- this is most likely the cause of your problem.

See this:
http://www.phpwcms.de/forum/viewtopic.php?p=4692#4692
by Karla
Mon 28. Feb 2005, 22:54
Forum: phpwcms Support English
Topic: E-card formatting
Replies: 2
Views: 1116

"cnt16.inc.php" $content["ecard"]["form"] .= '<td colspan="2" bgcolor="#99CC00"><strong style="color:#FFFFFF;">&nbsp;'.$BL['be_cnt_ecardform_sender'].'</strong></td>'."\n"; $content["ecard"]["form"] .= '<td...
by Karla
Mon 28. Feb 2005, 00:00
Forum: phpwcms Support English
Topic: SOLVED: install 1.2.1 -- "failed to open stream: No suc
Replies: 8
Views: 3221

// database values $phpwcms["db_host"] = "mysql01.websitehost.com"; // site values $phpwcms["site"] = "http://www.mywebsitename.com/"; // paths $phpwcms["DOC_ROOT"] = "E:/web/charlierorg/htdocs"; $phpwcms["root"] = "aaa_news...
by Karla
Sun 27. Feb 2005, 14:40
Forum: General Discussion
Topic: Question to the alignment with CSS
Replies: 5
Views: 2580

Most "basic" form would be a simple nested DIV w/ float:

Code: Select all

<div><!-- no content whatsoever here -->
<div style="float: right; width: 50% text-align: right;">
Now put the right hand column here
</div>
The left hand column goes here
</div>
by Karla
Sun 27. Feb 2005, 14:26
Forum: phpwcms Installation Troubleshooting English
Topic: A simple question about the installation
Replies: 17
Views: 4866

Postscript - this is a "feature" point... not a "requirement". Imagemagick - not "required" if GD library for PHP is installed (GD2 version preferred over GD1, but works with either). Typically requires minimum of "shell access" -or- more complete server acces...
by Karla
Sun 27. Feb 2005, 14:09
Forum: phpwcms Support English
Topic: frontend.css question
Replies: 3
Views: 1185

From the web: It is the infamous 'simplified box model hack'. It is a syntax hack designed to send the 'incorrect' width of 780px to IE5.* browsers and the correct width of 760px to all other browsers. IE5.* has a broken box model which means it incorrectly includes padding when it calculates width....
by Karla
Sun 27. Feb 2005, 05:49
Forum: phpwcms Support English
Topic: SOLVED: install 1.2.1 -- "failed to open stream: No suc
Replies: 8
Views: 3221

I presently have these values set: // database values $phpwcms["db_host"]           = "mysql01.websitehost.com"; // site values $phpwcms["site"]              = "http://mywebsitename.com/"; // paths $phpwcms["DOC_ROOT"]          = $_SERVER['DOCUMENT_...
by Karla
Sat 26. Feb 2005, 11:53
Forum: phpwcms Support English
Topic: <a name="jump1"></a>
Replies: 6
Views: 3478

Yes, that was discussed here:

http://www.phpwcms.de/forum/viewtopic.php?t=4213

apparently, there are still a few other places :cry:
by Karla
Sat 26. Feb 2005, 11:40
Forum: phpwcms Support English
Topic: Error while creating new article content
Replies: 17
Views: 8481

I'm sorry for the wild chase... was just curious if that SQL query was the last to be executed. I suspect not, because it should go on to build the article content from lines 262-296 here: if(!isset($content["error"])) { //if no error $SQL = "acontent_aid = '".$content["aid&...
by Karla
Sat 26. Feb 2005, 11:33
Forum: phpwcms Support English
Topic: SOLVED: install 1.2.1 -- "failed to open stream: No suc
Replies: 8
Views: 3221

Re: install 1.2.1 -- "failed to open stream: No such fi

Hello all, I get these errors after logging into Admin area. PHP Warning: main(/aaa_newsite/include/inc_ext/ss_image/ ss_image.class.php ): failed to open stream: No such file or directory in E:\web\charlierorg\htdocs\aaa_newsite\include\inc_lib\imagick.convert.inc.php on line 34 PHP Warning: main(...
by Karla
Fri 25. Feb 2005, 17:34
Forum: phpwcms Support English
Topic: Error while creating new article content
Replies: 17
Views: 8481

Just for grins... Try changing "upper case" of variable name $SQL to "lower case" $sql in file "article.editcontent.inc.php" line 296. FROM $SQL = "INSERT INTO ".DB_PREPEND."phpwcms_articlecontent SET " . $SQL; TO $SQL = "INSERT INTO ".DB_P...