![]() |
|
Hell, I'll pay for help at this point! - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Hell, I'll pay for help at this point! (/thread-207.html) Pages:
1
2
|
Hell, I'll pay for help at this point! - SoFlaChris - 2006-01-10 Hey, I've been trying for days to get ZP working. Several people have replied to posts, but the suggestions didn't help. I'll PayPal an experienced hack some cashola to help me get this implemented. This is pathetic :-) email chris-at-maltese-dot-net The site that I'm trying to get going is http://photo.maltese.net . I hope to be able to someday integrate it into my blog at http://blog.maltese.net Hope someone can help out, as I have never had so much trouble with PHP before. Thanks, Hell, I'll pay for help at this point! - janantha - 2006-01-10 sure ..what do you need help in..its open source mate..no payment required to help from me..shoot the problem mate. Hell, I'll pay for help at this point! - janantha - 2006-01-10 sure ..what do you need help in..its open source mate..no payment required to help from me. but credit me on your site .shoot the problem mate. Hell, I'll pay for help at this point! - SoFlaChris - 2006-01-10 Heck yeah, I'll give you the credits. Thank you janantha. Here's the issue: I installed the package on my server (unix, I believe). Chmodded everything in the directory to 777. I edited the htaccess to place my absolute path in it... and nothing happens. I keep getting an internal server error. What is the best way for you to assist me and what files do you need? I am hosted on PowWeb. Thanks, Hell, I'll pay for help at this point! - janantha - 2006-01-10 First thing i see is..you have a subdomain called http://photo.maltese.net Secondly you will have a peace of mind if you include your zenphoto installation in the same domain you have your blog.. also let me know the htaccess code you have used so far Hell, I'll pay for help at this point! - SoFlaChris - 2006-01-10 OK... I checked the Photo directory and it has an index.php file. Here is the code used in htaccess which also resides in the Photo directory: htaccess file for zenphotoNOTE: Change the RewriteBase below to the absolute path to your zenphoto directory.RewriteEngine On !!! Change this to the absolute path !!!RewriteBase /www/m/maltesenet/photo RewriteRule ^zen/(.)$ - [L] RewriteRule ^page/([0-9]+)/?$ index.php?page=$1 [QSA,L] Thanks, Hell, I'll pay for help at this point! - janantha - 2006-01-10 ok..its your absolute path that makes the error. try this /m/maltesenet/photo Hell, I'll pay for help at this point! - SoFlaChris - 2006-01-11 No good. The change didn't help. Hell, I'll pay for help at this point! - janantha - 2006-01-11 have u tried directly accesing the setup file..using the browser..else the only possible paths are these two /maltesenet/photo Also try putting this line of code at the top Hell, I'll pay for help at this point! - SoFlaChris - 2006-01-11 Hey Janantha, Both paths didn't work. I also placed the line of code at the top of the htaccess file and tried various combinations of the paths. NG. The htaccess file is located in the root of the photo directory. No problem with the patience part. This is all a good challenge and learning experience. I thank you for your patience and tutelage. Chris Hell, I'll pay for help at this point! - janantha - 2006-01-11 then ruling out that left me on thinking about subdomains... so tell me which one is the "primary domain" , if you can send me a screen dump of your root i will be able to understand the directory structure.. in my hosting company to make subdomain..all i have to do is make a subfolder in the root of the account and name it what ever i want and then place an index file on it..i want to know what your one is.. please use my email address janantha@janantha.net to send the screen shot of it. im off to sleep now..will reply you tomorrow..nights Hell, I'll pay for help at this point! - SoFlaChris - 2006-01-11 Will do, Janantha. I think that I have made some progress. Sadly, I have been chasing my (and forcing you too) tail. There is a HTDOCS subdirectory where anything that is visible to the web must go. Now I can see something, although it appears misconfigured. I'll email you the file. Goodnight, Hell, I'll pay for help at this point! - janantha - 2006-01-11 Yes chris..htdocs means apache's root DIR where the files that should be seen by public should go.to make a start try uploading a normal index.html file..and nothing else on to the folder..and then browse and see whether you can see the contents of the index file! .No problemo mate..always glad to help and meet up with challenges! thats my passion. Through trial and error people learn and the things they learn from that will stay in the brain forever. So someday you can help someone else with your knowledge! Hell, I'll pay for help at this point! - trisweb - 2006-01-11 Zenphoto currently has problems being at the root of a site. Try putting it in a subdirectory (like /photos) and changing the RewriteBase to /photos (for that example). Should work. Hell, I'll pay for help at this point! - nicb - 2006-01-11 I'm having the same issue. I have Zenphoto 0.9 running fine in a different directory and created another directory in which to install and test out 1.0beta before committing to the upgrade. I can connect to /zentest/admin just fine and do all the admin tasks, so mod_rewrite seems to be working as is most of the application. The problem is with rendering the gallery pages. I have tried changing themes and using one I had created for 0.9. All with the same result - a page with no formatting and no working links. I'm running this locally on Apache 2 with MySQL 4.1.12. Hell, I'll pay for help at this point! - nicb - 2006-01-11 Solved: The config.php.example from the 1.0b distribution doesn't contain the if (basename($_SERVER['SCRIPT_FILENAME']) == "i.php"..... block.
Now I'm looking forward to testing out this new release. Hell, I'll pay for help at this point! - Andy - 2006-01-12 So what exactly has to be put into config.php, and where? Hell, I'll pay for help at this point! - Luckyspin - 2006-01-12 Hmm, that's interesting, since we moved that block to functions.php, and changed it a little. Clearly it works for most cases. Obviously, subdomains and pathing in general is an area we can improve greatly. Hell, I'll pay for help at this point! - trisweb - 2006-01-12 Yep, we'll get it working better before the final release. For now though, if that works then go for it. The full fix is here: Hell, I'll pay for help at this point! - nicb - 2006-01-12 The fix for me was to replace the end of the config.php file with this (from the 0.9 distribution). / Do not edit below this line. / $_zp_conf_vars = $conf; if (basename($_SERVER['SCRIPT_FILENAME']) == "i.php" || basename($_SERVER['SCRIPT_FILENAME']) == "admin.php") { ?> |